mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
Fix description of --rice-partition-order in flac -H
This is more of a "human language versus programmer parlor" issue. src/flac/main.c will return usage error for an argument greater than FLAC__MAX_RICE_PARTITION_ORDER (15u). While in programming "0..16" usually means "from zero to 15", in natural human-to-human talk, it would rather mean "from zero to 16". This changes the wording a bit to avoid this misunderstanding. Closes: http://sourceforge.net/p/flac/bugs/352/ Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
This commit is contained in:
committed by
Erik de Castro Lopo
parent
28817ba52f
commit
7eda006d2c
@@ -1613,9 +1613,9 @@ void show_explain(void)
|
||||
printf(" encoder decide (the minimun is %u, the\n", FLAC__MIN_QLP_COEFF_PRECISION);
|
||||
printf(" default is -q 0)\n");
|
||||
printf(" -r, --rice-partition-order=[#,]# Set [min,]max residual partition order\n");
|
||||
printf(" (# is 0..16; min defaults to 0; the\n");
|
||||
printf(" default is -r 0; above 4 doesn't usually\n");
|
||||
printf(" help much)\n");
|
||||
printf(" (# is 0 to 15 inclusive; min defaults to 0;\n");
|
||||
printf(" the default is -r 0; above 4 does not\n");
|
||||
printf(" usually help much)\n");
|
||||
printf("format options:\n");
|
||||
printf(" --force-raw-format Force input (when encoding) or output (when\n");
|
||||
printf(" decoding) to be treated as raw samples\n");
|
||||
|
||||
Reference in New Issue
Block a user