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