mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/concat: use AV_OPT_TYPE_BOOL for unsafe option
This commit is contained in:
parent
b6249d4f52
commit
9f4b3bd96c
|
@ -68,7 +68,7 @@ static const AVOption concat_options[] = {
|
||||||
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, A|F},
|
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, A|F},
|
||||||
{ "unsafe", "enable unsafe mode",
|
{ "unsafe", "enable unsafe mode",
|
||||||
OFFSET(unsafe),
|
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 }
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue