]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/overlay: apply minor consistency fixes
authorStefano Sabatini <stefasab@gmail.com>
Mon, 18 Feb 2013 13:37:30 +0000 (14:37 +0100)
committerStefano Sabatini <stefasab@gmail.com>
Wed, 20 Feb 2013 18:18:17 +0000 (19:18 +0100)
libavfilter/vf_overlay.c

index 857fbafb06687a985f8ed218563522a5f37cce6f..b4f547cba20114547422796a6c8f8d467e582d9d 100644 (file)
@@ -102,9 +102,9 @@ typedef struct {
 static const AVOption overlay_options[] = {
     { "x", "set the x expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS },
     { "y", "set the y expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS },
-    {"rgb", "force packed RGB in input and output", OFFSET(allow_packed_rgb), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
+    { "rgb", "force packed RGB in input and output", OFFSET(allow_packed_rgb), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
     { "shortest", "force termination when the shortest input terminates", OFFSET(shortest), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS },
-    {NULL},
+    { NULL }
 };
 
 AVFILTER_DEFINE_CLASS(overlay);