Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2ecf9d10
Commit
2ecf9d10
authored
Jul 31, 2018
by
Sergey Lavrushkin
Committed by
Pedro Arthur
Aug 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libavfilter/dnn_backend_tf.c: Fixes ff_dnn_free_model_tf.
Signed-off-by:
Pedro Arthur
<
bygrandao@gmail.com
>
parent
72d9b8f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
dnn_backend_tf.c
libavfilter/dnn_backend_tf.c
+3
-1
No files found.
libavfilter/dnn_backend_tf.c
View file @
2ecf9d10
...
...
@@ -571,7 +571,9 @@ void ff_dnn_free_model_tf(DNNModel **model)
if
(
tf_model
->
input_tensor
){
TF_DeleteTensor
(
tf_model
->
input_tensor
);
}
av_freep
(
&
tf_model
->
output_data
->
data
);
if
(
tf_model
->
output_data
){
av_freep
(
&
(
tf_model
->
output_data
->
data
));
}
av_freep
(
&
tf_model
);
av_freep
(
model
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment