summaryrefslogtreecommitdiff
path: root/libavfilter/af_speechnorm.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-27 13:10:11 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-05 18:01:03 +0200
commite597b83e25a01f17412debf11051edd506461669 (patch)
treee4e8d8c69ab6bc0ee3be8d89e4b4a655674523ec /libavfilter/af_speechnorm.c
parent9abb877362c179ef02b7e11baeefbb1ee5e5b465 (diff)
avfilter/af_speechnorm: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/af_speechnorm.c')
-rw-r--r--libavfilter/af_speechnorm.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/libavfilter/af_speechnorm.c b/libavfilter/af_speechnorm.c
index 4f8e0b33dd..212a926f36 100644
--- a/libavfilter/af_speechnorm.c
+++ b/libavfilter/af_speechnorm.c
@@ -114,23 +114,6 @@ static const AVOption speechnorm_options[] = {
AVFILTER_DEFINE_CLASS(speechnorm);
-static int query_formats(AVFilterContext *ctx)
-{
- static const enum AVSampleFormat sample_fmts[] = {
- AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_DBLP,
- AV_SAMPLE_FMT_NONE
- };
- int ret = ff_set_common_all_channel_counts(ctx);
- if (ret < 0)
- return ret;
-
- ret = ff_set_common_formats_from_list(ctx, sample_fmts);
- if (ret < 0)
- return ret;
-
- return ff_set_common_all_samplerates(ctx);
-}
-
static int get_pi_samples(PeriodItem *pi, int start, int end, int remain)
{
int sum;
@@ -580,7 +563,7 @@ const AVFilter ff_af_speechnorm = {
.uninit = uninit,
FILTER_INPUTS(inputs),
FILTER_OUTPUTS(outputs),
- FILTER_QUERY_FUNC(query_formats),
+ FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_DBLP),
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
.process_command = process_command,
};