mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/vf_detelecine: switch to query_func2()
This commit is contained in:
parent
f8574da8e5
commit
9ebdaa6c7d
|
@ -122,13 +122,16 @@ static av_cold int init(AVFilterContext *ctx)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
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_BITSTREAM |
|
int reject_flags = AV_PIX_FMT_FLAG_BITSTREAM |
|
||||||
AV_PIX_FMT_FLAG_PAL |
|
AV_PIX_FMT_FLAG_PAL |
|
||||||
AV_PIX_FMT_FLAG_HWACCEL;
|
AV_PIX_FMT_FLAG_HWACCEL;
|
||||||
|
|
||||||
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 int config_input(AVFilterLink *inlink)
|
static int config_input(AVFilterLink *inlink)
|
||||||
|
@ -377,5 +380,5 @@ const AVFilter ff_vf_detelecine = {
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
FILTER_INPUTS(detelecine_inputs),
|
FILTER_INPUTS(detelecine_inputs),
|
||||||
FILTER_OUTPUTS(detelecine_outputs),
|
FILTER_OUTPUTS(detelecine_outputs),
|
||||||
FILTER_QUERY_FUNC(query_formats),
|
FILTER_QUERY_FUNC2(query_formats),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue