From bffc2bcd753563af7ebbb534b31bab2a2f249cc0 Mon Sep 17 00:00:00 2001 From: Marton Balint Date: Sat, 3 Dec 2016 20:02:24 +0100 Subject: [PATCH] avfilter/af_atempo: add support for unknown channel layouts Reviewed-by: Nicolas George Signed-off-by: Marton Balint --- libavfilter/af_atempo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_atempo.c b/libavfilter/af_atempo.c index d5d29b3665..59b08ec7c6 100644 --- a/libavfilter/af_atempo.c +++ b/libavfilter/af_atempo.c @@ -1014,7 +1014,7 @@ static int query_formats(AVFilterContext *ctx) }; int ret; - layouts = ff_all_channel_layouts(); + layouts = ff_all_channel_counts(); if (!layouts) { return AVERROR(ENOMEM); }