diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-07-08 19:43:34 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-07-08 19:54:08 +0200 |
commit | 65e65e3ce28e4311b5d8ed28ecfe1edd11581a4a (patch) | |
tree | 6468c2e205046ddf0663c1c5e6c97f03c0cf3c43 | |
parent | ba856c0be5599f21f241162e1f5f3f2506f3132c (diff) | |
download | ffmpeg-65e65e3ce28e4311b5d8ed28ecfe1edd11581a4a.tar.gz |
settb: cosmetic: reindent vf_settb structure.
-rw-r--r-- | libavfilter/vf_settb.c | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/libavfilter/vf_settb.c b/libavfilter/vf_settb.c index 3c5ac6a71b..6549a5c26c 100644 --- a/libavfilter/vf_settb.c +++ b/libavfilter/vf_settb.c @@ -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 |