aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-09-04 15:11:22 +0200
committerAnton Khirnov <anton@khirnov.net>2024-09-09 17:26:18 +0200
commit7887d00ee6e29100b6d65be75fe17e183d402e89 (patch)
treeabd24848f73647ed6ad24b6904e11d28bcdbe85a
parente13592c22d480339491f3b37fb0b363591d1e165 (diff)
downloadffmpeg-7887d00ee6e29100b6d65be75fe17e183d402e89.tar.gz
lavfi/af_volume: convert to query_func2()
Also, drop redundant calls that also happen implicitly in generic code.
-rw-r--r--libavfilter/af_volume.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/af_volume.c b/libavfilter/af_volume.c
index d2f8a1c1fa..ed924cf45f 100644
--- a/libavfilter/af_volume.c
+++ b/libavfilter/af_volume.c
@@ -130,9 +130,11 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&vol->fdsp);
}
-static int query_formats(AVFilterContext *ctx)
+static int query_formats(const AVFilterContext *ctx,
+ AVFilterFormatsConfig **cfg_in,
+ AVFilterFormatsConfig **cfg_out)
{
- VolumeContext *vol = ctx->priv;
+ const VolumeContext *vol = ctx->priv;
static const enum AVSampleFormat sample_fmts[][7] = {
[PRECISION_FIXED] = {
AV_SAMPLE_FMT_U8,
@@ -154,15 +156,13 @@ static int query_formats(AVFilterContext *ctx)
AV_SAMPLE_FMT_NONE
}
};
- int ret = ff_set_common_all_channel_counts(ctx);
- if (ret < 0)
- return ret;
+ int ret;
- ret = ff_set_common_formats_from_list(ctx, sample_fmts[vol->precision]);
+ ret = ff_set_common_formats_from_list2(ctx, cfg_in, cfg_out, sample_fmts[vol->precision]);
if (ret < 0)
return ret;
- return ff_set_common_all_samplerates(ctx);
+ return 0;
}
static inline void scale_samples_u8(uint8_t *dst, const uint8_t *src,
@@ -480,7 +480,7 @@ const AVFilter ff_af_volume = {
.uninit = uninit,
FILTER_INPUTS(avfilter_af_volume_inputs),
FILTER_OUTPUTS(avfilter_af_volume_outputs),
- FILTER_QUERY_FUNC(query_formats),
+ FILTER_QUERY_FUNC2(query_formats),
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
.process_command = process_command,
};