Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2016-12-03 22:02:24 +0300
committerMarton Balint <cus@passwd.hu>2016-12-10 13:57:11 +0300
commitbffc2bcd753563af7ebbb534b31bab2a2f249cc0 (patch)
tree967f07a4a80fdf68e1bfce38e5f67f37807f068c /libavfilter/af_atempo.c
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/af_atempo.c')
-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);
}