From 46301e9857b8bddcefe919df4205c8568c8f83c0 Mon Sep 17 00:00:00 2001 From: Pauli Oikkonen Date: Tue, 6 Oct 2020 21:17:36 +0300 Subject: [PATCH] Document the --fast-coeff-table option --- README.md | 3 +++ src/cli.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 87ae5f7a..ecac2cb6 100644 --- a/README.md +++ b/README.md @@ -243,6 +243,9 @@ Compression tools: - sensitive: Terminate even earlier. --fast-residual-cost : Skip CABAC cost for residual coefficients when QP is below the limit. [0] + --fast-coeff-table : Read custom weights for residual + coefficients from a file instead of using + defaults [default] --(no-)intra-rdo-et : Check intra modes in rdo stage only until a zero coefficient CU is found. [disabled] --(no-)early-skip : Try to find skip cu from merge candidates. diff --git a/src/cli.c b/src/cli.c index 73e09e3f..7ff082b7 100644 --- a/src/cli.c +++ b/src/cli.c @@ -574,6 +574,9 @@ void print_help(void) " - sensitive: Terminate even earlier.\n" " --fast-residual-cost : Skip CABAC cost for residual coefficients\n" " when QP is below the limit. [0]\n" + " --fast-coeff-table : Read custom weights for residual\n" + " coefficients from a file instead of using\n" + " defaults [default]\n" " --(no-)intra-rdo-et : Check intra modes in rdo stage only until\n" " a zero coefficient CU is found. [disabled]\n" " --(no-)early-skip : Try to find skip cu from merge candidates.\n"