mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/vf_pad: switch to query_func2()
This commit is contained in:
parent
64035fe206
commit
c8344737b6
|
@ -72,9 +72,12 @@ enum var_name {
|
||||||
VARS_NB
|
VARS_NB
|
||||||
};
|
};
|
||||||
|
|
||||||
static int query_formats(AVFilterContext *ctx)
|
static int query_formats(const AVFilterContext *ctx,
|
||||||
|
AVFilterFormatsConfig **cfg_in,
|
||||||
|
AVFilterFormatsConfig **cfg_out)
|
||||||
{
|
{
|
||||||
return ff_set_common_formats(ctx, ff_draw_supported_pixel_formats(0));
|
return ff_set_common_formats2(ctx, cfg_in, cfg_out,
|
||||||
|
ff_draw_supported_pixel_formats(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
enum EvalMode {
|
enum EvalMode {
|
||||||
|
@ -458,5 +461,5 @@ const AVFilter ff_vf_pad = {
|
||||||
.priv_class = &pad_class,
|
.priv_class = &pad_class,
|
||||||
FILTER_INPUTS(avfilter_vf_pad_inputs),
|
FILTER_INPUTS(avfilter_vf_pad_inputs),
|
||||||
FILTER_OUTPUTS(avfilter_vf_pad_outputs),
|
FILTER_OUTPUTS(avfilter_vf_pad_outputs),
|
||||||
FILTER_QUERY_FUNC(query_formats),
|
FILTER_QUERY_FUNC2(query_formats),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue