diff options
author | Marton Balint <cus@passwd.hu> | 2016-12-03 20:02:24 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2016-12-10 11:57:11 +0100 |
commit | bffc2bcd753563af7ebbb534b31bab2a2f249cc0 (patch) | |
tree | 967f07a4a80fdf68e1bfce38e5f67f37807f068c /libavfilter/af_atempo.c | |
parent | 7ceb9e6b11824ff18f424a35e41fbddf545d1238 (diff) | |
download | ffmpeg-bffc2bcd753563af7ebbb534b31bab2a2f249cc0.tar.gz |
avfilter/af_atempo: add support for unknown channel layouts
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavfilter/af_atempo.c')
-rw-r--r-- | libavfilter/af_atempo.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |