summaryrefslogtreecommitdiff
path: root/libavfilter/avf_concat.c
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-07-28 11:48:14 +0200
committerNicolas George <nicolas.george@normalesup.org>2012-07-28 11:48:14 +0200
commit9a757cca3485cd747cbce202f57dfe1f4ac5dba3 (patch)
tree7731c67fe244c8b6af004658b0b79d38c263b419 /libavfilter/avf_concat.c
parent66a52018194861540d11e5b0815719516479d776 (diff)
avf_concat: fix min value for v option.
Diffstat (limited to 'libavfilter/avf_concat.c')
-rw-r--r--libavfilter/avf_concat.c2
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 },