update comment on -p

This commit is contained in:
Josh Coalson
2001-02-08 00:29:58 +00:00
parent 46f2ae8abc
commit e665f2d7ae
3 changed files with 4 additions and 3 deletions

View File

@@ -341,7 +341,7 @@
-p -p
</TD> </TD>
<TD> <TD>
Do exhaustive LP coefficient quantization optimization. This option overrides any <B><TT>-q</TT></B> option. It is expensive and typically will only improve the compression a tiny fraction of a percent. Do exhaustive LP coefficient quantization optimization. This option overrides any <B><TT>-q</TT></B> option. It is expensive and typically will only improve the compression a tiny fraction of a percent. <B><TT>-q</TT></B> has no effect when <B><TT>-l 0</TT></B> is used.
</TD> </TD>
</TR> </TR>
<TR> <TR>

View File

@@ -285,7 +285,8 @@
<listitem> <listitem>
<para>Do exhaustive search of LP coefficient <para>Do exhaustive search of LP coefficient
quantization (expensive!). Overrides -q</para> quantization (expensive!). Overrides -q,
does nothing if using -l 0</para>
</listitem> </listitem>
</varlistentry> </varlistentry>

View File

@@ -355,7 +355,7 @@ int usage(const char *message, ...)
printf(" -9 : synonymous with -l 32 -m -e -r 99 -p (very slow!)\n"); printf(" -9 : synonymous with -l 32 -m -e -r 99 -p (very slow!)\n");
printf(" -e : do exhaustive model search (expensive!)\n"); printf(" -e : do exhaustive model search (expensive!)\n");
printf(" -l max_lpc_order : 0 => use only fixed predictors\n"); printf(" -l max_lpc_order : 0 => use only fixed predictors\n");
printf(" -p : do exhaustive search of LP coefficient quantization (expensive!); overrides -q\n"); printf(" -p : do exhaustive search of LP coefficient quantization (expensive!); overrides -q, does nothing if using -l 0\n");
printf(" -q bits : precision of the quantized linear-predictor coefficients, 0 => let encoder decide (min is %u, default is -q 0)\n", FLAC__MIN_QLP_COEFF_PRECISION); printf(" -q bits : precision of the quantized linear-predictor coefficients, 0 => let encoder decide (min is %u, default is -q 0)\n", FLAC__MIN_QLP_COEFF_PRECISION);
printf(" -r level : rice parameter optimization level (level is 0..99, 0 => none, default is -r 0, above 4 doesn't usually help much)\n"); printf(" -r level : rice parameter optimization level (level is 0..99, 0 => none, default is -r 0, above 4 doesn't usually help much)\n");
printf(" -V : verify a correct encoding by decoding the output in parallel and comparing to the original\n"); printf(" -V : verify a correct encoding by decoding the output in parallel and comparing to the original\n");