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
14369f59
Commit
14369f59
authored
Apr 21, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg_filter: fix leak on error
Fixes: CID1005311 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
83330cf5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
ffmpeg_filter.c
ffmpeg_filter.c
+4
-3
No files found.
ffmpeg_filter.c
View file @
14369f59
...
...
@@ -318,17 +318,18 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter,
AVFilterContext
*
filter
;
snprintf
(
name
,
sizeof
(
name
),
"pixel format for output stream %d:%d"
,
ost
->
file_index
,
ost
->
index
);
if
((
ret
=
avfilter_graph_create_filter
(
&
filter
,
ret
=
avfilter_graph_create_filter
(
&
filter
,
avfilter_get_by_name
(
"format"
),
"format"
,
pix_fmts
,
NULL
,
fg
->
graph
))
<
0
)
fg
->
graph
);
av_freep
(
&
pix_fmts
);
if
(
ret
<
0
)
return
ret
;
if
((
ret
=
avfilter_link
(
last_filter
,
pad_idx
,
filter
,
0
))
<
0
)
return
ret
;
last_filter
=
filter
;
pad_idx
=
0
;
av_freep
(
&
pix_fmts
);
}
if
(
ost
->
frame_rate
.
num
&&
0
)
{
...
...
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