Commit 14369f59 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg_filter: fix leak on error

Fixes: CID1005311
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 83330cf5
...@@ -318,17 +318,18 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter, ...@@ -318,17 +318,18 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter,
AVFilterContext *filter; AVFilterContext *filter;
snprintf(name, sizeof(name), "pixel format for output stream %d:%d", snprintf(name, sizeof(name), "pixel format for output stream %d:%d",
ost->file_index, ost->index); ost->file_index, ost->index);
if ((ret = avfilter_graph_create_filter(&filter, ret = avfilter_graph_create_filter(&filter,
avfilter_get_by_name("format"), avfilter_get_by_name("format"),
"format", pix_fmts, NULL, "format", pix_fmts, NULL,
fg->graph)) < 0) fg->graph);
av_freep(&pix_fmts);
if (ret < 0)
return ret; return ret;
if ((ret = avfilter_link(last_filter, pad_idx, filter, 0)) < 0) if ((ret = avfilter_link(last_filter, pad_idx, filter, 0)) < 0)
return ret; return ret;
last_filter = filter; last_filter = filter;
pad_idx = 0; pad_idx = 0;
av_freep(&pix_fmts);
} }
if (ost->frame_rate.num && 0) { if (ost->frame_rate.num && 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment