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:
authorMatthias Dressel <code@deadcode.eu>2020-03-07 17:59:59 +0300
committerMatthias Dressel <code@deadcode.eu>2020-03-07 17:59:59 +0300
commitacfbd09b7bbdcc3185d11560de52727a715b6bae (patch)
treea6ffc933f935122d6e40c689ea9439eeccd0707f /tools
parentb2f7ba6050223dd382691955d232e3e6abe0b303 (diff)
CLI: Remove additional space
The argument for --input was aligned with the argument for --output. None of the other arguments were aligned. For consistency either align all or none. This commit removes the alignment.
Diffstat (limited to 'tools')
-rw-r--r--tools/dav1d_cli_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dav1d_cli_parse.c b/tools/dav1d_cli_parse.c
index aca027f..98b4253 100644
--- a/tools/dav1d_cli_parse.c
+++ b/tools/dav1d_cli_parse.c
@@ -102,7 +102,7 @@ static void usage(const char *const app, const char *const reason, ...) {
}
fprintf(stderr, "Usage: %s [options]\n\n", app);
fprintf(stderr, "Supported options:\n"
- " --input/-i $file: input file\n"
+ " --input/-i $file: input file\n"
" --output/-o $file: output file\n"
" --demuxer $name: force demuxer type ('ivf', 'section5' or 'annexb'; default: detect from extension)\n"
" --muxer $name: force muxer type ('md5', 'yuv', 'yuv4mpeg2' or 'null'; default: detect from extension)\n"