[FFmpeg-cvslog] avfilter/f_reverse: Don't use redundant query_formats function
Andreas Rheinhardt
git at videolan.org
Sat Oct 2 17:59:17 EEST 2021
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Mon Sep 27 23:45:45 2021 +0200| [3a82bb8128773b82f50194cad6b3f3405084f59c] | committer: Andreas Rheinhardt
avfilter/f_reverse: Don't use redundant query_formats function
Said function did exactly what ff_default_query_formats() does
for audio; so just remove it, so that ff_default_query_formats()
will be called.
Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3a82bb8128773b82f50194cad6b3f3405084f59c
---
libavfilter/f_reverse.c | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/libavfilter/f_reverse.c b/libavfilter/f_reverse.c
index 82f0c705a2..0398aa9cb0 100644
--- a/libavfilter/f_reverse.c
+++ b/libavfilter/f_reverse.c
@@ -145,19 +145,6 @@ const AVFilter ff_vf_reverse = {
#if CONFIG_AREVERSE_FILTER
-static int query_formats(AVFilterContext *ctx)
-{
- int ret = ff_set_common_all_channel_counts(ctx);
- if (ret < 0)
- return ret;
-
- ret = ff_set_common_formats(ctx, ff_all_formats(AVMEDIA_TYPE_AUDIO));
- if (ret < 0)
- return ret;
-
- return ff_set_common_all_samplerates(ctx);
-}
-
static void reverse_samples_planar(AVFrame *out)
{
for (int p = 0; p < out->channels; p++) {
@@ -283,7 +270,6 @@ static const AVFilterPad areverse_outputs[] = {
const AVFilter ff_af_areverse = {
.name = "areverse",
.description = NULL_IF_CONFIG_SMALL("Reverse an audio clip."),
- .query_formats = query_formats,
.priv_size = sizeof(ReverseContext),
.init = init,
.uninit = uninit,
More information about the ffmpeg-cvslog
mailing list