[FFmpeg-cvslog] settb: cosmetic: reindent vf_settb structure.

Nicolas George git at videolan.org
Sun Jul 8 20:00:16 CEST 2012


ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Sun Jul  8 19:43:34 2012 +0200| [65e65e3ce28e4311b5d8ed28ecfe1edd11581a4a] | committer: Nicolas George

settb: cosmetic: reindent vf_settb structure.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=65e65e3ce28e4311b5d8ed28ecfe1edd11581a4a
---

 libavfilter/vf_settb.c |   25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/libavfilter/vf_settb.c b/libavfilter/vf_settb.c
index 3c5ac6a..6549a5c 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
 



More information about the ffmpeg-cvslog mailing list