Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2013-10-19 22:24:58 +0400
committerClément Bœsch <u@pkh.me>2013-11-07 23:30:43 +0400
commitc37b0daf336c717fd693e9942411e48a99d91bd0 (patch)
treea303ee376ffe20b6f74b053aa8016121a1b88375 /libavformat/gif.c
parent3c5e6e76356e5fdcbba831be0696b915258a6e96 (diff)
avformat/gif: fix final_delay unit in documentation.
Diffstat (limited to 'libavformat/gif.c')
-rw-r--r--libavformat/gif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c
index f6e76254da..e52498d42b 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -194,7 +194,7 @@ static int gif_write_trailer(AVFormatContext *s)
static const AVOption options[] = {
{ "loop", "Number of times to loop the output: -1 - no loop, 0 - infinite loop", OFFSET(loop),
AV_OPT_TYPE_INT, { .i64 = 0 }, -1, 65535, ENC },
- { "final_delay", "Force delay (in ms) after the last frame", OFFSET(last_delay),
+ { "final_delay", "Force delay (in centiseconds) after the last frame", OFFSET(last_delay),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 65535, ENC },
{ NULL },
};