mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/vf_shuffleplanes: convert to query_func2()
This commit is contained in:
parent
965e9b646e
commit
e2f4c69779
|
@ -41,10 +41,12 @@ typedef struct ShufflePlanesContext {
|
||||||
int copy;
|
int copy;
|
||||||
} ShufflePlanesContext;
|
} ShufflePlanesContext;
|
||||||
|
|
||||||
static int query_formats(AVFilterContext *ctx)
|
static int query_formats(const AVFilterContext *ctx,
|
||||||
|
AVFilterFormatsConfig **cfg_in,
|
||||||
|
AVFilterFormatsConfig **cfg_out)
|
||||||
{
|
{
|
||||||
AVFilterFormats *formats = NULL;
|
AVFilterFormats *formats = NULL;
|
||||||
ShufflePlanesContext *s = ctx->priv;
|
const ShufflePlanesContext *s = ctx->priv;
|
||||||
int fmt, ret, i;
|
int fmt, ret, i;
|
||||||
|
|
||||||
for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
|
for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
|
||||||
|
@ -70,7 +72,7 @@ static int query_formats(AVFilterContext *ctx)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ff_set_common_formats(ctx, formats);
|
return ff_set_common_formats2(ctx, cfg_in, cfg_out, formats);
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_cold int shuffleplanes_config_input(AVFilterLink *inlink)
|
static av_cold int shuffleplanes_config_input(AVFilterLink *inlink)
|
||||||
|
@ -161,6 +163,6 @@ const AVFilter ff_vf_shuffleplanes = {
|
||||||
.priv_class = &shuffleplanes_class,
|
.priv_class = &shuffleplanes_class,
|
||||||
FILTER_INPUTS(shuffleplanes_inputs),
|
FILTER_INPUTS(shuffleplanes_inputs),
|
||||||
FILTER_OUTPUTS(ff_video_default_filterpad),
|
FILTER_OUTPUTS(ff_video_default_filterpad),
|
||||||
FILTER_QUERY_FUNC(query_formats),
|
FILTER_QUERY_FUNC2(query_formats),
|
||||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue