diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-07-28 11:48:14 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-07-28 11:48:14 +0200 |
commit | 9a757cca3485cd747cbce202f57dfe1f4ac5dba3 (patch) | |
tree | 7731c67fe244c8b6af004658b0b79d38c263b419 | |
parent | 66a52018194861540d11e5b0815719516479d776 (diff) | |
download | ffmpeg-9a757cca3485cd747cbce202f57dfe1f4ac5dba3.tar.gz |
avf_concat: fix min value for v 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 d11b650fec..005e4147aa 100644 --- a/libavfilter/avf_concat.c +++ b/libavfilter/avf_concat.c @@ -57,7 +57,7 @@ static const AVOption concat_options[] = { AV_OPT_TYPE_INT, { .dbl = 2 }, 2, INT_MAX }, { "v", "specify the number of video streams", OFFSET(nb_streams[AVMEDIA_TYPE_VIDEO]), - AV_OPT_TYPE_INT, { .dbl = 1 }, 1, INT_MAX }, + AV_OPT_TYPE_INT, { .dbl = 1 }, 0, INT_MAX }, { "a", "specify the number of audio streams", OFFSET(nb_streams[AVMEDIA_TYPE_AUDIO]), AV_OPT_TYPE_INT, { .dbl = 0 }, 0, INT_MAX }, |