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:02 +0200 |
commit | 55c7ee9e93a01dabf85b01acfcf0cc20ce659a40 (patch) | |
tree | 027052a7b97496f910d0983424630f60ca0b50e3 /libavfilter/af_apsyclip.c | |
parent | 8a588deb929132749c7f6878530619a9bbc130be (diff) | |
download | ffmpeg-55c7ee9e93a01dabf85b01acfcf0cc20ce659a40.tar.gz |
avfilter/af_apsyclip: Store format in filter, remove query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/af_apsyclip.c')
-rw-r--r-- | libavfilter/af_apsyclip.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/libavfilter/af_apsyclip.c b/libavfilter/af_apsyclip.c index e9f1feb906..dc3a8e97e4 100644 --- a/libavfilter/af_apsyclip.c +++ b/libavfilter/af_apsyclip.c @@ -80,25 +80,6 @@ static const AVOption apsyclip_options[] = { AVFILTER_DEFINE_CLASS(apsyclip); -static int query_formats(AVFilterContext *ctx) -{ - static const enum AVSampleFormat sample_fmts[] = { - AV_SAMPLE_FMT_FLTP, - AV_SAMPLE_FMT_NONE - }; - int ret; - - 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 void generate_hann_window(float *window, float *inv_window, int size) { for (int i = 0; i < size; i++) { @@ -671,7 +652,7 @@ const AVFilter ff_af_apsyclip = { .uninit = uninit, FILTER_INPUTS(inputs), FILTER_OUTPUTS(outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_FLTP), .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS, .activate = activate, |