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