OSDN Git Service

avformat/gif: fix final_delay unit in documentation.
authorClément Bœsch <u@pkh.me>
Sat, 19 Oct 2013 18:24:58 +0000 (20:24 +0200)
committerClément Bœsch <u@pkh.me>
Thu, 7 Nov 2013 19:30:43 +0000 (20:30 +0100)
libavformat/gif.c

index f6e7625..e52498d 100644 (file)
@@ -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 },
 };