Commit 9f4b3bd9 authored by Clément Bœsch's avatar Clément Bœsch

avfilter/concat: use AV_OPT_TYPE_BOOL for unsafe option

parent b6249d4f
......@@ -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 }
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment