summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <[email protected]>2024-10-04 10:09:29 +0200
committerAnton Khirnov <[email protected]>2024-10-07 10:46:43 +0200
commitf8574da8e5a3a33fb49111abd782c9ecedf67402 (patch)
treef7e9abe5e7f8a23cfe5c5aba4e221ab7229e8cdc
parenteff406f5dd551b55d3a98ac86b596ae3af64098d (diff)
lavfi/vf_deband: switch to query_func2()
-rw-r--r--libavfilter/vf_deband.c11
1 files 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,
};