From ae3cd7f9d35dc9abee49cc94754317cf63b8e33d Mon Sep 17 00:00:00 2001 From: Maryla Date: Thu, 2 Jan 2025 16:17:25 +0100 Subject: [PATCH] Fix flag order --- apps/avifenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/avifenc.c b/apps/avifenc.c index 90daac4495..7980c92b62 100644 --- a/apps/avifenc.c +++ b/apps/avifenc.c @@ -268,8 +268,8 @@ static void syntaxLong(void) printf(" --tilerowslog2 R : Set log2 of number of tile rows (0-6, default: 0)\n"); printf(" --tilecolslog2 C : Set log2 of number of tile columns (0-6, default: 0)\n"); printf(" --autotiling : Set --tilerowslog2 and --tilecolslog2 automatically\n"); - printf(" --max QP : Deprecated, use -q [0-100] instead\n"); printf(" --min QP : Deprecated, use -q [0-100] instead\n"); + printf(" --max QP : Deprecated, use -q [0-100] instead\n"); printf(" --minalpha QP : Deprecated, use --qalpha [0-100] instead\n"); printf(" --maxalpha QP : Deprecated, use --qalpha [0-100] instead\n"); printf(" --scaling-mode N[/D] : EXPERIMENTAL: Set frame (layer) scaling mode as given fraction. If omitted, D default to 1. (Default: 1/1)\n");