From 1ec6e3a0648fc28bd754e02ee70e9ee512b75f08 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Wed, 27 Mar 2013 17:49:19 +0100 Subject: [PATCH 1/1] Fix option names in documentation and help messages. Signed-off-by: Erik de Castro Lopo --- doc/html/documentation_tools_flac.html | 8 +++++--- doc/html/ru/documentation.html | 2 +- man/flac.1 | 6 ++++-- man/flac.sgml | 5 +++-- src/flac/main.c | 4 +++- 5 files changed, 16 insertions(+), 9 deletions(-) diff --git a/doc/html/documentation_tools_flac.html b/doc/html/documentation_tools_flac.html index 759081c..5f7d67f 100644 --- a/doc/html/documentation_tools_flac.html +++ b/doc/html/documentation_tools_flac.html @@ -963,7 +963,7 @@ --input-size=# - Specify the size of the raw input in bytes. If you are encoding raw samples from stdin, you must set this option in order to be able to use --skip, --until, --cue-sheet, or other options that need to know the size of the input beforehand. If the size given is greater than what is found in the input stream, the encoder will complain about an unexpected end-of-file. If the size given is less, samples will be truncated. + Specify the size of the raw input in bytes. If you are encoding raw samples from stdin, you must set this option in order to be able to use --skip, --until, --cuesheet, or other options that need to know the size of the input beforehand. If the size given is greater than what is found in the input stream, the encoder will complain about an unexpected end-of-file. If the size given is less, samples will be truncated. @@ -1017,6 +1017,7 @@ --no-adaptive-mid-side
+ --no-cued-seekpoints
--no-decode-through-errors
--no-delete-input-file
--no-escape-coding
@@ -1026,7 +1027,7 @@ --no-mid-side
--no-ogg
--no-padding
- --no-qlp-coeff-precision-search
+ --no-qlp-coeff-prec-search
--no-residual-gnuplot
--no-residual-text
--no-sector-align
@@ -1108,6 +1109,7 @@ --max-lpc-order
--mid-side
--no-adaptive-mid-side
+ --no-cued-seekpoints
--no-decode-through-errors
--no-delete-input-file
--no-escape-coding
@@ -1118,7 +1120,7 @@ --no-ogg
--no-padding
--no-preserve-modtime
- --no-qlp-coeff-precision-search
+ --no-qlp-coeff-prec-search
--no-residual-gnuplot
--no-residual-text
--no-sector-align
diff --git a/doc/html/ru/documentation.html b/doc/html/ru/documentation.html index 3497c2b..1c056af 100644 --- a/doc/html/ru/documentation.html +++ b/doc/html/ru/documentation.html @@ -437,7 +437,7 @@ --no-mid-side
--no-ogg
--no-padding
---no-qlp-coeff-precision-search
+--no-qlp-coeff-prec-search
--no-residual-gnuplot
--no-residual-text
--no-sector-align
diff --git a/man/flac.1 b/man/flac.1 index bd112af..411963b 100644 --- a/man/flac.1 +++ b/man/flac.1 @@ -283,7 +283,7 @@ Set sample rate (in Hz). Set the sign of samples (the default is signed). .TP \fB--input-size=\fI#\fB\fR -Specify the size of the raw input in bytes. If you are encoding raw samples from stdin, you must set this option in order to be able to use --skip, --until, --cue-sheet, or other options that need to know the size of the input beforehand. If the size given is greater than what is found in the input stream, the encoder will complain about an unexpected end-of-file. If the size given is less, samples will be truncated. +Specify the size of the raw input in bytes. If you are encoding raw samples from stdin, you must set this option in order to be able to use --skip, --until, --cuesheet, or other options that need to know the size of the input beforehand. If the size given is greater than what is found in the input stream, the encoder will complain about an unexpected end-of-file. If the size given is less, samples will be truncated. .TP \fB--force-raw-format\fR Force input (when encoding) or output (when decoding) to be treated as raw samples (even if filename ends in \fI\&.wav\fR). @@ -300,6 +300,8 @@ Force the decoder to output Wave64 format. This option is not needed if the out .TP \fB--no-adaptive-mid-side\fR .TP +\fB--no-cued-seekpoints\fR +.TP \fB--no-decode-through-errors\fR .TP \fB--no-delete-input-file\fR @@ -320,7 +322,7 @@ Force the decoder to output Wave64 format. This option is not needed if the out .TP \fB--no-padding\fR .TP -\fB--no-qlp-coeff-precision-search\fR +\fB--no-qlp-coeff-prec-search\fR .TP \fB--no-replay-gain\fR .TP diff --git a/man/flac.sgml b/man/flac.sgml index 587e377..df69aa6 100644 --- a/man/flac.sgml +++ b/man/flac.sgml @@ -648,7 +648,7 @@ =# - Specify the size of the raw input in bytes. If you are encoding raw samples from stdin, you must set this option in order to be able to use --skip, --until, --cue-sheet, or other options that need to know the size of the input beforehand. If the size given is greater than what is found in the input stream, the encoder will complain about an unexpected end-of-file. If the size given is less, samples will be truncated. + Specify the size of the raw input in bytes. If you are encoding raw samples from stdin, you must set this option in order to be able to use --skip, --until, --cuesheet, or other options that need to know the size of the input beforehand. If the size given is greater than what is found in the input stream, the encoder will complain about an unexpected end-of-file. If the size given is less, samples will be truncated. @@ -693,6 +693,7 @@ + @@ -703,7 +704,7 @@ - + diff --git a/src/flac/main.c b/src/flac/main.c index 433b950..b6d4893 100644 --- a/src/flac/main.c +++ b/src/flac/main.c @@ -1282,6 +1282,7 @@ void show_help(void) printf(" --force-wave64-format Force decoding to Wave64 format\n"); printf("negative options:\n"); printf(" --no-adaptive-mid-side\n"); + printf(" --no-cued-seekpoints\n"); printf(" --no-decode-through-errors\n"); printf(" --no-delete-input-file\n"); printf(" --no-preserve-modtime\n"); @@ -1601,7 +1602,7 @@ void show_explain(void) printf(" --input-size=# Size of the raw input in bytes. If you are\n"); printf(" encoding raw samples from stdin, you must set\n"); printf(" this option in order to be able to use --skip,\n"); - printf(" --until, --cue-sheet, or other options that need\n"); + printf(" --until, --cuesheet, or other options that need\n"); printf(" to know the size of the input beforehand. If\n"); printf(" the size given is greater than what is found in\n"); printf(" the input stream, the encoder will complain\n"); @@ -1626,6 +1627,7 @@ void show_explain(void) printf(" auto-detected.\n"); printf("negative options:\n"); printf(" --no-adaptive-mid-side\n"); + printf(" --no-cued-seekpoints\n"); printf(" --no-decode-through-errors\n"); printf(" --no-delete-input-file\n"); printf(" --no-preserve-modtime\n"); -- 2.7.4