lavfi/vf_setparams: convert to query_func2()

This commit is contained in:
Anton Khirnov 2024-10-15 11:24:35 +02:00
parent 242ee7b0a2
commit a96244df77
1 changed files with 8 additions and 7 deletions

View File

@ -136,22 +136,23 @@ static const AVOption setparams_options[] = {
AVFILTER_DEFINE_CLASS(setparams); AVFILTER_DEFINE_CLASS(setparams);
static int query_formats(AVFilterContext *ctx) static int query_formats(const AVFilterContext *ctx,
AVFilterFormatsConfig **cfg_in,
AVFilterFormatsConfig **cfg_out)
{ {
SetParamsContext *s = ctx->priv; const SetParamsContext *s = ctx->priv;
AVFilterLink *outlink = ctx->outputs[0];
int ret; int ret;
if (s->colorspace >= 0) { if (s->colorspace >= 0) {
ret = ff_formats_ref(ff_make_formats_list_singleton(s->colorspace), ret = ff_formats_ref(ff_make_formats_list_singleton(s->colorspace),
&outlink->incfg.color_spaces); &cfg_out[0]->color_spaces);
if (ret < 0) if (ret < 0)
return ret; return ret;
} }
if (s->color_range >= 0) { if (s->color_range >= 0) {
ret = ff_formats_ref(ff_make_formats_list_singleton(s->color_range), ret = ff_formats_ref(ff_make_formats_list_singleton(s->color_range),
&outlink->incfg.color_ranges); &cfg_out[0]->color_ranges);
if (ret < 0) if (ret < 0)
return ret; return ret;
} }
@ -217,7 +218,7 @@ const AVFilter ff_vf_setparams = {
.flags = AVFILTER_FLAG_METADATA_ONLY, .flags = AVFILTER_FLAG_METADATA_ONLY,
FILTER_INPUTS(inputs), FILTER_INPUTS(inputs),
FILTER_OUTPUTS(ff_video_default_filterpad), FILTER_OUTPUTS(ff_video_default_filterpad),
FILTER_QUERY_FUNC(query_formats), FILTER_QUERY_FUNC2(query_formats),
}; };
#if CONFIG_SETRANGE_FILTER #if CONFIG_SETRANGE_FILTER
@ -258,7 +259,7 @@ const AVFilter ff_vf_setrange = {
.flags = AVFILTER_FLAG_METADATA_ONLY, .flags = AVFILTER_FLAG_METADATA_ONLY,
FILTER_INPUTS(inputs), FILTER_INPUTS(inputs),
FILTER_OUTPUTS(ff_video_default_filterpad), FILTER_OUTPUTS(ff_video_default_filterpad),
FILTER_QUERY_FUNC(query_formats), FILTER_QUERY_FUNC2(query_formats),
}; };
#endif /* CONFIG_SETRANGE_FILTER */ #endif /* CONFIG_SETRANGE_FILTER */