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 | 4bcb75ebae61923db2397ac8f0ecaa4f8fc0e396 (patch) | |
tree | 1972ff9cfa5b94c78955e750f1f7af79dfb1f042 | |
parent | 3eeb78866a7fb8d470362bdbddb17c84f36016ae (diff) | |
download | ffmpeg-4bcb75ebae61923db2397ac8f0ecaa4f8fc0e396.tar.gz |
avfilter/af_compand: Store format in filter, remove query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavfilter/af_compand.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/libavfilter/af_compand.c b/libavfilter/af_compand.c index 6eb68dfa19..2f8a580279 100644 --- a/libavfilter/af_compand.c +++ b/libavfilter/af_compand.c @@ -100,23 +100,6 @@ static av_cold void uninit(AVFilterContext *ctx) av_frame_free(&s->delay_frame); } -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_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 count_items(char *item_str, int *nb_items) { char *p; @@ -580,5 +563,5 @@ const AVFilter ff_af_compand = { .uninit = uninit, FILTER_INPUTS(compand_inputs), FILTER_OUTPUTS(compand_outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_DBLP), }; |