summaryrefslogtreecommitdiff
path: root/libavformat/img2enc.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-01-24 16:37:49 +0100
committerStefano Sabatini <stefasab@gmail.com>2013-01-25 00:04:23 +0100
commit1ec3324f00e78a057206a475ab7920146bd918e5 (patch)
treec04f5c014a41db4b1077ea252591c84a2da6ad56 /libavformat/img2enc.c
parent069d156454138708855a69ee15262a92bebf63d9 (diff)
lavf/img2enc: extend current options documentation
Diffstat (limited to 'libavformat/img2enc.c')
-rw-r--r--libavformat/img2enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/img2enc.c b/libavformat/img2enc.c
index 0e362f81d4..67b5819dc9 100644
--- a/libavformat/img2enc.c
+++ b/libavformat/img2enc.c
@@ -128,8 +128,8 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
#define OFFSET(x) offsetof(VideoMuxData, x)
#define ENC AV_OPT_FLAG_ENCODING_PARAM
static const AVOption muxoptions[] = {
- { "updatefirst", "", OFFSET(updatefirst), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, ENC },
- { "start_number", "first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, INT_MAX, ENC },
+ { "updatefirst", "update the first image file", OFFSET(updatefirst), 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 },
{ NULL },
};