summaryrefslogtreecommitdiff
path: root/libavformat/img2enc.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-08-22 10:09:11 +0200
committerStefano Sabatini <stefasab@gmail.com>2013-08-22 14:26:23 +0200
commit7af7b45c3802d3d75981057cfda1e1764e96c4da (patch)
treeb1b019c52434e67a8e0a5c18340532020835a5de /libavformat/img2enc.c
parent25e4ec6aa14d5e9f2aebc87e1f076c4669f2e1f7 (diff)
lavf/image2: extend start_number range to accept zero
Address trac ticket #2884.
Diffstat (limited to 'libavformat/img2enc.c')
-rw-r--r--libavformat/img2enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/img2enc.c b/libavformat/img2enc.c
index 7b10623570..11223fba82 100644
--- a/libavformat/img2enc.c
+++ b/libavformat/img2enc.c
@@ -142,7 +142,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
static const AVOption muxoptions[] = {
{ "updatefirst", "continuously overwrite one file", OFFSET(update), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, ENC },
{ "update", "continuously overwrite one file", OFFSET(update), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, ENC },
- { "start_number", "set first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, INT_MAX, ENC },
+ { "start_number", "set first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, INT_MAX, ENC },
{ "strftime", "use strftime for filename", OFFSET(use_strftime), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, ENC },
{ NULL },
};