ref: acfbd09b7bbdcc3185d11560de52727a715b6bae
parent: b2f7ba6050223dd382691955d232e3e6abe0b303
author: Matthias Dressel <code@deadcode.eu>
date: Sat Mar 7 10:59:59 EST 2020
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.
--- a/tools/dav1d_cli_parse.c
+++ b/tools/dav1d_cli_parse.c
@@ -102,7 +102,7 @@
}
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"