Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
c802a2e7
Commit
c802a2e7
authored
Oct 14, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: fix leak in filter error
CC: libav-stable@libav.org Bug-Id: CID 1005311
parent
aeb23fc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
avconv_filter.c
avconv_filter.c
+5
-5
No files found.
avconv_filter.c
View file @
c802a2e7
...
...
@@ -268,17 +268,17 @@ 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
,
avfilter_get_by_name
(
"format"
),
"format"
,
pix_fmts
,
NULL
,
fg
->
graph
))
<
0
)
ret
=
avfilter_graph_create_filter
(
&
filter
,
avfilter_get_by_name
(
"format"
),
"format"
,
pix_fmts
,
NULL
,
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
)
{
...
...
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