Commit 9c31b396 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '22ecfcd4'

* commit '22ecfcd4':
  af_channelmap: properly set the supported output channel layouts

Conflicts:
	libavfilter/af_channelmap.c

See: 39867f3eMerged-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parents 40e8ade9 22ecfcd4
...@@ -57,7 +57,6 @@ enum MappingMode { ...@@ -57,7 +57,6 @@ enum MappingMode {
#define MAX_CH 64 #define MAX_CH 64
typedef struct ChannelMapContext { typedef struct ChannelMapContext {
const AVClass *class; const AVClass *class;
AVFilterChannelLayouts *channel_layouts;
char *mapping_str; char *mapping_str;
char *channel_layout_str; char *channel_layout_str;
uint64_t output_layout; uint64_t output_layout;
...@@ -289,6 +288,9 @@ static int channelmap_query_formats(AVFilterContext *ctx) ...@@ -289,6 +288,9 @@ static int channelmap_query_formats(AVFilterContext *ctx)
{ {
ChannelMapContext *s = ctx->priv; ChannelMapContext *s = ctx->priv;
AVFilterChannelLayouts *layouts; AVFilterChannelLayouts *layouts;
AVFilterChannelLayouts *channel_layouts = NULL;
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());
...@@ -297,9 +299,8 @@ static int channelmap_query_formats(AVFilterContext *ctx) ...@@ -297,9 +299,8 @@ static int channelmap_query_formats(AVFilterContext *ctx)
if (!layouts) if (!layouts)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
ff_add_channel_layout(&s->channel_layouts, s->output_layout);
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(s->channel_layouts, &ctx->outputs[0]->in_channel_layouts); ff_channel_layouts_ref(channel_layouts, &ctx->outputs[0]->in_channel_layouts);
return 0; return 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