[FFmpeg-cvslog] lavfi/af_volume: convert to query_func2()
Anton Khirnov
git at videolan.org
Mon Sep 9 18:27:14 EEST 2024
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Sep 4 15:11:22 2024 +0200| [7887d00ee6e29100b6d65be75fe17e183d402e89] | committer: Anton Khirnov
lavfi/af_volume: convert to query_func2()
Also, drop redundant calls that also happen implicitly in generic code.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7887d00ee6e29100b6d65be75fe17e183d402e89
---
libavfilter/af_volume.c | 16 ++++++++--------
1 file 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,
};
More information about the ffmpeg-cvslog
mailing list