[FFmpeg-cvslog] avfilter/avf_concat: fix AVOption flags typo

Michael Niedermayer git at videolan.org
Mon Jul 15 14:52:53 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Jul 15 04:30:09 2013 +0200| [3ea765b0331b4f6f6a5bf2f3dbed2bbfd54d9683] | committer: Michael Niedermayer

avfilter/avf_concat: fix AVOption flags typo

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavfilter/avf_concat.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/avf_concat.c b/libavfilter/avf_concat.c
index 04812aa..4534102 100644
--- a/libavfilter/avf_concat.c
+++ b/libavfilter/avf_concat.c
@@ -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 }
 };
 



More information about the ffmpeg-cvslog mailing list