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:
authorPaul B Mahol <onemda@gmail.com>2022-04-20 19:40:47 +0300
committerPaul B Mahol <onemda@gmail.com>2022-04-22 02:20:21 +0300
commitfd834924d79b469f2b09bc64ca7f71dbffc39059 (patch)
tree2b082f06eceb87c23e008d8165f267638d624c12 /libavfilter/avf_showfreqs.c
parentd353909e773ba8a8201fa13d6c35251351dd567a (diff)
avfilter/avf_showfreqs: filter support all channel counts
Diffstat (limited to 'libavfilter/avf_showfreqs.c')
-rw-r--r--libavfilter/avf_showfreqs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avf_showfreqs.c b/libavfilter/avf_showfreqs.c
index e50b6840dd..b2c7886985 100644
--- a/libavfilter/avf_showfreqs.c
+++ b/libavfilter/avf_showfreqs.c
@@ -120,7 +120,7 @@ static int query_formats(AVFilterContext *ctx)
if ((ret = ff_formats_ref(formats, &inlink->outcfg.formats)) < 0)
return ret;
- layouts = ff_all_channel_layouts();
+ layouts = ff_all_channel_counts();
if ((ret = ff_channel_layouts_ref(layouts, &inlink->outcfg.channel_layouts)) < 0)
return ret;