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