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

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2022-01-08 02:44:43 +0300
committerJames Almer <jamrial@gmail.com>2022-01-08 02:44:43 +0300
commitc8f80104bd51062172c30909817fc59e261e406a (patch)
treef4475487c679c150765b2a82abb17bd3e0ab13ce /tools
parent068697556fc784e088b351f56df26fab04d503c2 (diff)
cli: split long help line
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/dav1d_cli_parse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/dav1d_cli_parse.c b/tools/dav1d_cli_parse.c
index b32e83e..430bb0e 100644
--- a/tools/dav1d_cli_parse.c
+++ b/tools/dav1d_cli_parse.c
@@ -120,7 +120,8 @@ static void usage(const char *const app, const char *const reason, ...) {
" --input/-i $file: input file\n"
" --output/-o $file: output file (%%n, %%w or %%h will be filled in for per-frame files)\n"
" --demuxer $name: force demuxer type ('ivf', 'section5' or 'annexb'; default: detect from content)\n"
- " --muxer $name: force muxer type (" AVAILABLE_MUXERS "; use 'frame' as prefix to write per-frame files; default: detect from extension; if filename contains %%n, will default to writing per-frame files)\n"
+ " --muxer $name: force muxer type (" AVAILABLE_MUXERS "; default: detect from extension)\n"
+ " use 'frame' as prefix to write per-frame files; if filename contains %%n, will default to writing per-frame files\n"
" --quiet/-q: disable status messages\n"
" --frametimes $file: dump frame times to file\n"
" --limit/-l $num: stop decoding after $num frames\n"