diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-27 12:28:23 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-05 18:01:02 +0200 |
commit | 063af69db46792f2297675e23a9b4de42d14ce8a (patch) | |
tree | 8d04f00c92ed3332a5b82ba41956b37ae31250fd | |
parent | b4ab91b2b564cc74c173710b5385f76684038843 (diff) | |
download | ffmpeg-063af69db46792f2297675e23a9b4de42d14ce8a.tar.gz |
avfilter/af_adecorrelate: Store format in filter, remove query func
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavfilter/af_adecorrelate.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/libavfilter/af_adecorrelate.c b/libavfilter/af_adecorrelate.c index e0731b0945..bac7937c10 100644 --- a/libavfilter/af_adecorrelate.c +++ b/libavfilter/af_adecorrelate.c @@ -55,23 +55,6 @@ typedef struct ADecorrelateContext { AVFrame *in, AVFrame *out); } ADecorrelateContext; -static int query_formats(AVFilterContext *ctx) -{ - static const enum AVSampleFormat sample_fmts[] = { - 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); -} - static int ap_init(APContext *ap, int fs, double delay) { const int delay_samples = lrint(round(delay * fs)); @@ -262,7 +245,7 @@ const AVFilter ff_af_adecorrelate = { .uninit = uninit, FILTER_INPUTS(inputs), FILTER_OUTPUTS(outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_DBLP), .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS, }; |