Browse Source

settb: cosmetic: reindent vf_settb structure.

tags/n1.0
Nicolas George 13 years ago
parent
commit
65e65e3ce2
1 changed files with 14 additions and 11 deletions
  1. +14
    -11
      libavfilter/vf_settb.c

+ 14
- 11
libavfilter/vf_settb.c View File

@@ -143,17 +143,20 @@ AVFilter avfilter_vf_settb = {

.priv_size = sizeof(SetTBContext),

.inputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
.start_frame = start_frame,
.end_frame = ff_null_end_frame },
{ .name = NULL }},

.outputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.config_props = config_output_props, },
{ .name = NULL}},
.inputs = (const AVFilterPad[]) {
{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
.start_frame = start_frame,
.end_frame = ff_null_end_frame },
{ .name = NULL }
},
.outputs = (const AVFilterPad[]) {
{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.config_props = config_output_props, },
{ .name = NULL}
},
};
#endif



Loading…
Cancel
Save