[FFmpeg-cvslog] lavfi/vf_deband: switch to query_func2()

Anton Khirnov git at videolan.org
Mon Oct 7 11:57:33 EEST 2024


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Fri Oct  4 10:09:29 2024 +0200| [f8574da8e5a3a33fb49111abd782c9ecedf67402] | committer: Anton Khirnov

lavfi/vf_deband: switch to query_func2()

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f8574da8e5a3a33fb49111abd782c9ecedf67402
---

 libavfilter/vf_deband.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/libavfilter/vf_deband.c b/libavfilter/vf_deband.c
index 31b864b760..4ba22c85a0 100644
--- a/libavfilter/vf_deband.c
+++ b/libavfilter/vf_deband.c
@@ -71,9 +71,11 @@ static const AVOption deband_options[] = {
 
 AVFILTER_DEFINE_CLASS(deband);
 
-static int query_formats(AVFilterContext *ctx)
+static int query_formats(const AVFilterContext *ctx,
+                         AVFilterFormatsConfig **cfg_in,
+                         AVFilterFormatsConfig **cfg_out)
 {
-    DebandContext *s = ctx->priv;
+    const DebandContext *s = ctx->priv;
 
     static const enum AVPixelFormat pix_fmts[] = {
         AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY9, AV_PIX_FMT_GRAY10,
@@ -110,7 +112,8 @@ static int query_formats(AVFilterContext *ctx)
         AV_PIX_FMT_NONE
     };
 
-    return ff_set_common_formats_from_list(ctx, s->coupling ? cpix_fmts : pix_fmts);
+    return ff_set_common_formats_from_list2(ctx, cfg_in, cfg_out,
+                                            s->coupling ? cpix_fmts : pix_fmts);
 }
 
 static float frand(int x, int y)
@@ -468,7 +471,7 @@ const AVFilter ff_vf_deband = {
     .uninit        = uninit,
     FILTER_INPUTS(avfilter_vf_deband_inputs),
     FILTER_OUTPUTS(ff_video_default_filterpad),
-    FILTER_QUERY_FUNC(query_formats),
+    FILTER_QUERY_FUNC2(query_formats),
     .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
     .process_command = process_command,
 };



More information about the ffmpeg-cvslog mailing list