aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-10-15 11:24:35 +0200
committerAnton Khirnov <anton@khirnov.net>2024-10-17 11:00:35 +0200
commit06292d34dee04b093b3520dfbef163953de05c1b (patch)
tree78da85f8832559b73e5069b0ef349ceb086e6718
parent05aad90c69bd5e6377a2b6d9e498ff4076015bde (diff)
downloadffmpeg-06292d34dee04b093b3520dfbef163953de05c1b.tar.gz
lavfi/vf_swaprect: convert to query_func2()
-rw-r--r--libavfilter/vf_swaprect.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/libavfilter/vf_swaprect.c b/libavfilter/vf_swaprect.c
index 71869cf53a..95214132d7 100644
--- a/libavfilter/vf_swaprect.c
+++ b/libavfilter/vf_swaprect.c
@@ -56,13 +56,16 @@ static const AVOption swaprect_options[] = {
AVFILTER_DEFINE_CLASS(swaprect);
-static int query_formats(AVFilterContext *ctx)
+static int query_formats(const AVFilterContext *ctx,
+ AVFilterFormatsConfig **cfg_in,
+ AVFilterFormatsConfig **cfg_out)
{
int reject_flags = AV_PIX_FMT_FLAG_PAL |
AV_PIX_FMT_FLAG_HWACCEL |
AV_PIX_FMT_FLAG_BITSTREAM;
- return ff_set_common_formats(ctx, ff_formats_pixdesc_filter(0, reject_flags));
+ return ff_set_common_formats2(ctx, cfg_in, cfg_out,
+ ff_formats_pixdesc_filter(0, reject_flags));
}
static const char *const var_names[] = { "w", "h", "a", "n", "t",
@@ -251,7 +254,7 @@ const AVFilter ff_vf_swaprect = {
.uninit = uninit,
FILTER_INPUTS(inputs),
FILTER_OUTPUTS(ff_video_default_filterpad),
- FILTER_QUERY_FUNC(query_formats),
+ FILTER_QUERY_FUNC2(query_formats),
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
.process_command = ff_filter_process_command,
};