[FFmpeg-cvslog] lavf/file: fix help message first character casing for trunc option
Stefano Sabatini
git at videolan.org
Sun Jan 5 00:56:22 CET 2014
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Jan 5 00:50:22 2014 +0100| [22fa50d15938ffd6ebba7d711407ad3b08e616e0] | committer: Stefano Sabatini
lavf/file: fix help message first character casing for trunc option
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=22fa50d15938ffd6ebba7d711407ad3b08e616e0
---
libavformat/file.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/file.c b/libavformat/file.c
index 1d323e2..6511328 100644
--- a/libavformat/file.c
+++ b/libavformat/file.c
@@ -54,7 +54,7 @@ typedef struct FileContext {
} FileContext;
static const AVOption file_options[] = {
- { "truncate", "Truncate existing files on write", offsetof(FileContext, trunc), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
+ { "truncate", "truncate existing files on write", offsetof(FileContext, trunc), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
{ "blocksize", "set I/O operation maximum block size", offsetof(FileContext, blocksize), AV_OPT_TYPE_INT, { .i64 = INT_MAX }, 1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
{ NULL }
};
More information about the ffmpeg-cvslog
mailing list