diff options
author | Robert Krüger <krueger@lesspain.de> | 2014-01-04 13:50:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-14 14:19:15 +0100 |
commit | 61093993668bc9b377aaa8e23818a0432f280692 (patch) | |
tree | 049b5b1608c6216a533b4b1485bbde57dfa88b6a /libavfilter | |
parent | 99c4abfe8862ec2e4c724af249799ca076a35a91 (diff) | |
download | ffmpeg-61093993668bc9b377aaa8e23818a0432f280692.tar.gz |
Revert "avfilter/yadif: Revert "lavfi: convert input/ouput list compound literals to named objects""
This reverts commit 4ef4bb4a203e8f472ab0484396270b9430862037.
Signed-off-by: Robert Krüger <krueger@lesspain.de>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_yadif.c | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 1857ca9d87..7ffce9ad16 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -517,6 +517,25 @@ 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."), @@ -524,19 +543,7 @@ AVFilter ff_vf_yadif = { .priv_class = &yadif_class, .uninit = uninit, .query_formats = query_formats, - - .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}}, - + .inputs = avfilter_vf_yadif_inputs, + .outputs = avfilter_vf_yadif_outputs, .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS, }; |