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