From abdebe0bf91bb27680ba930ffbbd877096c2fcee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arttu=20Yl=C3=A4-Outinen?= Date: Mon, 18 Jun 2018 09:33:36 +0300 Subject: [PATCH] Fix --owf help message The number of parallel frames is --owf plus one, not --owf minus one. Fixes #204. --- README.md | 2 +- doc/kvazaar.1 | 2 +- src/cli.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4b1ecead..968e98ea 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ Parallel processing: - N: Use N threads for encoding. - auto: Select automatically. --owf : Frame-level parallelism [auto] - - N: Process N-1 frames at a time. + - N: Process N+1 frames at a time. - auto: Select automatically. --(no-)wpp : Wavefront parallel processing. [enabled] Enabling tiles automatically disables WPP. diff --git a/doc/kvazaar.1 b/doc/kvazaar.1 index 22aac7f1..c936d27c 100644 --- a/doc/kvazaar.1 +++ b/doc/kvazaar.1 @@ -278,7 +278,7 @@ Number of threads to use [auto] .TP \fB\-\-owf Frame\-level parallelism [auto] - \- N: Process N\-1 frames at a time. + \- N: Process N+1 frames at a time. \- auto: Select automatically. .TP \fB\-\-(no\-)wpp diff --git a/src/cli.c b/src/cli.c index 9b82f864..22c78b35 100644 --- a/src/cli.c +++ b/src/cli.c @@ -485,7 +485,7 @@ void print_help(void) " - N: Use N threads for encoding.\n" " - auto: Select automatically.\n" " --owf : Frame-level parallelism [auto]\n" - " - N: Process N-1 frames at a time.\n" + " - N: Process N+1 frames at a time.\n" " - auto: Select automatically.\n" " --(no-)wpp : Wavefront parallel processing. [enabled]\n" " Enabling tiles automatically disables WPP.\n"