diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-15 04:30:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-15 14:15:15 +0200 |
commit | 3ea765b0331b4f6f6a5bf2f3dbed2bbfd54d9683 (patch) | |
tree | 214835aeda77cb50017e92533782404c57754b5d /libavfilter/avf_concat.c | |
parent | fcbf16a76f3524189e4a6aa93db7147a4b367e10 (diff) | |
download | ffmpeg-3ea765b0331b4f6f6a5bf2f3dbed2bbfd54d9683.tar.gz |
avfilter/avf_concat: fix AVOption flags typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avf_concat.c')
-rw-r--r-- | libavfilter/avf_concat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avf_concat.c b/libavfilter/avf_concat.c index 04812aac2c..45341023fa 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 } }; |