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 | 6cb9cf64d15d04759240239b7abde13b20263754 (patch) | |
tree | e24c2093ca8b964b0cdff204020cb1c5773f9304 /libavfilter | |
parent | e08dc59200b81e49313de5a1e7018be14b8c30c6 (diff) | |
download | ffmpeg-6cb9cf64d15d04759240239b7abde13b20263754.tar.gz |
avfilter/af_crystalizer: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_crystalizer.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/libavfilter/af_crystalizer.c b/libavfilter/af_crystalizer.c index 9e1a4ef9d2..8d967fd629 100644 --- a/libavfilter/af_crystalizer.c +++ b/libavfilter/af_crystalizer.c @@ -43,24 +43,6 @@ static const AVOption crystalizer_options[] = { AVFILTER_DEFINE_CLASS(crystalizer); -static int query_formats(AVFilterContext *ctx) -{ - static const enum AVSampleFormat sample_fmts[] = { - AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP, - AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBLP, - AV_SAMPLE_FMT_NONE - }; - int 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); -} - typedef struct ThreadData { void **d; void **p; @@ -384,7 +366,8 @@ const AVFilter ff_af_crystalizer = { .uninit = uninit, FILTER_INPUTS(inputs), FILTER_OUTPUTS(outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP, + AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBLP), .process_command = process_command, .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS, |