mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avfilter/yadif: Revert "lavfi: convert input/ouput list compound literals to named objects"
This reverts commit 568c70e79e
.
This reduces the amount of non LGPL code, making a relicensing to LGPL
easier
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4d028f9280
commit
4ef4bb4a20
@ -517,25 +517,6 @@ static const AVOption yadif_options[] = {
|
||||
|
||||
AVFILTER_DEFINE_CLASS(yadif);
|
||||
|
||||
static const AVFilterPad avfilter_vf_yadif_inputs[] = {
|
||||
{
|
||||
.name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.filter_frame = filter_frame,
|
||||
},
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
static const AVFilterPad avfilter_vf_yadif_outputs[] = {
|
||||
{
|
||||
.name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.request_frame = request_frame,
|
||||
.config_props = config_props,
|
||||
},
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_vf_yadif = {
|
||||
.name = "yadif",
|
||||
.description = NULL_IF_CONFIG_SMALL("Deinterlace the input image."),
|
||||
@ -543,7 +524,19 @@ AVFilter ff_vf_yadif = {
|
||||
.priv_class = &yadif_class,
|
||||
.uninit = uninit,
|
||||
.query_formats = query_formats,
|
||||
.inputs = avfilter_vf_yadif_inputs,
|
||||
.outputs = avfilter_vf_yadif_outputs,
|
||||
|
||||
.inputs = (const AVFilterPad[]) {{ .name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.filter_frame = filter_frame,
|
||||
},
|
||||
{ .name = NULL}},
|
||||
|
||||
.outputs = (const AVFilterPad[]) {{ .name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.request_frame = request_frame,
|
||||
.config_props = config_props,
|
||||
},
|
||||
{ .name = NULL}},
|
||||
|
||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user