diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-27 13:10:11 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-05 18:01:03 +0200 |
commit | 2329c33ce33013b9d0ee254c599c694effd7deb9 (patch) | |
tree | 5e8f7cf2f186d47e8b22c7ffecb396489fb2a225 /libavfilter/af_atilt.c | |
parent | b8f74ee57a6e9e75a507adcddf30f84dd4a39d39 (diff) | |
download | ffmpeg-2329c33ce33013b9d0ee254c599c694effd7deb9.tar.gz |
avfilter/af_atilt: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/af_atilt.c')
-rw-r--r-- | libavfilter/af_atilt.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/libavfilter/af_atilt.c b/libavfilter/af_atilt.c index e242ad2bd5..c8d55590c3 100644 --- a/libavfilter/af_atilt.c +++ b/libavfilter/af_atilt.c @@ -47,25 +47,6 @@ typedef struct ATiltContext { int (*filter_channels)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs); } ATiltContext; -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; - - ret = ff_set_common_formats_from_list(ctx, sample_fmts); - if (ret < 0) - return ret; - - ret = ff_set_common_all_channel_counts(ctx); - if (ret < 0) - return ret; - - return ff_set_common_all_samplerates(ctx); -} - static double prewarp(double w, double T, double wp) { return wp * tan(w * T * 0.5) / tan(wp * T * 0.5); @@ -280,7 +261,7 @@ AVFilter ff_af_atilt = { .uninit = uninit, FILTER_INPUTS(inputs), FILTER_OUTPUTS(outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_DBLP), .process_command = process_command, .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS, |