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 | 88a92cb754ed38ee7ea0cb5cfa3a521aba3cbd27 (patch) | |
tree | 014a4661120ef3aea297ca099ea456af2e50dda1 /libavfilter/af_rubberband.c | |
parent | 3f064c21cb1de9e3f507fbc46bb3bf9846ea55be (diff) | |
download | ffmpeg-88a92cb754ed38ee7ea0cb5cfa3a521aba3cbd27.tar.gz |
avfilter/af_rubberband: Store format in filter, remove query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/af_rubberband.c')
-rw-r--r-- | libavfilter/af_rubberband.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/libavfilter/af_rubberband.c b/libavfilter/af_rubberband.c index 77f6c820be..4a42aa8a1f 100644 --- a/libavfilter/af_rubberband.c +++ b/libavfilter/af_rubberband.c @@ -89,23 +89,6 @@ static av_cold void uninit(AVFilterContext *ctx) rubberband_delete(s->rbs); } -static int query_formats(AVFilterContext *ctx) -{ - static const enum AVSampleFormat sample_fmts[] = { - AV_SAMPLE_FMT_FLTP, - 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 filter_frame(AVFilterLink *inlink, AVFrame *in) { AVFilterContext *ctx = inlink->dst; @@ -228,6 +211,6 @@ const AVFilter ff_af_rubberband = { .activate = activate, FILTER_INPUTS(rubberband_inputs), FILTER_OUTPUTS(rubberband_outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_FLTP), .process_command = process_command, }; |