]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/delogo: correct indentation for option show.
authorGyan Doshi <ffmpeg@gyani.pro>
Fri, 10 Apr 2020 19:29:18 +0000 (00:59 +0530)
committerGyan Doshi <ffmpeg@gyani.pro>
Sat, 11 Apr 2020 06:16:48 +0000 (11:46 +0530)
libavfilter/vf_delogo.c

index 8edbe03cdcceb78cf1c3921fc52bf440b34fb649..e55673d5ada64a997435ad91ff28ed81107bbcbc 100644 (file)
@@ -211,7 +211,7 @@ static const AVOption delogo_options[]= {
     { "y",    "set logo y position",       OFFSET(y_expr),    AV_OPT_TYPE_STRING, { .str = "-1" }, 0, 0, FLAGS },
     { "w",    "set logo width",            OFFSET(w_expr),    AV_OPT_TYPE_STRING, { .str = "-1" }, 0, 0, FLAGS },
     { "h",    "set logo height",           OFFSET(h_expr),    AV_OPT_TYPE_STRING, { .str = "-1" }, 0, 0, FLAGS },
-    { "show", "show delogo area",          OFFSET(show), AV_OPT_TYPE_BOOL,{ .i64 =  0 },  0, 1,       FLAGS },
+    { "show", "show delogo area",          OFFSET(show),      AV_OPT_TYPE_BOOL,   { .i64 =  0 },   0, 1, FLAGS },
     { NULL }
 };