mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
settb: cosmetic: reindent vf_settb structure.
This commit is contained in:
parent
ba856c0be5
commit
65e65e3ce2
@ -143,17 +143,20 @@ AVFilter avfilter_vf_settb = {
|
|||||||
|
|
||||||
.priv_size = sizeof(SetTBContext),
|
.priv_size = sizeof(SetTBContext),
|
||||||
|
|
||||||
.inputs = (const AVFilterPad[]) {{ .name = "default",
|
.inputs = (const AVFilterPad[]) {
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
{ .name = "default",
|
||||||
.get_video_buffer = ff_null_get_video_buffer,
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
.start_frame = start_frame,
|
.get_video_buffer = ff_null_get_video_buffer,
|
||||||
.end_frame = ff_null_end_frame },
|
.start_frame = start_frame,
|
||||||
{ .name = NULL }},
|
.end_frame = ff_null_end_frame },
|
||||||
|
{ .name = NULL }
|
||||||
.outputs = (const AVFilterPad[]) {{ .name = "default",
|
},
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
.outputs = (const AVFilterPad[]) {
|
||||||
.config_props = config_output_props, },
|
{ .name = "default",
|
||||||
{ .name = NULL}},
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
|
.config_props = config_output_props, },
|
||||||
|
{ .name = NULL}
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user