summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2016-12-03 20:02:24 +0100
committerMarton Balint <cus@passwd.hu>2016-12-10 11:57:11 +0100
commitbffc2bcd753563af7ebbb534b31bab2a2f249cc0 (patch)
tree967f07a4a80fdf68e1bfce38e5f67f37807f068c /libavfilter
parent7ceb9e6b11824ff18f424a35e41fbddf545d1238 (diff)
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')
-rw-r--r--libavfilter/af_atempo.c2
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);
}