add --totally-silent option to flac, man page, and html docs
[platform/upstream/flac.git] / src / flac / main.c
1 /* flac - Command-line FLAC encoder/decoder
2  * Copyright (C) 2000,2001,2002,2003,2004  Josh Coalson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18
19 #include <ctype.h>
20 #include <locale.h>
21 #include <stdarg.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <time.h>
26
27 #ifdef HAVE_CONFIG_H
28 #include <config.h>
29 #endif
30
31 #if !defined _MSC_VER && !defined __MINGW32__
32 /* unlink is in stdio.h in VC++ */
33 #include <unistd.h> /* for unlink() */
34 #else
35 #define strcasecmp stricmp
36 #endif
37 #include "FLAC/all.h"
38 #include "share/grabbag.h"
39 #include "analyze.h"
40 #include "decode.h"
41 #include "encode.h"
42 #include "local_string_utils.h" /* for flac__strlcat() and flac__strlcpy() */
43 #include "utils.h"
44 #include "vorbiscomment.h"
45
46 #if 0
47 /*[JEC] was:#if HAVE_GETOPT_LONG*/
48 /*[JEC] see flac/include/share/getopt.h as to why the change */
49 #  include <getopt.h>
50 #else
51 #  include "share/getopt.h"
52 #endif
53
54 typedef enum { RAW, WAV, AIF } FileFormat;
55
56 static int do_it();
57
58 static FLAC__bool init_options();
59 static int parse_options(int argc, char *argv[]);
60 static int parse_option(int short_option, const char *long_option, const char *option_argument);
61 static void free_options();
62
63 static int usage_error(const char *message, ...);
64 static void short_usage();
65 static void show_version();
66 static void show_help();
67 static void show_explain();
68 static void format_mistake(const char *infilename, const char *wrong, const char *right);
69
70 static int encode_file(const char *infilename, FLAC__bool is_first_file, FLAC__bool is_last_file);
71 static int decode_file(const char *infilename);
72
73 static const char *get_encoded_outfilename(const char *infilename);
74 static const char *get_decoded_outfilename(const char *infilename);
75 static const char *get_outfilename(const char *infilename, const char *suffix);
76
77 static void die(const char *message);
78 static char *local_strdup(const char *source);
79
80
81 /*
82  * share__getopt format struct; note that for long options with no
83  * short option equivalent we just set the 'val' field to 0.
84  */
85 static struct share__option long_options_[] = {
86         /*
87          * general options
88          */
89         { "help"             , share__no_argument, 0, 'h' },
90         { "explain"          , share__no_argument, 0, 'H' },
91         { "version"          , share__no_argument, 0, 'v' },
92         { "decode"           , share__no_argument, 0, 'd' },
93         { "analyze"          , share__no_argument, 0, 'a' },
94         { "test"             , share__no_argument, 0, 't' },
95         { "stdout"           , share__no_argument, 0, 'c' },
96         { "silent"           , share__no_argument, 0, 's' },
97         { "totally-silent"   , share__no_argument, 0, 0 },
98         { "force"            , share__no_argument, 0, 'f' },
99         { "delete-input-file", share__no_argument, 0, 0 },
100         { "output-prefix"    , share__required_argument, 0, 0 },
101         { "output-name"      , share__required_argument, 0, 'o' },
102         { "skip"             , share__required_argument, 0, 0 },
103         { "until"            , share__required_argument, 0, 0 },
104
105         /*
106          * decoding options
107          */
108         { "decode-through-errors", share__no_argument, 0, 'F' },
109         { "cue"                  , share__required_argument, 0, 0 },
110         { "apply-replaygain-which-is-not-lossless", share__optional_argument, 0, 0 }, /* undocumented */
111
112         /*
113          * encoding options
114          */
115         { "cuesheet"                  , share__required_argument, 0, 0 },
116         { "no-cued-seekpoints"        , share__no_argument, 0, 0 },
117         { "tag"                       , share__required_argument, 0, 'T' },
118         { "compression-level-0"       , share__no_argument, 0, '0' },
119         { "compression-level-1"       , share__no_argument, 0, '1' },
120         { "compression-level-2"       , share__no_argument, 0, '2' },
121         { "compression-level-3"       , share__no_argument, 0, '3' },
122         { "compression-level-4"       , share__no_argument, 0, '4' },
123         { "compression-level-5"       , share__no_argument, 0, '5' },
124         { "compression-level-6"       , share__no_argument, 0, '6' },
125         { "compression-level-7"       , share__no_argument, 0, '7' },
126         { "compression-level-8"       , share__no_argument, 0, '8' },
127         { "compression-level-9"       , share__no_argument, 0, '9' },
128         { "best"                      , share__no_argument, 0, '8' },
129         { "fast"                      , share__no_argument, 0, '0' },
130         { "super-secret-totally-impractical-compression-level", share__no_argument, 0, 0 },
131         { "verify"                    , share__no_argument, 0, 'V' },
132         { "force-aiff-format"         , share__no_argument, 0, 0 },
133         { "force-raw-format"          , share__no_argument, 0, 0 },
134         { "lax"                       , share__no_argument, 0, 0 },
135         { "replay-gain"               , share__no_argument, 0, 0 },
136         { "sector-align"              , share__no_argument, 0, 0 },
137         { "seekpoint"                 , share__required_argument, 0, 'S' },
138         { "padding"                   , share__required_argument, 0, 'P' },
139 #ifdef FLAC__HAS_OGG
140         { "ogg"                       , share__no_argument, 0, 0 },
141         { "serial-number"             , share__required_argument, 0, 0 },
142 #endif
143         { "blocksize"                 , share__required_argument, 0, 'b' },
144         { "exhaustive-model-search"   , share__no_argument, 0, 'e' },
145         { "max-lpc-order"             , share__required_argument, 0, 'l' },
146         { "mid-side"                  , share__no_argument, 0, 'm' },
147         { "adaptive-mid-side"         , share__no_argument, 0, 'M' },
148         { "qlp-coeff-precision-search", share__no_argument, 0, 'p' },
149         { "qlp-coeff-precision"       , share__required_argument, 0, 'q' },
150         { "rice-partition-order"      , share__required_argument, 0, 'r' },
151         { "endian"                    , share__required_argument, 0, 0 },
152         { "channels"                  , share__required_argument, 0, 0 },
153         { "bps"                       , share__required_argument, 0, 0 },
154         { "sample-rate"               , share__required_argument, 0, 0 },
155         { "sign"                      , share__required_argument, 0, 0 },
156
157         /*
158          * analysis options
159          */
160         { "residual-gnu-plot", share__no_argument, 0, 0 },
161         { "residual-text", share__no_argument, 0, 0 },
162
163         /*
164          * negatives
165          */
166         { "no-decode-through-errors"  , share__no_argument, 0, 0 },
167         { "no-silent"                 , share__no_argument, 0, 0 },
168         { "no-force"                  , share__no_argument, 0, 0 },
169         { "no-seektable"              , share__no_argument, 0, 0 },
170         { "no-delete-input-file"      , share__no_argument, 0, 0 },
171         { "no-replay-gain"            , share__no_argument, 0, 0 },
172         { "no-sector-align"           , share__no_argument, 0, 0 },
173         { "no-lax"                    , share__no_argument, 0, 0 },
174 #ifdef FLAC__HAS_OGG
175         { "no-ogg"                    , share__no_argument, 0, 0 },
176 #endif
177         { "no-exhaustive-model-search", share__no_argument, 0, 0 },
178         { "no-mid-side"               , share__no_argument, 0, 0 },
179         { "no-adaptive-mid-side"      , share__no_argument, 0, 0 },
180         { "no-qlp-coeff-prec-search"  , share__no_argument, 0, 0 },
181         { "no-padding"                , share__no_argument, 0, 0 },
182         { "no-verify"                 , share__no_argument, 0, 0 },
183         { "no-residual-gnuplot"       , share__no_argument, 0, 0 },
184         { "no-residual-text"          , share__no_argument, 0, 0 },
185         /*
186          * undocumented debugging options for the test suite
187          */
188         { "disable-constant-subframes", share__no_argument, 0, 0 },
189         { "disable-fixed-subframes"   , share__no_argument, 0, 0 },
190         { "disable-verbatim-subframes", share__no_argument, 0, 0 },
191
192         {0, 0, 0, 0}
193 };
194
195
196 /*
197  * global to hold command-line option values
198  */
199
200 static struct {
201         FLAC__bool show_help;
202         FLAC__bool show_explain;
203         FLAC__bool show_version;
204         FLAC__bool mode_decode;
205         FLAC__bool verify;
206         FLAC__bool verbose;
207         FLAC__bool silent;
208         FLAC__bool force_file_overwrite;
209         FLAC__bool continue_through_decode_errors;
210         replaygain_synthesis_spec_t replaygain_synthesis_spec;
211         FLAC__bool lax;
212         FLAC__bool test_only;
213         FLAC__bool analyze;
214         FLAC__bool use_ogg;
215         FLAC__bool has_serial_number; /* true iff --serial-number was used */
216         long serial_number; /* this is the Ogg serial number and is unused for native FLAC */
217         FLAC__bool do_mid_side;
218         FLAC__bool loose_mid_side;
219         FLAC__bool do_exhaustive_model_search;
220         FLAC__bool do_escape_coding;
221         FLAC__bool do_qlp_coeff_prec_search;
222         FLAC__bool force_to_stdout;
223         FLAC__bool force_aiff_format;
224         FLAC__bool force_raw_format;
225         FLAC__bool delete_input;
226         FLAC__bool replay_gain;
227         FLAC__bool sector_align;
228         const char *cmdline_forced_outfilename;
229         const char *output_prefix;
230         analysis_options aopts;
231         int padding;
232         unsigned max_lpc_order;
233         unsigned qlp_coeff_precision;
234         const char *skip_specification;
235         const char *until_specification;
236         const char *cue_specification;
237         int format_is_big_endian;
238         int format_is_unsigned_samples;
239         int format_channels;
240         int format_bps;
241         int format_sample_rate;
242         int blocksize;
243         int min_residual_partition_order;
244         int max_residual_partition_order;
245         int rice_parameter_search_dist;
246         char requested_seek_points[50000]; /* bad MAGIC NUMBER but buffer overflow is checked */
247         int num_requested_seek_points; /* -1 => no -S options were given, 0 => -S- was given */
248         const char *cuesheet_filename;
249         FLAC__bool cued_seekpoints;
250
251         unsigned num_files;
252         char **filenames;
253
254         FLAC__StreamMetadata *vorbis_comment;
255
256         struct {
257                 FLAC__bool disable_constant_subframes;
258                 FLAC__bool disable_fixed_subframes;
259                 FLAC__bool disable_verbatim_subframes;
260         } debug;
261 } option_values;
262
263
264 /*
265  * miscellaneous globals
266  */
267
268 static FLAC__int32 align_reservoir_0[588], align_reservoir_1[588]; /* for carrying over samples from --sector-align */
269 static FLAC__int32 *align_reservoir[2] = { align_reservoir_0, align_reservoir_1 };
270 static unsigned align_reservoir_samples = 0; /* 0 .. 587 */
271
272
273 int main(int argc, char *argv[])
274 {
275         int retval = 0;
276
277         setlocale(LC_ALL, "");
278         if(!init_options()) {
279                 if(!option_values.silent) fprintf(stderr, "ERROR: allocating memory\n");
280                 retval = 1;
281         }
282         else {
283                 if((retval = parse_options(argc, argv)) == 0)
284                         retval = do_it();
285         }
286
287         free_options();
288
289         return retval;
290 }
291
292 int do_it()
293 {
294         int retval = 0;
295
296         if(option_values.show_version) {
297                 show_version();
298                 return 0;
299         }
300         else if(option_values.show_explain) {
301                 show_explain();
302                 return 0;
303         }
304         else if(option_values.show_help) {
305                 show_help();
306                 return 0;
307         }
308         else {
309                 if(option_values.num_files == 0) {
310                         if(!option_values.silent) short_usage();
311                         return 0;
312                 }
313
314                 /*
315                  * tweak options; validate the values
316                  */
317                 if(!option_values.mode_decode) {
318                         if(option_values.blocksize < 0) {
319                                 if(option_values.max_lpc_order == 0)
320                                         option_values.blocksize = 1152;
321                                 else
322                                         option_values.blocksize = 4608;
323                         }
324                         if(option_values.max_residual_partition_order < 0) {
325                                 if(option_values.blocksize <= 1152)
326                                         option_values.max_residual_partition_order = 2;
327                                 else if(option_values.blocksize <= 2304)
328                                         option_values.max_residual_partition_order = 3;
329                                 else if(option_values.blocksize <= 4608)
330                                         option_values.max_residual_partition_order = 3;
331                                 else
332                                         option_values.max_residual_partition_order = 4;
333                                 option_values.min_residual_partition_order = option_values.max_residual_partition_order;
334                         }
335                         if(option_values.rice_parameter_search_dist < 0) {
336                                 option_values.rice_parameter_search_dist = 0;
337                         }
338                         if(0 != option_values.cue_specification)
339                                 return usage_error("ERROR: --cue is not allowed in test mode\n");
340                 }
341                 else {
342                         if(option_values.test_only) {
343                                 if(0 != option_values.skip_specification)
344                                         return usage_error("ERROR: --skip is not allowed in test mode\n");
345                                 if(0 != option_values.until_specification)
346                                         return usage_error("ERROR: --until is not allowed in test mode\n");
347                                 if(0 != option_values.cue_specification)
348                                         return usage_error("ERROR: --cue is not allowed in test mode\n");
349                         }
350                 }
351
352                 if(0 != option_values.cue_specification && (0 != option_values.skip_specification || 0 != option_values.until_specification))
353                         return usage_error("ERROR: --cue may not be combined with --skip or --until\n");
354
355                 FLAC__ASSERT(option_values.blocksize >= 0 || option_values.mode_decode);
356
357                 if(option_values.format_channels >= 0) {
358                         if(option_values.format_channels == 0 || (unsigned)option_values.format_channels > FLAC__MAX_CHANNELS)
359                                 return usage_error("ERROR: invalid number of channels '%u', must be > 0 and <= %u\n", option_values.format_channels, FLAC__MAX_CHANNELS);
360                 }
361                 if(option_values.format_bps >= 0) {
362                         if(option_values.format_bps != 8 && option_values.format_bps != 16 && option_values.format_bps != 24)
363                                 return usage_error("ERROR: invalid bits per sample '%u' (must be 8/16/24)\n", option_values.format_bps);
364                 }
365                 if(option_values.format_sample_rate >= 0) {
366                         if(!FLAC__format_sample_rate_is_valid(option_values.format_sample_rate))
367                                 return usage_error("ERROR: invalid sample rate '%u', must be > 0 and <= %u\n", option_values.format_sample_rate, FLAC__MAX_SAMPLE_RATE);
368                 }
369                 if(option_values.force_raw_format && option_values.force_aiff_format)
370                         return usage_error("ERROR: only one of --force-raw-format and --force-aiff-format allowed\n");
371                 if(option_values.mode_decode) {
372                         if(!option_values.force_raw_format) {
373                                 if(option_values.format_is_big_endian >= 0)
374                                         return usage_error("ERROR: --endian only allowed with --force-raw-format\n");
375                                 if(option_values.format_is_unsigned_samples >= 0)
376                                         return usage_error("ERROR: --sign only allowed with --force-raw-format\n");
377                         }
378                         if(option_values.format_channels >= 0)
379                                 return usage_error("ERROR: --channels not allowed with --decode\n");
380                         if(option_values.format_bps >= 0)
381                                 return usage_error("ERROR: --bps not allowed with --decode\n");
382                         if(option_values.format_sample_rate >= 0)
383                                 return usage_error("ERROR: --sample-rate not allowed with --decode\n");
384                 }
385                 if(!option_values.mode_decode && ((unsigned)option_values.blocksize < FLAC__MIN_BLOCK_SIZE || (unsigned)option_values.blocksize > FLAC__MAX_BLOCK_SIZE)) {
386                         return usage_error("ERROR: invalid blocksize '%u', must be >= %u and <= %u\n", (unsigned)option_values.blocksize, FLAC__MIN_BLOCK_SIZE, FLAC__MAX_BLOCK_SIZE);
387                 }
388                 if(option_values.qlp_coeff_precision > 0 && option_values.qlp_coeff_precision < FLAC__MIN_QLP_COEFF_PRECISION) {
389                         return usage_error("ERROR: invalid value '%u' for qlp coeff precision, must be 0 or >= %u\n", option_values.qlp_coeff_precision, FLAC__MIN_QLP_COEFF_PRECISION);
390                 }
391
392                 if(option_values.sector_align) {
393                         if(option_values.mode_decode)
394                                 return usage_error("ERROR: --sector-align only allowed for encoding\n");
395                         if(0 != option_values.skip_specification)
396                                 return usage_error("ERROR: --sector-align not allowed with --skip\n");
397                         if(0 != option_values.until_specification)
398                                 return usage_error("ERROR: --sector-align not allowed with --until\n");
399                         if(0 != option_values.cue_specification)
400                                 return usage_error("ERROR: --sector-align not allowed with --cue\n");
401                         if(option_values.format_channels >= 0 && option_values.format_channels != 2)
402                                 return usage_error("ERROR: --sector-align can only be done with stereo input\n");
403                         if(option_values.format_bps >= 0 && option_values.format_bps != 16)
404                                 return usage_error("ERROR: --sector-align can only be done with 16-bit samples\n");
405                         if(option_values.format_sample_rate >= 0 && option_values.format_sample_rate != 44100)
406                                 return usage_error("ERROR: --sector-align can only be done with a sample rate of 44100\n");
407                 }
408                 if(option_values.replay_gain) {
409                         if(option_values.force_to_stdout)
410                                 return usage_error("ERROR: --replay-gain not allowed with -c/--stdout\n");
411                         if(option_values.mode_decode)
412                                 return usage_error("ERROR: --replay-gain only allowed for encoding\n");
413                         if(option_values.format_channels > 2)
414                                 return usage_error("ERROR: --replay-gain can only be done with mono/stereo input\n");
415                         if(option_values.format_sample_rate >= 0 && !grabbag__replaygain_is_valid_sample_frequency(option_values.format_sample_rate))
416                                 return usage_error("ERROR: invalid sample rate used with --replay-gain\n");
417                         /*
418                          * We want to reserve padding space for the ReplayGain
419                          * tags that we will set later, to avoid rewriting the
420                          * whole file.
421                          */
422                         if(option_values.padding < 0) {
423                                 if(!option_values.silent) fprintf(stderr, "NOTE: --replay-gain may leave a small PADDING block even with --no-padding\n");
424                                 option_values.padding = GRABBAG__REPLAYGAIN_MAX_TAG_SPACE_REQUIRED;
425                         }
426                         else {
427                                 option_values.padding += GRABBAG__REPLAYGAIN_MAX_TAG_SPACE_REQUIRED;
428                         }
429                 }
430                 if(option_values.num_files > 1 && option_values.cmdline_forced_outfilename) {
431                         return usage_error("ERROR: -o/--output-name cannot be used with multiple files\n");
432                 }
433                 if(option_values.cmdline_forced_outfilename && option_values.output_prefix) {
434                         return usage_error("ERROR: --output-prefix conflicts with -o/--output-name\n");
435                 }
436                 if(!option_values.mode_decode && 0 != option_values.cuesheet_filename && option_values.num_files > 1) {
437                         return usage_error("ERROR: --cuesheet cannot be used when encoding multiple files\n");
438                 }
439         }
440         if(option_values.verbose) {
441                 fprintf(stderr, "\n");
442                 fprintf(stderr, "flac %s, Copyright (C) 2000,2001,2002,2003,2004 Josh Coalson\n", FLAC__VERSION_STRING);
443                 fprintf(stderr, "flac comes with ABSOLUTELY NO WARRANTY.  This is free software, and you are\n");
444                 fprintf(stderr, "welcome to redistribute it under certain conditions.  Type `flac' for details.\n\n");
445
446                 if(!option_values.mode_decode) {
447                         char padopt[16];
448                         if(option_values.padding < 0)
449                                 strcpy(padopt, "-");
450                         else
451                                 sprintf(padopt, " %d", option_values.padding);
452                         fprintf(stderr,
453                                 "options:%s%s%s%s -P%s -b %u%s -l %u%s%s%s -q %u -r %u,%u%s\n",
454                                 option_values.delete_input?" --delete-input-file":"",
455                                 option_values.sector_align?" --sector-align":"",
456                                 option_values.use_ogg?" --ogg":"",
457                                 option_values.lax?" --lax":"",
458                                 padopt,
459                                 (unsigned)option_values.blocksize,
460                                 option_values.loose_mid_side?" -M":option_values.do_mid_side?" -m":"",
461                                 option_values.max_lpc_order,
462                                 option_values.do_exhaustive_model_search?" -e":"",
463                                 option_values.do_escape_coding?" -E":"",
464                                 option_values.do_qlp_coeff_prec_search?" -p":"",
465                                 option_values.qlp_coeff_precision,
466                                 (unsigned)option_values.min_residual_partition_order,
467                                 (unsigned)option_values.max_residual_partition_order,
468                                 option_values.verify? " -V":""
469                         );
470                 }
471         }
472
473         if(option_values.mode_decode) {
474                 FLAC__bool first = true;
475
476                 if(option_values.num_files == 0) {
477                         retval = decode_file("-");
478                 }
479                 else {
480                         unsigned i;
481                         if(option_values.num_files > 1)
482                                 option_values.cmdline_forced_outfilename = 0;
483                         for(i = 0, retval = 0; i < option_values.num_files; i++) {
484                                 if(0 == strcmp(option_values.filenames[i], "-") && !first)
485                                         continue;
486                                 retval |= decode_file(option_values.filenames[i]);
487                                 first = false;
488                         }
489                 }
490         }
491         else { /* encode */
492                 FLAC__bool first = true;
493
494                 if(option_values.num_files == 0) {
495                         retval = encode_file("-", first, true);
496                 }
497                 else {
498                         unsigned i;
499                         if(option_values.num_files > 1)
500                                 option_values.cmdline_forced_outfilename = 0;
501                         for(i = 0, retval = 0; i < option_values.num_files; i++) {
502                                 if(0 == strcmp(option_values.filenames[i], "-") && !first)
503                                         continue;
504                                 retval |= encode_file(option_values.filenames[i], first, i == (option_values.num_files-1));
505                                 first = false;
506                         }
507                         if(option_values.replay_gain && retval == 0) {
508                                 float album_gain, album_peak;
509                                 grabbag__replaygain_get_album(&album_gain, &album_peak);
510                                 for(i = 0; i < option_values.num_files; i++) {
511                                         const char *error, *outfilename = get_encoded_outfilename(option_values.filenames[i]);
512                                         if(0 == outfilename) {
513                                                 if(!option_values.silent) fprintf(stderr, "ERROR: filename too long: %s", option_values.filenames[i]);
514                                                 return 1;
515                                         }
516                                         if(0 == strcmp(option_values.filenames[i], "-")) {
517                                                 FLAC__ASSERT(0);
518                                                 /* double protection */
519                                                 if(!option_values.silent) fprintf(stderr, "internal error\n");
520                                                 return 2;
521                                         }
522                                         if(0 != (error = grabbag__replaygain_store_to_file_album(outfilename, album_gain, album_peak, /*preserve_modtime=*/true))) {
523                                                 if(!option_values.silent) fprintf(stderr, "%s: ERROR writing ReplayGain album tags\n", outfilename);
524                                                 retval = 1;
525                                         }
526                                 }
527                         }
528                 }
529         }
530
531         return retval;
532 }
533
534 FLAC__bool init_options()
535 {
536         option_values.show_help = false;
537         option_values.show_explain = false;
538         option_values.mode_decode = false;
539         option_values.verify = false;
540         option_values.verbose = true;
541         option_values.silent = false;
542         option_values.force_file_overwrite = false;
543         option_values.continue_through_decode_errors = false;
544         option_values.replaygain_synthesis_spec.apply = false;
545         option_values.replaygain_synthesis_spec.use_album_gain = true;
546         option_values.replaygain_synthesis_spec.limiter = RGSS_LIMIT__HARD;
547         option_values.replaygain_synthesis_spec.noise_shaping = NOISE_SHAPING_LOW;
548         option_values.replaygain_synthesis_spec.preamp = 0.0;
549         option_values.lax = false;
550         option_values.test_only = false;
551         option_values.analyze = false;
552         option_values.use_ogg = false;
553         option_values.has_serial_number = false;
554         option_values.serial_number = 0;
555         option_values.do_mid_side = true;
556         option_values.loose_mid_side = false;
557         option_values.do_exhaustive_model_search = false;
558         option_values.do_escape_coding = false;
559         option_values.do_qlp_coeff_prec_search = false;
560         option_values.force_to_stdout = false;
561         option_values.force_aiff_format = false;
562         option_values.force_raw_format = false;
563         option_values.delete_input = false;
564         option_values.replay_gain = false;
565         option_values.sector_align = false;
566         option_values.cmdline_forced_outfilename = 0;
567         option_values.output_prefix = 0;
568         option_values.aopts.do_residual_text = false;
569         option_values.aopts.do_residual_gnuplot = false;
570         option_values.padding = 4096;
571         option_values.max_lpc_order = 8;
572         option_values.qlp_coeff_precision = 0;
573         option_values.skip_specification = 0;
574         option_values.until_specification = 0;
575         option_values.cue_specification = 0;
576         option_values.format_is_big_endian = -1;
577         option_values.format_is_unsigned_samples = -1;
578         option_values.format_channels = -1;
579         option_values.format_bps = -1;
580         option_values.format_sample_rate = -1;
581         option_values.blocksize = -1;
582         option_values.min_residual_partition_order = -1;
583         option_values.max_residual_partition_order = -1;
584         option_values.rice_parameter_search_dist = -1;
585         option_values.requested_seek_points[0] = '\0';
586         option_values.num_requested_seek_points = -1;
587         option_values.cuesheet_filename = 0;
588         option_values.cued_seekpoints = true;
589
590         option_values.num_files = 0;
591         option_values.filenames = 0;
592
593         if(0 == (option_values.vorbis_comment = FLAC__metadata_object_new(FLAC__METADATA_TYPE_VORBIS_COMMENT)))
594                 return false;
595
596         option_values.debug.disable_constant_subframes = false;
597         option_values.debug.disable_fixed_subframes = false;
598         option_values.debug.disable_verbatim_subframes = false;
599
600         return true;
601 }
602
603 int parse_options(int argc, char *argv[])
604 {
605         int short_option;
606         int option_index = 1;
607         FLAC__bool had_error = false;
608         const char *short_opts = "0123456789ab:cdefFhHl:mMo:pP:q:r:sS:tT:vV";
609
610         while ((short_option = share__getopt_long(argc, argv, short_opts, long_options_, &option_index)) != -1) {
611                 switch (short_option) {
612                         case 0: /* long option with no equivalent short option */
613                                 had_error |= (parse_option(short_option, long_options_[option_index].name, share__optarg) != 0);
614                                 break;
615                         case '?':
616                         case ':':
617                                 had_error = true;
618                                 break;
619                         default: /* short option */
620                                 had_error |= (parse_option(short_option, 0, share__optarg) != 0);
621                                 break;
622                 }
623         }
624
625         if(had_error) {
626                 return 1;
627         }
628
629         FLAC__ASSERT(share__optind <= argc);
630
631         option_values.num_files = argc - share__optind;
632
633         if(option_values.num_files > 0) {
634                 unsigned i = 0;
635                 if(0 == (option_values.filenames = malloc(sizeof(char *) * option_values.num_files)))
636                         die("out of memory allocating space for file names list");
637                 while(share__optind < argc)
638                         option_values.filenames[i++] = local_strdup(argv[share__optind++]);
639         }
640
641         return 0;
642 }
643
644 int parse_option(int short_option, const char *long_option, const char *option_argument)
645 {
646         char *p;
647
648         if(short_option == 0) {
649                 FLAC__ASSERT(0 != long_option);
650                 if(0 == strcmp(long_option, "totally-silent")) {
651                         option_values.verbose = false;
652                         option_values.silent = true;
653                 }
654                 else if(0 == strcmp(long_option, "delete-input-file")) {
655                         option_values.delete_input = true;
656                 }
657                 else if(0 == strcmp(long_option, "output-prefix")) {
658                         FLAC__ASSERT(0 != option_argument);
659                         option_values.output_prefix = option_argument;
660                 }
661                 else if(0 == strcmp(long_option, "skip")) {
662                         FLAC__ASSERT(0 != option_argument);
663                         option_values.skip_specification = option_argument;
664                 }
665                 else if(0 == strcmp(long_option, "until")) {
666                         FLAC__ASSERT(0 != option_argument);
667                         option_values.until_specification = option_argument;
668                 }
669                 else if(0 == strcmp(long_option, "cue")) {
670                         FLAC__ASSERT(0 != option_argument);
671                         option_values.cue_specification = option_argument;
672                 }
673                 else if(0 == strcmp(long_option, "apply-replaygain-which-is-not-lossless")) {
674                         option_values.replaygain_synthesis_spec.apply = true;
675                         if (0 != option_argument) {
676                                 char *p;
677                                 option_values.replaygain_synthesis_spec.limiter = RGSS_LIMIT__NONE;
678                                 option_values.replaygain_synthesis_spec.noise_shaping = NOISE_SHAPING_NONE;
679                                 option_values.replaygain_synthesis_spec.preamp = strtod(option_argument, &p);
680                                 for ( ; *p; p++) {
681                                         if (*p == 'a')
682                                                 option_values.replaygain_synthesis_spec.use_album_gain = true;
683                                         else if (*p == 't')
684                                                 option_values.replaygain_synthesis_spec.use_album_gain = false;
685                                         else if (*p == 'l')
686                                                 option_values.replaygain_synthesis_spec.limiter = RGSS_LIMIT__PEAK;
687                                         else if (*p == 'L')
688                                                 option_values.replaygain_synthesis_spec.limiter = RGSS_LIMIT__HARD;
689                                         else if (*p == 'n' && p[1] >= '0' && p[1] <= '3') {
690                                                 option_values.replaygain_synthesis_spec.noise_shaping = p[1] - '0';
691                                                 p++;
692                                         }
693                                         else
694                                                 return usage_error("ERROR: bad specification string \"%s\" for --%s\n", option_argument, long_option);
695                                 }
696                         }
697                 }
698                 else if(0 == strcmp(long_option, "cuesheet")) {
699                         FLAC__ASSERT(0 != option_argument);
700                         option_values.cuesheet_filename = option_argument;
701                 }
702                 else if(0 == strcmp(long_option, "no-cued-seekpoints")) {
703                         option_values.cued_seekpoints = false;
704                 }
705                 else if(0 == strcmp(long_option, "super-secret-totally-impractical-compression-level")) {
706                         option_values.lax = true;
707                         option_values.do_exhaustive_model_search = true;
708                         option_values.do_escape_coding = true;
709                         option_values.do_mid_side = true;
710                         option_values.loose_mid_side = false;
711                         option_values.do_qlp_coeff_prec_search = true;
712                         option_values.min_residual_partition_order = 0;
713                         option_values.max_residual_partition_order = 16;
714                         option_values.rice_parameter_search_dist = 0;
715                         option_values.max_lpc_order = 32;
716                 }
717                 else if(0 == strcmp(long_option, "force-aiff-format")) {
718                         option_values.force_aiff_format = true;
719                 }
720                 else if(0 == strcmp(long_option, "force-raw-format")) {
721                         option_values.force_raw_format = true;
722                 }
723                 else if(0 == strcmp(long_option, "lax")) {
724                         option_values.lax = true;
725                 }
726                 else if(0 == strcmp(long_option, "replay-gain")) {
727                         option_values.replay_gain = true;
728                 }
729                 else if(0 == strcmp(long_option, "sector-align")) {
730                         option_values.sector_align = true;
731                 }
732 #ifdef FLAC__HAS_OGG
733                 else if(0 == strcmp(long_option, "ogg")) {
734                         option_values.use_ogg = true;
735                 }
736                 else if(0 == strcmp(long_option, "serial-number")) {
737                         option_values.has_serial_number = true;
738                         option_values.serial_number = atol(option_argument);
739                 }
740 #endif
741                 else if(0 == strcmp(long_option, "endian")) {
742                         FLAC__ASSERT(0 != option_argument);
743                         if(0 == strncmp(option_argument, "big", strlen(option_argument)))
744                                 option_values.format_is_big_endian = true;
745                         else if(0 == strncmp(option_argument, "little", strlen(option_argument)))
746                                 option_values.format_is_big_endian = false;
747                         else
748                                 return usage_error("ERROR: argument to --endian must be \"big\" or \"little\"\n");
749                 }
750                 else if(0 == strcmp(long_option, "channels")) {
751                         FLAC__ASSERT(0 != option_argument);
752                         option_values.format_channels = atoi(option_argument);
753                 }
754                 else if(0 == strcmp(long_option, "bps")) {
755                         FLAC__ASSERT(0 != option_argument);
756                         option_values.format_bps = atoi(option_argument);
757                 }
758                 else if(0 == strcmp(long_option, "sample-rate")) {
759                         FLAC__ASSERT(0 != option_argument);
760                         option_values.format_sample_rate = atoi(option_argument);
761                 }
762                 else if(0 == strcmp(long_option, "sign")) {
763                         FLAC__ASSERT(0 != option_argument);
764                         if(0 == strncmp(option_argument, "signed", strlen(option_argument)))
765                                 option_values.format_is_unsigned_samples = false;
766                         else if(0 == strncmp(option_argument, "unsigned", strlen(option_argument)))
767                                 option_values.format_is_unsigned_samples = true;
768                         else
769                                 return usage_error("ERROR: argument to --sign must be \"signed\" or \"unsigned\"\n");
770                 }
771                 else if(0 == strcmp(long_option, "residual-gnu-plot")) {
772                         option_values.aopts.do_residual_gnuplot = true;
773                 }
774                 else if(0 == strcmp(long_option, "residual-text")) {
775                         option_values.aopts.do_residual_text = true;
776                 }
777                 /*
778                  * negatives
779                  */
780                 else if(0 == strcmp(long_option, "no-decode-through-errors")) {
781                         option_values.continue_through_decode_errors = false;
782                 }
783                 else if(0 == strcmp(long_option, "no-silent")) {
784                         option_values.verbose = true;
785                         option_values.silent = false;
786                 }
787                 else if(0 == strcmp(long_option, "no-force")) {
788                         option_values.force_file_overwrite = false;
789                 }
790                 else if(0 == strcmp(long_option, "no-seektable")) {
791                         option_values.num_requested_seek_points = 0;
792                         option_values.requested_seek_points[0] = '\0';
793                 }
794                 else if(0 == strcmp(long_option, "no-delete-input-file")) {
795                         option_values.delete_input = false;
796                 }
797                 else if(0 == strcmp(long_option, "no-replay-gain")) {
798                         option_values.replay_gain = false;
799                 }
800                 else if(0 == strcmp(long_option, "no-sector-align")) {
801                         option_values.sector_align = false;
802                 }
803                 else if(0 == strcmp(long_option, "no-lax")) {
804                         option_values.lax = false;
805                 }
806 #ifdef FLAC__HAS_OGG
807                 else if(0 == strcmp(long_option, "no-ogg")) {
808                         option_values.use_ogg = false;
809                 }
810 #endif
811                 else if(0 == strcmp(long_option, "no-exhaustive-model-search")) {
812                         option_values.do_exhaustive_model_search = false;
813                 }
814                 else if(0 == strcmp(long_option, "no-mid-side")) {
815                         option_values.do_mid_side = option_values.loose_mid_side = false;
816                 }
817                 else if(0 == strcmp(long_option, "no-adaptive-mid-side")) {
818                         option_values.loose_mid_side = option_values.do_mid_side = false;
819                 }
820                 else if(0 == strcmp(long_option, "no-qlp-coeff-prec-search")) {
821                         option_values.do_qlp_coeff_prec_search = false;
822                 }
823                 else if(0 == strcmp(long_option, "no-padding")) {
824                         option_values.padding = -1;
825                 }
826                 else if(0 == strcmp(long_option, "no-verify")) {
827                         option_values.verify = false;
828                 }
829                 else if(0 == strcmp(long_option, "no-residual-gnuplot")) {
830                         option_values.aopts.do_residual_gnuplot = false;
831                 }
832                 else if(0 == strcmp(long_option, "no-residual-text")) {
833                         option_values.aopts.do_residual_text = false;
834                 }
835                 else if(0 == strcmp(long_option, "disable-constant-subframes")) {
836                         option_values.debug.disable_constant_subframes = true;
837                 }
838                 else if(0 == strcmp(long_option, "disable-fixed-subframes")) {
839                         option_values.debug.disable_fixed_subframes = true;
840                 }
841                 else if(0 == strcmp(long_option, "disable-verbatim-subframes")) {
842                         option_values.debug.disable_verbatim_subframes = true;
843                 }
844         }
845         else {
846                 const char *violation;
847                 switch(short_option) {
848                         case 'h':
849                                 option_values.show_help = true;
850                                 break;
851                         case 'H':
852                                 option_values.show_explain = true;
853                                 break;
854                         case 'v':
855                                 option_values.show_version = true;
856                                 break;
857                         case 'd':
858                                 option_values.mode_decode = true;
859                                 break;
860                         case 'a':
861                                 option_values.mode_decode = true;
862                                 option_values.analyze = true;
863                                 break;
864                         case 't':
865                                 option_values.mode_decode = true;
866                                 option_values.test_only = true;
867                                 break;
868                         case 'c':
869                                 option_values.force_to_stdout = true;
870                                 break;
871                         case 's':
872                                 option_values.verbose = false;
873                                 break;
874                         case 'f':
875                                 option_values.force_file_overwrite = true;
876                                 break;
877                         case 'o':
878                                 FLAC__ASSERT(0 != option_argument);
879                                 option_values.cmdline_forced_outfilename = option_argument;
880                                 break;
881                         case 'F':
882                                 option_values.continue_through_decode_errors = true;
883                                 break;
884                         case 'T':
885                                 FLAC__ASSERT(0 != option_argument);
886                                 if(!flac__vorbiscomment_add(option_values.vorbis_comment, option_argument, &violation))
887                                         return usage_error("ERROR: (-T/--tag) %s\n", violation);
888                                 break;
889                         case '0':
890                                 option_values.do_exhaustive_model_search = false;
891                                 option_values.do_escape_coding = false;
892                                 option_values.do_mid_side = false;
893                                 option_values.loose_mid_side = false;
894                                 option_values.qlp_coeff_precision = 0;
895                                 option_values.min_residual_partition_order = option_values.max_residual_partition_order = 2;
896                                 option_values.rice_parameter_search_dist = 0;
897                                 option_values.max_lpc_order = 0;
898                                 break;
899                         case '1':
900                                 option_values.do_exhaustive_model_search = false;
901                                 option_values.do_escape_coding = false;
902                                 option_values.do_mid_side = true;
903                                 option_values.loose_mid_side = true;
904                                 option_values.qlp_coeff_precision = 0;
905                                 option_values.min_residual_partition_order = option_values.max_residual_partition_order = 2;
906                                 option_values.rice_parameter_search_dist = 0;
907                                 option_values.max_lpc_order = 0;
908                                 break;
909                         case '2':
910                                 option_values.do_exhaustive_model_search = false;
911                                 option_values.do_escape_coding = false;
912                                 option_values.do_mid_side = true;
913                                 option_values.loose_mid_side = false;
914                                 option_values.qlp_coeff_precision = 0;
915                                 option_values.min_residual_partition_order = 0;
916                                 option_values.max_residual_partition_order = 3;
917                                 option_values.rice_parameter_search_dist = 0;
918                                 option_values.max_lpc_order = 0;
919                                 break;
920                         case '3':
921                                 option_values.do_exhaustive_model_search = false;
922                                 option_values.do_escape_coding = false;
923                                 option_values.do_mid_side = false;
924                                 option_values.loose_mid_side = false;
925                                 option_values.qlp_coeff_precision = 0;
926                                 option_values.min_residual_partition_order = option_values.max_residual_partition_order = 3;
927                                 option_values.rice_parameter_search_dist = 0;
928                                 option_values.max_lpc_order = 6;
929                                 break;
930                         case '4':
931                                 option_values.do_exhaustive_model_search = false;
932                                 option_values.do_escape_coding = false;
933                                 option_values.do_mid_side = true;
934                                 option_values.loose_mid_side = true;
935                                 option_values.qlp_coeff_precision = 0;
936                                 option_values.min_residual_partition_order = option_values.max_residual_partition_order = 3;
937                                 option_values.rice_parameter_search_dist = 0;
938                                 option_values.max_lpc_order = 8;
939                                 break;
940                         case '5':
941                                 option_values.do_exhaustive_model_search = false;
942                                 option_values.do_escape_coding = false;
943                                 option_values.do_mid_side = true;
944                                 option_values.loose_mid_side = false;
945                                 option_values.qlp_coeff_precision = 0;
946                                 option_values.min_residual_partition_order = option_values.max_residual_partition_order = 3;
947                                 option_values.rice_parameter_search_dist = 0;
948                                 option_values.max_lpc_order = 8;
949                                 break;
950                         case '6':
951                                 option_values.do_exhaustive_model_search = false;
952                                 option_values.do_escape_coding = false;
953                                 option_values.do_mid_side = true;
954                                 option_values.loose_mid_side = false;
955                                 option_values.qlp_coeff_precision = 0;
956                                 option_values.min_residual_partition_order = 0;
957                                 option_values.max_residual_partition_order = 4;
958                                 option_values.rice_parameter_search_dist = 0;
959                                 option_values.max_lpc_order = 8;
960                                 break;
961                         case '7':
962                                 option_values.do_exhaustive_model_search = true;
963                                 option_values.do_escape_coding = false;
964                                 option_values.do_mid_side = true;
965                                 option_values.loose_mid_side = false;
966                                 option_values.qlp_coeff_precision = 0;
967                                 option_values.min_residual_partition_order = 0;
968                                 option_values.max_residual_partition_order = 6;
969                                 option_values.rice_parameter_search_dist = 0;
970                                 option_values.max_lpc_order = 8;
971                                 break;
972                         case '8':
973                                 option_values.do_exhaustive_model_search = true;
974                                 option_values.do_escape_coding = false;
975                                 option_values.do_mid_side = true;
976                                 option_values.loose_mid_side = false;
977                                 option_values.qlp_coeff_precision = 0;
978                                 option_values.min_residual_partition_order = 0;
979                                 option_values.max_residual_partition_order = 6;
980                                 option_values.rice_parameter_search_dist = 0;
981                                 option_values.max_lpc_order = 12;
982                                 break;
983                         case '9':
984                                 return usage_error("ERROR: compression level '9' is reserved\n");
985                         case 'V':
986                                 option_values.verify = true;
987                                 break;
988                         case 'S':
989                                 FLAC__ASSERT(0 != option_argument);
990                                 if(option_values.num_requested_seek_points < 0)
991                                         option_values.num_requested_seek_points = 0;
992                                 option_values.num_requested_seek_points++;
993                                 if(strlen(option_values.requested_seek_points)+strlen(option_argument)+2 >= sizeof(option_values.requested_seek_points)) {
994                                         return usage_error("ERROR: too many seekpoints requested\n");
995                                 }
996                                 else {
997                                         strcat(option_values.requested_seek_points, option_argument);
998                                         strcat(option_values.requested_seek_points, ";");
999                                 }
1000                                 break;
1001                         case 'P':
1002                                 FLAC__ASSERT(0 != option_argument);
1003                                 option_values.padding = atoi(option_argument);
1004                                 if(option_values.padding < 0)
1005                                         return usage_error("ERROR: argument to -P must be >= 0\n");
1006                                 break;
1007                         case 'b':
1008                                 FLAC__ASSERT(0 != option_argument);
1009                                 option_values.blocksize = atoi(option_argument);
1010                                 break;
1011                         case 'e':
1012                                 option_values.do_exhaustive_model_search = true;
1013                                 break;
1014                         case 'E':
1015                                 option_values.do_escape_coding = true;
1016                                 break;
1017                         case 'l':
1018                                 FLAC__ASSERT(0 != option_argument);
1019                                 option_values.max_lpc_order = atoi(option_argument);
1020                                 break;
1021                         case 'm':
1022                                 option_values.do_mid_side = true;
1023                                 option_values.loose_mid_side = false;
1024                                 break;
1025                         case 'M':
1026                                 option_values.loose_mid_side = option_values.do_mid_side = true;
1027                                 break;
1028                         case 'p':
1029                                 option_values.do_qlp_coeff_prec_search = true;
1030                                 break;
1031                         case 'q':
1032                                 FLAC__ASSERT(0 != option_argument);
1033                                 option_values.qlp_coeff_precision = atoi(option_argument);
1034                                 break;
1035                         case 'r':
1036                                 FLAC__ASSERT(0 != option_argument);
1037                                 p = strchr(option_argument, ',');
1038                                 if(0 == p) {
1039                                         option_values.min_residual_partition_order = 0;
1040                                         option_values.max_residual_partition_order = atoi(option_argument);
1041                                 }
1042                                 else {
1043                                         option_values.min_residual_partition_order = atoi(option_argument);
1044                                         option_values.max_residual_partition_order = atoi(++p);
1045                                 }
1046                                 break;
1047                         case 'R':
1048                                 FLAC__ASSERT(0 != option_argument);
1049                                 option_values.rice_parameter_search_dist = atoi(option_argument);
1050                                 break;
1051                         default:
1052                                 FLAC__ASSERT(0);
1053                 }
1054         }
1055
1056         return 0;
1057 }
1058
1059 void free_options()
1060 {
1061         unsigned i;
1062         if(0 != option_values.filenames) {
1063                 for(i = 0; i < option_values.num_files; i++) {
1064                         if(0 != option_values.filenames[i])
1065                                 free(option_values.filenames[i]);
1066                 }
1067                 free(option_values.filenames);
1068         }
1069         if(0 != option_values.vorbis_comment)
1070                 FLAC__metadata_object_delete(option_values.vorbis_comment);
1071 }
1072
1073 int usage_error(const char *message, ...)
1074 {
1075         if(!option_values.silent) {
1076                 va_list args;
1077
1078                 FLAC__ASSERT(0 != message);
1079
1080                 va_start(args, message);
1081
1082                 (void) vfprintf(stderr, message, args);
1083
1084                 va_end(args);
1085
1086                 printf("Type \"flac\" for a usage summary or \"flac --help\" for all options\n");
1087         }
1088
1089         return 1;
1090 }
1091
1092 void show_version()
1093 {
1094         printf("flac %s\n", FLAC__VERSION_STRING);
1095 }
1096
1097 static void usage_header()
1098 {
1099         printf("===============================================================================\n");
1100         printf("flac - Command-line FLAC encoder/decoder version %s\n", FLAC__VERSION_STRING);
1101         printf("Copyright (C) 2000,2001,2002,2003,2004  Josh Coalson\n");
1102         printf("\n");
1103         printf("This program is free software; you can redistribute it and/or\n");
1104         printf("modify it under the terms of the GNU General Public License\n");
1105         printf("as published by the Free Software Foundation; either version 2\n");
1106         printf("of the License, or (at your option) any later version.\n");
1107         printf("\n");
1108         printf("This program is distributed in the hope that it will be useful,\n");
1109         printf("but WITHOUT ANY WARRANTY; without even the implied warranty of\n");
1110         printf("MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n");
1111         printf("GNU General Public License for more details.\n");
1112         printf("\n");
1113         printf("You should have received a copy of the GNU General Public License\n");
1114         printf("along with this program; if not, write to the Free Software\n");
1115         printf("Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n");
1116         printf("===============================================================================\n");
1117 }
1118
1119 static void usage_summary()
1120 {
1121         printf("Usage:\n");
1122         printf("\n");
1123         printf(" Encoding: flac [<general-options>] [<encoding/format-options>] [INPUTFILE [...]]\n");
1124         printf(" Decoding: flac -d [<general-options>] [<format-options>] [FLACFILE [...]]\n");
1125         printf("  Testing: flac -t [<general-options>] [FLACFILE [...]]\n");
1126         printf("Analyzing: flac -a [<general-options>] [<analysis-options>] [FLACFILE [...]]\n");
1127         printf("\n");
1128 }
1129
1130 void short_usage()
1131 {
1132         usage_header();
1133         printf("\n");
1134         printf("This is the short help; for all options use 'flac --help'; for even more\n");
1135         printf("instructions use 'flac --explain'\n");
1136         printf("\n");
1137         printf("To encode:\n");
1138         printf("  flac [-#] [INPUTFILE [...]]\n");
1139         printf("\n");
1140         printf("  -# is -0 (fastest compression) to -8 (highest compression); -5 is the default\n");
1141         printf("\n");
1142         printf("To decode:\n");
1143         printf("  flac -d [INPUTFILE [...]]\n");
1144         printf("\n");
1145         printf("To test:\n");
1146         printf("  flac -t [INPUTFILE [...]]\n");
1147 }
1148
1149 void show_help()
1150 {
1151         usage_header();
1152         usage_summary();
1153         printf("general options:\n");
1154         printf("  -v, --version                Show the flac version number\n");
1155         printf("  -h, --help                   Show this screen\n");
1156         printf("  -H, --explain                Show detailed explanation of usage and options\n");
1157         printf("  -d, --decode                 Decode (the default behavior is to encode)\n");
1158         printf("  -t, --test                   Same as -d except no decoded file is written\n");
1159         printf("  -a, --analyze                Same as -d except an analysis file is written\n");
1160         printf("  -c, --stdout                 Write output to stdout\n");
1161         printf("  -s, --silent                 Do not write runtime encode/decode statistics\n");
1162         printf("      --totally-silent         Do not print anything, including errors\n");
1163         printf("  -f, --force                  Force overwriting of output files\n");
1164         printf("  -o, --output-name=FILENAME   Force the output file name\n");
1165         printf("      --output-prefix=STRING   Prepend STRING to output names\n");
1166         printf("      --delete-input-file      Deletes after a successful encode/decode\n");
1167         printf("      --skip={#|mm:ss.ss}      Skip the given initial samples for each input\n");
1168         printf("      --until={#|[+|-]mm:ss.ss}  Stop at the given sample for each input file\n");
1169 #ifdef FLAC__HAS_OGG
1170         printf("      --ogg                    Use Ogg as transport layer\n");
1171         printf("      --serial-number          Serial number to use for the FLAC stream\n");
1172 #endif
1173         printf("analysis options:\n");
1174         printf("      --residual-text          Include residual signal in text output\n");
1175         printf("      --residual-gnuplot       Generate gnuplot files of residual distribution\n");
1176         printf("decoding options:\n");
1177         printf("  -F, --decode-through-errors  Continue decoding through stream errors\n");
1178         printf("      --cue=[#.#][-[#.#]]      Set the beginning and ending cuepoints to decode\n");
1179         printf("encoding options:\n");
1180         printf("  -V, --verify                 Verify a correct encoding\n");
1181         printf("      --lax                    Allow encoder to generate non-Subset files\n");
1182         printf("      --sector-align           Align multiple files on sector boundaries\n");
1183         printf("      --replay-gain            Calculate ReplayGain & store in Vorbis comments\n");
1184         printf("      --cuesheet=FILENAME      Import cuesheet and store in CUESHEET block\n");
1185         printf("  -T, --tag=FIELD=VALUE        Add a Vorbis comment; may appear multiple times\n");
1186         printf("  -S, --seekpoint={#|X|#x|#s}  Add seek point(s)\n");
1187         printf("  -P, --padding=#              Write a PADDING block of length #\n");
1188         printf("  -0, --compression-level-0, --fast  Synonymous with -l 0 -b 1152 -r 2,2\n");
1189         printf("  -1, --compression-level-1          Synonymous with -l 0 -b 1152 -M -r 2,2\n");
1190         printf("  -2, --compression-level-2          Synonymous with -l 0 -b 1152 -m -r 3\n");
1191         printf("  -3, --compression-level-3          Synonymous with -l 6 -b 4608 -r 3,3\n");
1192         printf("  -4, --compression-level-4          Synonymous with -l 8 -b 4608 -M -r 3,3\n");
1193         printf("  -5, --compression-level-5          Synonymous with -l 8 -b 4608 -m -r 3,3\n");
1194         printf("  -6, --compression-level-6          Synonymous with -l 8 -b 4608 -m -r 4\n");
1195         printf("  -7, --compression-level-7          Synonymous with -l 8 -b 4608 -m -e -r 6\n");
1196         printf("  -8, --compression-level-8, --best  Synonymous with -l 12 -b 4608 -m -e -r 6\n");
1197         printf("  -b, --blocksize=#                  Specify blocksize in samples\n");
1198         printf("  -m, --mid-side                     Try mid-side coding for each frame\n");
1199         printf("  -M, --adaptive-mid-side            Adaptive mid-side coding for all frames\n");
1200         printf("  -e, --exhaustive-model-search      Do exhaustive model search (expensive!)\n");
1201         printf("  -l, --max-lpc-order=#              Max LPC order; 0 => only fixed predictors\n");
1202         printf("  -p, --qlp-coeff-precision-search   Exhaustively search LP coeff quantization\n");
1203         printf("  -q, --qlp-coeff-precision=#        Specify precision in bits\n");
1204         printf("  -r, --rice-partition-order=[#,]#   Set [min,]max residual partition order\n");
1205         printf("format options:\n");
1206         printf("      --endian={big|little}    Set byte order for samples\n");
1207         printf("      --channels=#             Number of channels\n");
1208         printf("      --bps=#                  Number of bits per sample\n");
1209         printf("      --sample-rate=#          Sample rate in Hz\n");
1210         printf("      --sign={signed|unsigned} Sign of samples\n");
1211         printf("      --force-aiff-format      Force decoding to AIFF format\n");
1212         printf("      --force-raw-format       Treat input or output as raw samples\n");
1213         printf("negative options:\n");
1214         printf("      --no-adaptive-mid-side\n");
1215         printf("      --no-decode-through-errors\n");
1216         printf("      --no-delete-input-file\n");
1217         printf("      --no-exhaustive-model-search\n");
1218         printf("      --no-lax\n");
1219         printf("      --no-mid-side\n");
1220 #ifdef FLAC__HAS_OGG
1221         printf("      --no-ogg\n");
1222 #endif
1223         printf("      --no-padding\n");
1224         printf("      --no-qlp-coeff-prec-search\n");
1225         printf("      --no-replay-gain\n");
1226         printf("      --no-residual-gnuplot\n");
1227         printf("      --no-residual-text\n");
1228         printf("      --no-sector-align\n");
1229         printf("      --no-seektable\n");
1230         printf("      --no-silent\n");
1231         printf("      --no-force\n");
1232         printf("      --no-verify\n");
1233 }
1234
1235 void show_explain()
1236 {
1237         usage_header();
1238         usage_summary();
1239         printf("For encoding:\n");
1240         printf("  The input file(s) may be a PCM RIFF WAVE file, AIFF file, or raw samples.\n");
1241         printf("  The output file(s) will be in native FLAC or Ogg FLAC format\n");
1242         printf("For decoding, the reverse is true.\n");
1243         printf("\n");
1244         printf("A single INPUTFILE may be - for stdin.  No INPUTFILE implies stdin.  Use of\n");
1245         printf("stdin implies -c (write to stdout).  Normally you should use:\n");
1246         printf("   flac [options] -o outfilename  or  flac -d [options] -o outfilename\n");
1247         printf("instead of:\n");
1248         printf("   flac [options] > outfilename   or  flac -d [options] > outfilename\n");
1249         printf("since the former allows flac to seek backwards to write the STREAMINFO or\n");
1250         printf("WAVE/AIFF header contents when necessary.\n");
1251         printf("\n");
1252         printf("flac checks for the presence of a AIFF/WAVE header to decide whether or not to\n");
1253         printf("treat an input file as AIFF/WAVE format or raw samples.  If any input file is\n");
1254         printf("raw you must specify the format options {-fb|fl} -fc -fp and -fs, which will\n");
1255         printf("apply to all raw files.  You can force AIFF/WAVE files to be treated as raw\n");
1256         printf("files using -fr.\n");
1257         printf("\n");
1258         printf("general options:\n");
1259         printf("  -v, --version                Show the flac version number\n");
1260         printf("  -h, --help                   Show basic usage a list of all options\n");
1261         printf("  -H, --explain                Show this screen\n");
1262         printf("  -d, --decode                 Decode (the default behavior is to encode)\n");
1263         printf("  -t, --test                   Same as -d except no decoded file is written\n");
1264         printf("  -a, --analyze                Same as -d except an analysis file is written\n");
1265         printf("  -c, --stdout                 Write output to stdout\n");
1266         printf("  -s, --silent                 Do not write runtime encode/decode statistics\n");
1267         printf("      --totally-silent         Do not print anything of any kind, including\n");
1268         printf("                               warnings or errors.  The exit code will be the\n");
1269         printf("                               only way to determine successful completion.\n");
1270         printf("  -f, --force                  Force overwriting of output files\n");
1271         printf("  -o, --output-name=FILENAME   Force the output file name; usually flac just\n");
1272         printf("                               changes the extension.  May only be used when\n");
1273         printf("                               encoding a single file.  May not be used in\n");
1274         printf("                               conjunction with --output-prefix.\n");
1275         printf("      --output-prefix=STRING   Prefix each output file name with the given\n");
1276         printf("                               STRING.  This can be useful for encoding or\n");
1277         printf("                               decoding files to a different directory.  Make\n");
1278         printf("                               sure if your STRING is a path name that it ends\n");
1279         printf("                               with a '/' slash.\n");
1280         printf("      --delete-input-file      Automatically delete the input file after a\n");
1281         printf("                               successful encode or decode.  If there was an\n");
1282         printf("                               error (including a verify error) the input file\n");
1283         printf("                               is left intact.\n");
1284         printf("      --skip={#|mm:ss.ss}      Skip the first # samples of each input file; can\n");
1285         printf("                               be used both for encoding and decoding.  The\n");
1286         printf("                               alternative form mm:ss.ss can be used to specify\n");
1287         printf("                               minutes, seconds, and fractions of a second.\n");
1288         printf("      --until={#|[+|-]mm:ss.ss}  Stop at the given sample number for each input\n");
1289         printf("                               file.  The given sample number is not included\n");
1290         printf("                               in the decoded output.  The alternative form\n");
1291         printf("                               mm:ss.ss can be used to specify minutes,\n");
1292         printf("                               seconds, and fractions of a second.  If a `+'\n");
1293         printf("                               sign is at the beginning, the --until point is\n");
1294         printf("                               relative to the --skip point.  If a `-' sign is\n");
1295         printf("                               at the beginning, the --until point is relative\n");
1296         printf("                               to end of the audio.\n");
1297 #ifdef FLAC__HAS_OGG
1298         printf("      --ogg                    When encoding, generate Ogg-FLAC output instead\n");
1299         printf("                               of native-FLAC.  Ogg-FLAC streams are FLAC\n");
1300         printf("                               streams wrapped in an Ogg transport layer.  The\n");
1301         printf("                               resulting file should have an '.ogg' extension\n");
1302         printf("                               and will still be decodable by flac.  When\n");
1303         printf("                               decoding, force the input to be treated as\n");
1304         printf("                               Ogg-FLAC.  This is useful when piping input\n");
1305         printf("                               from stdin or when the filename does not end in\n");
1306         printf("                               '.ogg'.\n");
1307         printf("      --serial-number          Serial number to use for the FLAC stream.  When\n");
1308         printf("                               encoding and no serial number is given, flac\n");
1309         printf("                               uses '0'.  When decoding and no number is\n");
1310         printf("                               given, flac uses the serial number of the first\n");
1311         printf("                               page.\n");
1312 #endif
1313         printf("analysis options:\n");
1314         printf("      --residual-text          Include residual signal in text output.  This\n");
1315         printf("                               will make the file very big, much larger than\n");
1316         printf("                               even the decoded file.\n");
1317         printf("      --residual-gnuplot       Generate gnuplot files of residual distribution\n");
1318         printf("                               of each subframe\n");
1319         printf("decoding options:\n");
1320         printf("  -F, --decode-through-errors  By default flac stops decoding with an error\n");
1321         printf("                               and removes the partially decoded file if it\n");
1322         printf("                               encounters a bitstream error.  With -F, errors\n");
1323         printf("                               are still printed but flac will continue\n");
1324         printf("                               decoding to completion.  Note that errors may\n");
1325         printf("                               cause the decoded audio to be missing some\n");
1326         printf("                               samples or have silent sections.\n");
1327         printf("      --cue=[#.#][-[#.#]]      Set the beginning and ending cuepoints to\n");
1328         printf("                               decode.  The optional first #.# is the track and\n");
1329         printf("                               index point at which decoding will start; the\n");
1330         printf("                               default is the beginning of the stream.  The\n");
1331         printf("                               optional second #.# is the track and index point\n");
1332         printf("                               at which decoding will end; the default is the\n");
1333         printf("                               end of the stream.  If the seekpoint does not\n");
1334         printf("                               exist, the closest one before it (for the start\n");
1335         printf("                               point) or after it (for the end point) will be\n");
1336         printf("                               used.  The cuepoints are merely translated into\n");
1337         printf("                               sample numbers then used as --skip and --until.\n");
1338         printf("encoding options:\n");
1339         printf("  -V, --verify                 Verify a correct encoding by decoding the\n");
1340         printf("                               output in parallel and comparing to the\n");
1341         printf("                               original\n");
1342         printf("      --lax                    Allow encoder to generate non-Subset files\n");
1343         printf("      --sector-align           Align encoding of multiple CD format WAVE files\n");
1344         printf("                               on sector boundaries.\n");
1345         printf("      --replay-gain            Calculate ReplayGain values and store in Vorbis\n");
1346         printf("                               comments.  Title gains/peaks will be computed\n");
1347         printf("                               for each file, and an album gain/peak will be\n");
1348         printf("                               computed for all files.  All input files must\n");
1349         printf("                               have the same resolution, sample rate, and\n");
1350         printf("                               number of channels.  The sample rate must be\n");
1351         printf("                               one of 8, 11.025, 12, 16, 22.05, 24, 32, 44.1,\n");
1352         printf("                               or 48 kHz.  NOTE: this option may also leave a\n");
1353         printf("                               few extra bytes in the PADDING block.\n");
1354         printf("      --cuesheet=FILENAME      Import the given cuesheet file and store it in\n");
1355         printf("                               a CUESHEET metadata block.  This option may only\n");
1356         printf("                               be used when encoding a single file.  A\n");
1357         printf("                               seekpoint will be added for each index point in\n");
1358         printf("                               the cuesheet to the SEEKTABLE unless\n");
1359         printf("                               --no-cued-seekpoints is specified.\n");
1360         printf("  -T, --tag=FIELD=VALUE        Add a Vorbis comment.  Make sure to quote the\n");
1361         printf("                               comment if necessary.  This option may appear\n");
1362         printf("                               more than once to add several comments.  NOTE:\n");
1363         printf("                               all tags will be added to all encoded files.\n");
1364         printf("  -S, --seekpoint={#|X|#x|#s}  Include a point or points in a SEEKTABLE\n");
1365         printf("       #  : a specific sample number for a seek point\n");
1366         printf("       X  : a placeholder point (always goes at the end of the SEEKTABLE)\n");
1367         printf("       #x : # evenly spaced seekpoints, the first being at sample 0\n");
1368         printf("       #s : a seekpoint every # seconds; # does not have to be a whole number\n");
1369         printf("     You may use many -S options; the resulting SEEKTABLE will be the unique-\n");
1370         printf("           ified union of all such values.\n");
1371         printf("     With no -S options, flac defaults to '-S 10s'.  Use -S- for no SEEKTABLE.\n");
1372         printf("     Note: -S #x and -S #s will not work if the encoder can't determine the\n");
1373         printf("           input size before starting.\n");
1374         printf("     Note: if you use -S # and # is >= samples in the input, there will be\n");
1375         printf("           either no seek point entered (if the input size is determinable\n");
1376         printf("           before encoding starts) or a placeholder point (if input size is not\n");
1377         printf("           determinable)\n");
1378         printf("  -P, --padding=#              Tell the encoder to write a PADDING metadata\n");
1379         printf("                               block of the given length (in bytes) after the\n");
1380         printf("                               STREAMINFO block.  This is useful if you plan\n");
1381         printf("                               to tag the file later with an APPLICATION\n");
1382         printf("                               block; instead of having to rewrite the entire\n");
1383         printf("                               file later just to insert your block, you can\n");
1384         printf("                               write directly over the PADDING block.  Note\n");
1385         printf("                               that the total length of the PADDING block will\n");
1386         printf("                               be 4 bytes longer than the length given because\n");
1387         printf("                               of the 4 metadata block header bytes.  You can\n");
1388         printf("                               force no PADDING block at all to be written with\n");
1389         printf("                               --no-padding.  The encoder writes a PADDING\n");
1390         printf("                               block of 4096 bytes by default.\n");
1391         printf("  -b, --blocksize=#            Specify the blocksize in samples; the default is\n");
1392         printf("                               1152 for -l 0, else 4608; must be one of 192,\n");
1393         printf("                               576, 1152, 2304, 4608, 256, 512, 1024, 2048,\n");
1394         printf("                               4096, 8192, 16384, or 32768 (unless --lax is\n");
1395         printf("                               used)\n");
1396         printf("  -0, --compression-level-0, --fast  Synonymous with -l 0 -b 1152 -r 2,2\n");
1397         printf("  -1, --compression-level-1          Synonymous with -l 0 -b 1152 -M -r 2,2\n");
1398         printf("  -2, --compression-level-2          Synonymous with -l 0 -b 1152 -m -r 3\n");
1399         printf("  -3, --compression-level-3          Synonymous with -l 6 -b 4608 -r 3,3\n");
1400         printf("  -4, --compression-level-4          Synonymous with -l 8 -b 4608 -M -r 3,3\n");
1401         printf("  -5, --compression-level-5          Synonymous with -l 8 -b 4608 -m -r 3,3\n");
1402         printf("                                     -5 is the default setting\n");
1403         printf("  -6, --compression-level-6          Synonymous with -l 8 -b 4608 -m -r 4\n");
1404         printf("  -7, --compression-level-7          Synonymous with -l 8 -b 4608 -m -e -r 6\n");
1405         printf("  -8, --compression-level-8, --best  Synonymous with -l 12 -b 4608 -m -e -r 6\n");
1406         printf("  -m, --mid-side                     Try mid-side coding for each frame\n");
1407         printf("                                     (stereo only)\n");
1408         printf("  -M, --adaptive-mid-side            Adaptive mid-side coding for all frames\n");
1409         printf("                                     (stereo only)\n");
1410         printf("  -e, --exhaustive-model-search      Do exhaustive model search (expensive!)\n");
1411         printf("  -l, --max-lpc-order=#              Max LPC order; 0 => only fixed predictors\n");
1412         printf("  -p, --qlp-coeff-precision-search   Do exhaustive search of LP coefficient\n");
1413         printf("                                     quantization (expensive!); overrides -q;\n");
1414         printf("                                     does nothing if using -l 0\n");
1415         printf("  -q, --qlp-coeff-precision=#        Specify precision in bits of quantized\n");
1416         printf("                                     linear-predictor coefficients; 0 => let\n");
1417         printf("                                     encoder decide (the minimun is %u, the\n", FLAC__MIN_QLP_COEFF_PRECISION);
1418         printf("                                     default is -q 0)\n");
1419         printf("  -r, --rice-partition-order=[#,]#   Set [min,]max residual partition order\n");
1420         printf("                                     (# is 0..16; min defaults to 0; the\n");
1421         printf("                                     default is -r 0; above 4 doesn't usually\n");
1422         printf("                                     help much)\n");
1423         printf("format options:\n");
1424         printf("      --endian={big|little}    Set byte order for samples\n");
1425         printf("      --channels=#             Number of channels\n");
1426         printf("      --bps=#                  Number of bits per sample\n");
1427         printf("      --sample-rate=#          Sample rate in Hz\n");
1428         printf("      --sign={signed|unsigned} Sign of samples (the default is signed)\n");
1429         printf("      --force-aiff-format      Force the decoder to output AIFF format.  This\n");
1430         printf("                               option is not needed if the output filename (as\n");
1431         printf("                               set by -o) ends with .aif or .aiff; this option\n");
1432         printf("                               has no effect when encoding since input AIFF is\n");
1433         printf("                               auto-detected.\n");
1434         printf("      --force-raw-format       Force input (when encoding) or output (when\n");
1435         printf("                               decoding) to be treated as raw samples\n");
1436         printf("negative options:\n");
1437         printf("      --no-adaptive-mid-side\n");
1438         printf("      --no-decode-through-errors\n");
1439         printf("      --no-delete-input-file\n");
1440         printf("      --no-exhaustive-model-search\n");
1441         printf("      --no-lax\n");
1442         printf("      --no-mid-side\n");
1443 #ifdef FLAC__HAS_OGG
1444         printf("      --no-ogg\n");
1445 #endif
1446         printf("      --no-padding\n");
1447         printf("      --no-qlp-coeff-prec-search\n");
1448         printf("      --no-residual-gnuplot\n");
1449         printf("      --no-residual-text\n");
1450         printf("      --no-sector-align\n");
1451         printf("      --no-seektable\n");
1452         printf("      --no-silent\n");
1453         printf("      --no-force\n");
1454         printf("      --no-verify\n");
1455 }
1456
1457 void format_mistake(const char *infilename, const char *wrong, const char *right)
1458 {
1459         if(!option_values.silent) fprintf(stderr, "WARNING: %s is not a %s file; treating as a %s file\n", infilename, wrong, right);
1460 }
1461
1462 int encode_file(const char *infilename, FLAC__bool is_first_file, FLAC__bool is_last_file)
1463 {
1464         FILE *encode_infile;
1465         FLAC__byte lookahead[12];
1466         unsigned lookahead_length = 0;
1467         FileFormat fmt= RAW;
1468         int retval;
1469         long infilesize;
1470         encode_options_t common_options;
1471         const char *outfilename = get_encoded_outfilename(infilename);
1472
1473         if(0 == outfilename) {
1474                 if(!option_values.silent) fprintf(stderr, "ERROR: filename too long: %s", infilename);
1475                 return 1;
1476         }
1477
1478         /*
1479          * Error if output file already exists (and -f not used).
1480          * Use grabbag__file_get_filesize() as a cheap way to check.
1481          */
1482         if(!option_values.test_only && !option_values.force_file_overwrite && grabbag__file_get_filesize(outfilename) != (off_t)(-1)) {
1483                 if(!option_values.silent) fprintf(stderr, "ERROR: output file %s already exists, use -f to override\n", outfilename);
1484                 return 1;
1485         }
1486
1487         if(0 == strcmp(infilename, "-")) {
1488                 infilesize = -1;
1489                 encode_infile = grabbag__file_get_binary_stdin();
1490         }
1491         else {
1492                 infilesize = grabbag__file_get_filesize(infilename);
1493                 if(0 == (encode_infile = fopen(infilename, "rb"))) {
1494                         if(!option_values.silent) fprintf(stderr, "ERROR: can't open input file %s\n", infilename);
1495                         return 1;
1496                 }
1497         }
1498
1499         if(!option_values.force_raw_format) {
1500                 /* first set format based on name */
1501                 if(strlen(infilename) >= 4 && 0 == strcasecmp(infilename+(strlen(infilename)-4), ".wav"))
1502                         fmt= WAV;
1503                 else if(strlen(infilename) >= 4 && 0 == strcasecmp(infilename+(strlen(infilename)-4), ".aif"))
1504                         fmt= AIF;
1505                 else if(strlen(infilename) >= 5 && 0 == strcasecmp(infilename+(strlen(infilename)-5), ".aiff"))
1506                         fmt= AIF;
1507
1508                 /* attempt to guess the file type based on the first 12 bytes */
1509                 if((lookahead_length = fread(lookahead, 1, 12, encode_infile)) < 12) {
1510                         if(fmt != RAW)
1511                                 format_mistake(infilename, fmt == AIF ? "AIFF" : "WAVE", "raw");
1512                         fmt= RAW;
1513                 }
1514                 else {
1515                         if(!strncmp((const char *)lookahead, "RIFF", 4) && !strncmp((const char *)lookahead+8, "WAVE", 4))
1516                                 fmt= WAV;
1517                         else if(!strncmp((const char *)lookahead, "FORM", 4) && !strncmp((const char *)lookahead+8, "AIFF", 4))
1518                                 fmt= AIF;
1519                         else {
1520                                 if(fmt != RAW)
1521                                         format_mistake(infilename, fmt == AIF ? "AIFF" : "WAVE", "raw");
1522                                 fmt= RAW;
1523                         }
1524                 }
1525         }
1526
1527         if(option_values.sector_align && fmt == RAW && infilesize < 0) {
1528                 if(!option_values.silent) fprintf(stderr, "ERROR: can't --sector-align when the input size is unknown\n");
1529                 return 1;
1530         }
1531
1532         if(fmt == RAW) {
1533                 if(option_values.format_is_big_endian < 0 || option_values.format_is_unsigned_samples < 0 || option_values.format_channels < 0 || option_values.format_bps < 0 || option_values.format_sample_rate < 0)
1534                         return usage_error("ERROR: for encoding a raw file you must specify a value for --endian, --sign, --channels, --bps, and --sample-rate\n");
1535         }
1536
1537         if(encode_infile == stdin || option_values.force_to_stdout) {
1538                 if(option_values.replay_gain)
1539                         return usage_error("ERROR: --replay-gain cannot be used when encoding to stdout\n");
1540         }
1541
1542         if(!flac__utils_parse_skip_until_specification(option_values.skip_specification, &common_options.skip_specification) || common_options.skip_specification.is_relative)
1543                 return usage_error("ERROR: invalid value for --skip\n");
1544
1545         if(!flac__utils_parse_skip_until_specification(option_values.until_specification, &common_options.until_specification)) /*@@@ more checks: no + without --skip, no - unless known total_samples_to_{en,de}code */
1546                 return usage_error("ERROR: invalid value for --until\n");
1547         /* if there is no "--until" we want to default to "--until=-0" */
1548         if(0 == option_values.until_specification)
1549                 common_options.until_specification.is_relative = true;
1550
1551         common_options.verbose = option_values.verbose;
1552         common_options.silent = option_values.silent;
1553         common_options.verify = option_values.verify;
1554 #ifdef FLAC__HAS_OGG
1555         common_options.use_ogg = option_values.use_ogg;
1556         /* set a random serial number if one has not yet been specified */
1557         if(!option_values.has_serial_number) {
1558                 srand(time(0));
1559                 option_values.serial_number = rand();
1560                 option_values.has_serial_number = true;
1561         }
1562         common_options.serial_number = option_values.serial_number++;
1563 #endif
1564         common_options.lax = option_values.lax;
1565         common_options.do_mid_side = option_values.do_mid_side;
1566         common_options.loose_mid_side = option_values.loose_mid_side;
1567         common_options.do_exhaustive_model_search = option_values.do_exhaustive_model_search;
1568         common_options.do_escape_coding = option_values.do_escape_coding;
1569         common_options.do_qlp_coeff_prec_search = option_values.do_qlp_coeff_prec_search;
1570         common_options.min_residual_partition_order = option_values.min_residual_partition_order;
1571         common_options.max_residual_partition_order = option_values.max_residual_partition_order;
1572         common_options.rice_parameter_search_dist = option_values.rice_parameter_search_dist;
1573         common_options.max_lpc_order = option_values.max_lpc_order;
1574         common_options.blocksize = (unsigned)option_values.blocksize;
1575         common_options.qlp_coeff_precision = option_values.qlp_coeff_precision;
1576         common_options.padding = option_values.padding;
1577         common_options.requested_seek_points = option_values.requested_seek_points;
1578         common_options.num_requested_seek_points = option_values.num_requested_seek_points;
1579         common_options.cuesheet_filename = option_values.cuesheet_filename;
1580         common_options.cued_seekpoints = option_values.cued_seekpoints;
1581         common_options.is_first_file = is_first_file;
1582         common_options.is_last_file = is_last_file;
1583         common_options.align_reservoir = align_reservoir;
1584         common_options.align_reservoir_samples = &align_reservoir_samples;
1585         common_options.replay_gain = option_values.replay_gain;
1586         common_options.sector_align = option_values.sector_align;
1587         common_options.vorbis_comment = option_values.vorbis_comment;
1588         common_options.debug.disable_constant_subframes = option_values.debug.disable_constant_subframes;
1589         common_options.debug.disable_fixed_subframes = option_values.debug.disable_fixed_subframes;
1590         common_options.debug.disable_verbatim_subframes = option_values.debug.disable_verbatim_subframes;
1591
1592         if(fmt == RAW) {
1593                 raw_encode_options_t options;
1594
1595                 options.common = common_options;
1596                 options.is_big_endian = option_values.format_is_big_endian;
1597                 options.is_unsigned_samples = option_values.format_is_unsigned_samples;
1598                 options.channels = option_values.format_channels;
1599                 options.bps = option_values.format_bps;
1600                 options.sample_rate = option_values.format_sample_rate;
1601
1602                 retval = flac__encode_raw(encode_infile, infilesize, infilename, outfilename, lookahead, lookahead_length, options);
1603         }
1604         else {
1605                 wav_encode_options_t options;
1606
1607                 options.common = common_options;
1608
1609                 if(fmt == AIF)
1610                         retval = flac__encode_aif(encode_infile, infilesize, infilename, outfilename, lookahead, lookahead_length, options);
1611                 else
1612                         retval = flac__encode_wav(encode_infile, infilesize, infilename, outfilename, lookahead, lookahead_length, options);
1613         }
1614
1615         if(retval == 0 && strcmp(infilename, "-")) {
1616                 if(strcmp(outfilename, "-")) {
1617                         if(option_values.replay_gain) {
1618                                 float title_gain, title_peak;
1619                                 const char *error;
1620                                 grabbag__replaygain_get_title(&title_gain, &title_peak);
1621                                 if(0 != (error = grabbag__replaygain_store_to_file_title(outfilename, title_gain, title_peak, /*preserve_modtime=*/true))) {
1622                                         if(!option_values.silent) fprintf(stderr, "%s: ERROR writing ReplayGain title tags\n", outfilename);
1623                                 }
1624                         }
1625                         grabbag__file_copy_metadata(infilename, outfilename);
1626                 }
1627                 if(option_values.delete_input)
1628                         unlink(infilename);
1629         }
1630
1631         return retval;
1632 }
1633
1634 int decode_file(const char *infilename)
1635 {
1636         int retval;
1637         FLAC__bool treat_as_ogg = false;
1638         decode_options_t common_options;
1639         const char *outfilename = get_decoded_outfilename(infilename);
1640
1641         if(0 == outfilename) {
1642                 if(!option_values.silent) fprintf(stderr, "ERROR: filename too long: %s", infilename);
1643                 return 1;
1644         }
1645
1646         /*
1647          * Error if output file already exists (and -f not used).
1648          * Use grabbag__file_get_filesize() as a cheap way to check.
1649          */
1650         if(!option_values.test_only && !option_values.force_file_overwrite && grabbag__file_get_filesize(outfilename) != (off_t)(-1)) {
1651                 if(!option_values.silent) fprintf(stderr, "ERROR: output file %s already exists, use -f to override\n", outfilename);
1652                 return 1;
1653         }
1654
1655         if(!option_values.test_only && !option_values.analyze) {
1656                 if(option_values.force_raw_format && (option_values.format_is_big_endian < 0 || option_values.format_is_unsigned_samples < 0))
1657                         return usage_error("ERROR: for decoding to a raw file you must specify a value for --endian and --sign\n");
1658         }
1659
1660         if(option_values.use_ogg)
1661                 treat_as_ogg = true;
1662         else if(strlen(infilename) >= 4 && 0 == strcasecmp(infilename+(strlen(infilename)-4), ".ogg"))
1663                 treat_as_ogg = true;
1664         else
1665                 treat_as_ogg = false;
1666
1667 #ifndef FLAC__HAS_OGG
1668         if(treat_as_ogg) {
1669                 if(!option_values.silent) fprintf(stderr, "%s: Ogg support has not been built into this copy of flac\n", infilename);
1670                 return 1;
1671         }
1672 #endif
1673
1674         if(!flac__utils_parse_skip_until_specification(option_values.skip_specification, &common_options.skip_specification) || common_options.skip_specification.is_relative)
1675                 return usage_error("ERROR: invalid value for --skip\n");
1676
1677         if(!flac__utils_parse_skip_until_specification(option_values.until_specification, &common_options.until_specification)) /*@@@ more checks: no + without --skip, no - unless known total_samples_to_{en,de}code */
1678                 return usage_error("ERROR: invalid value for --until\n");
1679         /* if there is no "--until" we want to default to "--until=-0" */
1680         if(0 == option_values.until_specification)
1681                 common_options.until_specification.is_relative = true;
1682
1683         if(option_values.cue_specification) {
1684                 if(!flac__utils_parse_cue_specification(option_values.cue_specification, &common_options.cue_specification))
1685                         return usage_error("ERROR: invalid value for --cue\n");
1686                 common_options.has_cue_specification = true;
1687         }
1688         else
1689                 common_options.has_cue_specification = false;
1690
1691         common_options.verbose = option_values.verbose;
1692         common_options.silent = option_values.silent;
1693         common_options.continue_through_decode_errors = option_values.continue_through_decode_errors;
1694         common_options.replaygain_synthesis_spec = option_values.replaygain_synthesis_spec;
1695 #ifdef FLAC__HAS_OGG
1696         common_options.is_ogg = treat_as_ogg;
1697         common_options.use_first_serial_number = !option_values.has_serial_number;
1698         common_options.serial_number = option_values.serial_number;
1699 #endif
1700
1701         if(!option_values.force_raw_format) {
1702                 wav_decode_options_t options;
1703
1704                 options.common = common_options;
1705
1706                 if(
1707                         option_values.force_aiff_format ||
1708                         (strlen(outfilename) >= 4 && 0 == strcasecmp(outfilename+(strlen(outfilename)-4), ".aif")) ||
1709                         (strlen(outfilename) >= 5 && 0 == strcasecmp(outfilename+(strlen(outfilename)-5), ".aiff"))
1710                 )
1711                         retval = flac__decode_aiff(infilename, option_values.test_only? 0 : outfilename, option_values.analyze, option_values.aopts, options);
1712                 else
1713                         retval = flac__decode_wav(infilename, option_values.test_only? 0 : outfilename, option_values.analyze, option_values.aopts, options);
1714         }
1715         else {
1716                 raw_decode_options_t options;
1717
1718                 options.common = common_options;
1719                 options.is_big_endian = option_values.format_is_big_endian;
1720                 options.is_unsigned_samples = option_values.format_is_unsigned_samples;
1721
1722                 retval = flac__decode_raw(infilename, option_values.test_only? 0 : outfilename, option_values.analyze, option_values.aopts, options);
1723         }
1724
1725         if(retval == 0 && strcmp(infilename, "-")) {
1726                 if(strcmp(outfilename, "-"))
1727                         grabbag__file_copy_metadata(infilename, outfilename);
1728                 if(option_values.delete_input && !option_values.test_only && !option_values.analyze)
1729                         unlink(infilename);
1730         }
1731
1732         return retval;
1733 }
1734
1735 const char *get_encoded_outfilename(const char *infilename)
1736 {
1737         const char *suffix = (option_values.use_ogg? ".ogg" : ".flac");
1738         return get_outfilename(infilename, suffix);
1739 }
1740
1741 const char *get_decoded_outfilename(const char *infilename)
1742 {
1743         const char *suffix;
1744         if(option_values.analyze) {
1745                 suffix = ".ana";
1746         }
1747         else if(option_values.force_raw_format) {
1748                 suffix = ".raw";
1749         }
1750         else if(option_values.force_aiff_format) {
1751                 suffix = ".aiff";
1752         }
1753         else {
1754                 suffix = ".wav";
1755         }
1756         return get_outfilename(infilename, suffix);
1757 }
1758
1759 const char *get_outfilename(const char *infilename, const char *suffix)
1760 {
1761         if(0 == option_values.cmdline_forced_outfilename) {
1762                 static char buffer[4096]; /* @@@ bad MAGIC NUMBER */
1763
1764                 if(0 == strcmp(infilename, "-") || option_values.force_to_stdout) {
1765                         strcpy(buffer, "-");
1766                 }
1767                 else {
1768                         char *p;
1769                         if (flac__strlcpy(buffer, option_values.output_prefix? option_values.output_prefix : "", sizeof buffer) >= sizeof buffer)
1770                                 return 0;
1771                         if (flac__strlcat(buffer, infilename, sizeof buffer) >= sizeof buffer)
1772                                 return 0;
1773                         if(0 == (p = strrchr(buffer, '.'))) {
1774                                 if (flac__strlcat(buffer, suffix, sizeof buffer) >= sizeof buffer)
1775                                         return 0;
1776                         }
1777                         else {
1778                                 if(0 == strcmp(p, suffix)) {
1779                                         *p = '\0';
1780                                         if (flac__strlcat(buffer, "_new", sizeof buffer) >= sizeof buffer)
1781                                                 return 0;
1782                                 }
1783                                 else {
1784                                         *p = '\0';
1785                                 }
1786                                 if (flac__strlcat(buffer, suffix, sizeof buffer) >= sizeof buffer)
1787                                         return 0;
1788                         }
1789                 }
1790                 return buffer;
1791         }
1792         else
1793                 return option_values.cmdline_forced_outfilename;
1794 }
1795
1796 void die(const char *message)
1797 {
1798         FLAC__ASSERT(0 != message);
1799         if(!option_values.silent) fprintf(stderr, "ERROR: %s\n", message);
1800         exit(1);
1801 }
1802
1803 char *local_strdup(const char *source)
1804 {
1805         char *ret;
1806         FLAC__ASSERT(0 != source);
1807         if(0 == (ret = strdup(source)))
1808                 die("out of memory during strdup()");
1809         return ret;
1810 }