diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-08 23:24:12 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-09-08 23:24:12 +0200 |
commit | 9f4b3bd96c4d537d7092d5853c0c24f03b15424a (patch) | |
tree | 8c21bb485eaf8b163ee42bc24344ce5c0016e1fb | |
parent | b6249d4f529748aaa66d09d0b56d0c1ffce5e82d (diff) | |
download | ffmpeg-9f4b3bd96c4d537d7092d5853c0c24f03b15424a.tar.gz |
avfilter/concat: use AV_OPT_TYPE_BOOL for unsafe option
-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 088d782d46..8d736a424c 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, V|A|F}, + AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, V|A|F}, { NULL } }; |