From a4bc6bb7b1180b5346bf88662e105b5acf5f9231 Mon Sep 17 00:00:00 2001 From: Marko Viitanen Date: Mon, 2 May 2022 22:11:53 +0300 Subject: [PATCH] [cleanup] Remove deprecated -w and -h from documentation --- README.md | 4 ---- src/cli.c | 5 +---- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index 1263d756..5027547d 100644 --- a/README.md +++ b/README.md @@ -344,10 +344,6 @@ Video Usability Information: - undef, bt709, fcc, bt470bg, smpte170m, smpte240m, GBR, YCgCo, bt2020nc, bt2020c --chromaloc : Specify chroma sample location (0 to 5) [0] - -Deprecated parameters: (might be removed at some point) - -w, --width : Use --input-res. - -h, --height : Use --input-res. ``` [comment]: # (END UVG266 HELP MESSAGE) diff --git a/src/cli.c b/src/cli.c index 2c15fd6c..753d8eac 100644 --- a/src/cli.c +++ b/src/cli.c @@ -701,11 +701,8 @@ void print_help(void) " - undef, bt709, fcc, bt470bg, smpte170m,\n" " smpte240m, GBR, YCgCo, bt2020nc, bt2020c\n" " --chromaloc : Specify chroma sample location (0 to 5) [0]\n" - "\n" /* Word wrap to this width to stay under 80 characters (including ") *************/ - "Deprecated parameters: (might be removed at some point)\n" - " -w, --width : Use --input-res.\n" - " -h, --height : Use --input-res.\n"); + ); }