OSDN Git Service

avfilter/avf_concat: fix AVOption flags typo
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 15 Jul 2013 02:30:09 +0000 (04:30 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 15 Jul 2013 12:15:15 +0000 (14:15 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/avf_concat.c

index 04812aa..4534102 100644 (file)
@@ -68,7 +68,7 @@ static const AVOption concat_options[] = {
       AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, A|F},
     { "unsafe", "enable unsafe mode",
       OFFSET(unsafe),
-      AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, A|A|F},
+      AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, V|A|F},
     { 0 }
 };