You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/af_channelmap: Reorder operations to avoid memleak
Fixes CID1322346 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -290,15 +290,15 @@ static int channelmap_query_formats(AVFilterContext *ctx)
|
|||||||
AVFilterChannelLayouts *layouts;
|
AVFilterChannelLayouts *layouts;
|
||||||
AVFilterChannelLayouts *channel_layouts = NULL;
|
AVFilterChannelLayouts *channel_layouts = NULL;
|
||||||
|
|
||||||
|
layouts = ff_all_channel_layouts();
|
||||||
|
if (!layouts)
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
ff_add_channel_layout(&channel_layouts, s->output_layout);
|
ff_add_channel_layout(&channel_layouts, s->output_layout);
|
||||||
|
|
||||||
ff_set_common_formats(ctx, ff_planar_sample_fmts());
|
ff_set_common_formats(ctx, ff_planar_sample_fmts());
|
||||||
ff_set_common_samplerates(ctx, ff_all_samplerates());
|
ff_set_common_samplerates(ctx, ff_all_samplerates());
|
||||||
|
|
||||||
layouts = ff_all_channel_layouts();
|
|
||||||
if (!layouts)
|
|
||||||
return AVERROR(ENOMEM);
|
|
||||||
|
|
||||||
ff_channel_layouts_ref(layouts, &ctx->inputs[0]->out_channel_layouts);
|
ff_channel_layouts_ref(layouts, &ctx->inputs[0]->out_channel_layouts);
|
||||||
ff_channel_layouts_ref(channel_layouts, &ctx->outputs[0]->in_channel_layouts);
|
ff_channel_layouts_ref(channel_layouts, &ctx->outputs[0]->in_channel_layouts);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user