update verbiage about -P, now that the default is -P 4096
[platform/upstream/flac.git] / src / flac / encode.c
1 /* flac - Command-line FLAC encoder/decoder
2  * Copyright (C) 2000,2001,2002,2003  Josh Coalson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18
19 #if defined _WIN32 && !defined __CYGWIN__
20 /* where MSVC puts unlink() */
21 # include <io.h>
22 #else
23 # include <unistd.h>
24 #endif
25 #include <limits.h> /* for LONG_MAX */
26 #include <math.h> /* for floor() */
27 #include <stdarg.h>
28 #include <stdio.h> /* for FILE etc. */
29 #include <stdlib.h> /* for malloc */
30 #include <string.h> /* for strcmp() */
31 #include "FLAC/all.h"
32 #include "share/grabbag.h"
33 #include "encode.h"
34
35 #ifdef HAVE_CONFIG_H
36 #include <config.h>
37 #endif
38
39 #ifdef FLAC__HAS_OGG
40 #include "OggFLAC/stream_encoder.h"
41 #endif
42
43 #ifdef min
44 #undef min
45 #endif
46 #define min(x,y) ((x)<(y)?(x):(y))
47
48 /* this MUST be >= 588 so that sector aligning can take place with one read */
49 #define CHUNK_OF_SAMPLES 2048
50
51 typedef struct {
52 #ifdef FLAC__HAS_OGG
53         FLAC__bool use_ogg;
54 #endif
55         FLAC__bool verify;
56         FLAC__bool verbose;
57         FLAC__bool is_stdout;
58         const char *inbasefilename;
59         const char *outfilename;
60
61         FLAC__uint64 skip;
62         FLAC__uint64 until; /* a value of 0 mean end-of-stream (i.e. --until=-0) */
63         FLAC__bool replay_gain;
64         unsigned channels;
65         unsigned bits_per_sample;
66         unsigned sample_rate;
67         FLAC__uint64 unencoded_size;
68         FLAC__uint64 total_samples_to_encode;
69         FLAC__uint64 bytes_written;
70         FLAC__uint64 samples_written;
71         unsigned blocksize;
72         unsigned stats_mask;
73
74         /*
75          * We use flac.stream for encoding native FLAC to stdout
76          * We use flac.file for encoding native FLAC to a regular file
77          * We use ogg.stream for encoding Ogg FLAC to either stdout or a regular file
78          */
79         union {
80                 union {
81                         FLAC__StreamEncoder *stream;
82                         FLAC__FileEncoder *file;
83                 } flac;
84 #ifdef FLAC__HAS_OGG
85                 union {
86                         OggFLAC__StreamEncoder *stream;
87                 } ogg;
88 #endif
89         } encoder;
90
91         FILE *fin;
92         FILE *fout;
93         FLAC__StreamMetadata *seek_table_template;
94 } EncoderSession;
95
96
97 static FLAC__bool is_big_endian_host_;
98
99 static unsigned char ucbuffer_[CHUNK_OF_SAMPLES*FLAC__MAX_CHANNELS*((FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE+7)/8)];
100 static signed char *scbuffer_ = (signed char *)ucbuffer_;
101 static FLAC__uint16 *usbuffer_ = (FLAC__uint16 *)ucbuffer_;
102 static FLAC__int16 *ssbuffer_ = (FLAC__int16 *)ucbuffer_;
103
104 static FLAC__int32 in_[FLAC__MAX_CHANNELS][CHUNK_OF_SAMPLES];
105 static FLAC__int32 *input_[FLAC__MAX_CHANNELS];
106
107
108 /*
109  * unpublished debug routines from the FLAC libs
110  */
111 extern FLAC__bool FLAC__stream_encoder_disable_constant_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value);
112 extern FLAC__bool FLAC__stream_encoder_disable_fixed_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value);
113 extern FLAC__bool FLAC__stream_encoder_disable_verbatim_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value);
114 extern FLAC__bool FLAC__file_encoder_disable_constant_subframes(FLAC__FileEncoder *encoder, FLAC__bool value);
115 extern FLAC__bool FLAC__file_encoder_disable_fixed_subframes(FLAC__FileEncoder *encoder, FLAC__bool value);
116 extern FLAC__bool FLAC__file_encoder_disable_verbatim_subframes(FLAC__FileEncoder *encoder, FLAC__bool value);
117 #ifdef FLAC__HAS_OGG
118 extern FLAC__bool OggFLAC__stream_encoder_disable_constant_subframes(OggFLAC__StreamEncoder *encoder, FLAC__bool value);
119 extern FLAC__bool OggFLAC__stream_encoder_disable_fixed_subframes(OggFLAC__StreamEncoder *encoder, FLAC__bool value);
120 extern FLAC__bool OggFLAC__stream_encoder_disable_verbatim_subframes(OggFLAC__StreamEncoder *encoder, FLAC__bool value);
121 #endif
122
123 /*
124  * local routines
125  */
126 static FLAC__bool EncoderSession_construct(EncoderSession *e, FLAC__bool use_ogg, FLAC__bool verify, FLAC__bool verbose, FILE *infile, const char *infilename, const char *outfilename);
127 static void EncoderSession_destroy(EncoderSession *e);
128 static int EncoderSession_finish_ok(EncoderSession *e, int info_align_carry, int info_align_zero);
129 static int EncoderSession_finish_error(EncoderSession *e);
130 static FLAC__bool EncoderSession_init_encoder(EncoderSession *e, encode_options_t options, unsigned channels, unsigned bps, unsigned sample_rate);
131 static FLAC__bool EncoderSession_process(EncoderSession *e, const FLAC__int32 * const buffer[], unsigned samples);
132 static FLAC__bool convert_to_seek_table_template(const char *requested_seek_points, int num_requested_seek_points, FLAC__StreamMetadata *cuesheet, EncoderSession *e);
133 static FLAC__bool canonicalize_until_specification(utils__SkipUntilSpecification *spec, const char *inbasefilename, unsigned sample_rate, FLAC__uint64 skip, FLAC__uint64 total_samples_in_input);
134 static void format_input(FLAC__int32 *dest[], unsigned wide_samples, FLAC__bool is_big_endian, FLAC__bool is_unsigned_samples, unsigned channels, unsigned bps);
135 #ifdef FLAC__HAS_OGG
136 static FLAC__StreamEncoderWriteStatus ogg_stream_encoder_write_callback(const OggFLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data);
137 #endif
138 static FLAC__StreamEncoderWriteStatus flac_stream_encoder_write_callback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data);
139 static void flac_stream_encoder_metadata_callback(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data);
140 static void flac_file_encoder_progress_callback(const FLAC__FileEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, unsigned frames_written, unsigned total_frames_estimate, void *client_data);
141 static FLAC__bool parse_cuesheet_(FLAC__StreamMetadata **cuesheet, const char *cuesheet_filename, const char *inbasefilename, FLAC__uint64 lead_out_offset);
142 static void print_stats(const EncoderSession *encoder_session);
143 static void print_error_with_state(const EncoderSession *e, const char *message);
144 static void print_verify_error(EncoderSession *e);
145 static FLAC__bool read_little_endian_uint16(FILE *f, FLAC__uint16 *val, FLAC__bool eof_ok, const char *fn);
146 static FLAC__bool read_little_endian_uint32(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn);
147 static FLAC__bool read_big_endian_uint16(FILE *f, FLAC__uint16 *val, FLAC__bool eof_ok, const char *fn);
148 static FLAC__bool read_big_endian_uint32(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn);
149 static FLAC__bool read_sane_extended(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn);
150
151 /*
152  * public routines
153  */
154 int
155 flac__encode_aif(FILE *infile, long infilesize, const char *infilename, const char *outfilename,
156         const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options)
157 {
158         EncoderSession encoder_session;
159         FLAC__uint16 x;
160         FLAC__uint32 xx;
161         unsigned int channels= 0U, bps= 0U, sample_rate= 0U, sample_frames= 0U;
162         FLAC__bool got_comm_chunk= false, got_ssnd_chunk= false;
163         int info_align_carry= -1, info_align_zero= -1;
164
165         (void)infilesize; /* silence compiler warning about unused parameter */
166         (void)lookahead; /* silence compiler warning about unused parameter */
167         (void)lookahead_length; /* silence compiler warning about unused parameter */
168
169         if(!
170                 EncoderSession_construct(
171                         &encoder_session,
172 #ifdef FLAC__HAS_OGG
173                         options.common.use_ogg,
174 #else
175                         /*use_ogg=*/false,
176 #endif
177                         options.common.verify,
178                         options.common.verbose,
179                         infile,
180                         infilename,
181                         outfilename
182                 )
183         )
184                 return 1;
185
186         /* lookahead[] already has "FORMxxxxAIFF", do sub-chunks */
187
188         while(1) {
189                 size_t c= 0U;
190                 char chunk_id[4];
191
192                 /* chunk identifier; really conservative about behavior of fread() and feof() */
193                 if(feof(infile) || ((c= fread(chunk_id, 1U, 4U, infile)), c==0U && feof(infile)))
194                         break;
195                 else if(c<4U || feof(infile)) {
196                         fprintf(stderr, "%s: ERROR: incomplete chunk identifier\n", encoder_session.inbasefilename);
197                         return EncoderSession_finish_error(&encoder_session);
198                 }
199
200                 if(got_comm_chunk==false && !strncmp(chunk_id, "COMM", 4)) { /* common chunk */
201                         unsigned long skip;
202
203                         /* COMM chunk size */
204                         if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
205                                 return EncoderSession_finish_error(&encoder_session);
206                         else if(xx<18U) {
207                                 fprintf(stderr, "%s: ERROR: non-standard 'COMM' chunk has length = %u\n", encoder_session.inbasefilename, (unsigned int)xx);
208                                 return EncoderSession_finish_error(&encoder_session);
209                         }
210                         else if(xx!=18U)
211                                 fprintf(stderr, "%s: WARNING: non-standard 'COMM' chunk has length = %u\n", encoder_session.inbasefilename, (unsigned int)xx);
212                         skip= (xx-18U)+(xx & 1U);
213
214                         /* number of channels */
215                         if(!read_big_endian_uint16(infile, &x, false, encoder_session.inbasefilename))
216                                 return EncoderSession_finish_error(&encoder_session);
217                         else if(x==0U || x>FLAC__MAX_CHANNELS) {
218                                 fprintf(stderr, "%s: ERROR: unsupported number channels %u\n", encoder_session.inbasefilename, (unsigned int)x);
219                                 return EncoderSession_finish_error(&encoder_session);
220                         }
221                         else if(options.common.sector_align && x!=2U) {
222                                 fprintf(stderr, "%s: ERROR: file has %u channels, must be 2 for --sector-align\n", encoder_session.inbasefilename, (unsigned int)x);
223                                 return EncoderSession_finish_error(&encoder_session);
224                         }
225                         channels= x;
226
227                         /* number of sample frames */
228                         if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
229                                 return EncoderSession_finish_error(&encoder_session);
230                         sample_frames= xx;
231
232                         /* bits per sample */
233                         if(!read_big_endian_uint16(infile, &x, false, encoder_session.inbasefilename))
234                                 return EncoderSession_finish_error(&encoder_session);
235                         else if(x!=8U && x!=16U && x!=24U) {
236                                 fprintf(stderr, "%s: ERROR: unsupported bits per sample %u\n", encoder_session.inbasefilename, (unsigned int)x);
237                                 return EncoderSession_finish_error(&encoder_session);
238                         }
239                         else if(options.common.sector_align && x!=16U) {
240                                 fprintf(stderr, "%s: ERROR: file has %u bits per sample, must be 16 for --sector-align\n", encoder_session.inbasefilename, (unsigned int)x);
241                                 return EncoderSession_finish_error(&encoder_session);
242                         }
243                         bps= x;
244
245                         /* sample rate */
246                         if(!read_sane_extended(infile, &xx, false, encoder_session.inbasefilename))
247                                 return EncoderSession_finish_error(&encoder_session);
248                         else if(!FLAC__format_sample_rate_is_valid(xx)) {
249                                 fprintf(stderr, "%s: ERROR: unsupported sample rate %u\n", encoder_session.inbasefilename, (unsigned int)xx);
250                                 return EncoderSession_finish_error(&encoder_session);
251                         }
252                         else if(options.common.sector_align && xx!=44100U) {
253                                 fprintf(stderr, "%s: ERROR: file's sample rate is %u, must be 44100 for --sector-align\n", encoder_session.inbasefilename, (unsigned int)xx);
254                                 return EncoderSession_finish_error(&encoder_session);
255                         }
256                         sample_rate= xx;
257
258                         /* skip any extra data in the COMM chunk */
259                         FLAC__ASSERT(skip<=LONG_MAX);
260                         while(skip>0U && fseek(infile, skip, SEEK_CUR)<0) {
261                                 unsigned int need= min(skip, sizeof ucbuffer_);
262                                 if(fread(ucbuffer_, 1U, need, infile)<need) {
263                                         fprintf(stderr, "%s: ERROR during read while skipping extra COMM data\n", encoder_session.inbasefilename);
264                                         return EncoderSession_finish_error(&encoder_session);
265                                 }
266                                 skip-= need;
267                         }
268
269                         /*
270                          * now that we know the sample rate, canonicalize the
271                          * --skip string to a number of samples:
272                          */
273                         flac__utils_canonicalize_skip_until_specification(&options.common.skip_specification, sample_rate);
274                         FLAC__ASSERT(options.common.skip_specification.value.samples >= 0);
275                         encoder_session.skip = (FLAC__uint64)options.common.skip_specification.value.samples;
276                         FLAC__ASSERT(!options.common.sector_align || encoder_session.skip == 0);
277
278                         got_comm_chunk= true;
279                 }
280                 else if(got_ssnd_chunk==false && !strncmp(chunk_id, "SSND", 4)) { /* sound data chunk */
281                         unsigned int offset= 0U, block_size= 0U, align_remainder= 0U, data_bytes;
282                         size_t bytes_per_frame= channels*(bps>>3);
283                         FLAC__uint64 total_samples_in_input, trim = 0;
284                         FLAC__bool pad= false;
285
286                         if(got_comm_chunk==false) {
287                                 fprintf(stderr, "%s: ERROR: got 'SSND' chunk before 'COMM' chunk\n", encoder_session.inbasefilename);
288                                 return EncoderSession_finish_error(&encoder_session);
289                         }
290
291                         /* SSND chunk size */
292                         if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
293                                 return EncoderSession_finish_error(&encoder_session);
294                         else if(xx!=(sample_frames*bytes_per_frame + 8U)) {
295                                 fprintf(stderr, "%s: ERROR: SSND chunk size inconsistent with sample frame count\n", encoder_session.inbasefilename);
296                                 return EncoderSession_finish_error(&encoder_session);
297                         }
298                         data_bytes= xx;
299                         pad= (data_bytes & 1U) ? true : false;
300                         data_bytes-= 8U; /* discount the offset and block size fields */
301
302                         /* offset */
303                         if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
304                                 return EncoderSession_finish_error(&encoder_session);
305                         else if(xx!=0U) {
306                                 fprintf(stderr, "%s: ERROR: offset is %u; must be 0\n", encoder_session.inbasefilename, (unsigned int)xx);
307                                 return EncoderSession_finish_error(&encoder_session);
308                         }
309                         offset= xx;
310
311                         /* block size */
312                         if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
313                                 return EncoderSession_finish_error(&encoder_session);
314                         else if(xx!=0U) {
315                                 fprintf(stderr, "%s: ERROR: block size is %u; must be 0\n", encoder_session.inbasefilename, (unsigned int)xx);
316                                 return EncoderSession_finish_error(&encoder_session);
317                         }
318                         block_size= xx;
319
320                         /* *options.common.align_reservoir_samples will be 0 unless --sector-align is used */
321                         FLAC__ASSERT(options.common.sector_align || *options.common.align_reservoir_samples == 0);
322                         total_samples_in_input = data_bytes / bytes_per_frame + *options.common.align_reservoir_samples;
323
324                         /*
325                          * now that we know the input size, canonicalize the
326                          * --until string to an absolute sample number:
327                          */
328                         if(!canonicalize_until_specification(&options.common.until_specification, encoder_session.inbasefilename, sample_rate, encoder_session.skip, total_samples_in_input))
329                                 return EncoderSession_finish_error(&encoder_session);
330                         encoder_session.until = (FLAC__uint64)options.common.until_specification.value.samples;
331                         FLAC__ASSERT(!options.common.sector_align || encoder_session.until == 0);
332
333                         if(encoder_session.skip>0U) {
334                                 FLAC__uint64 remaining= encoder_session.skip*bytes_per_frame;
335
336                                 /* do 1<<30 bytes at a time, since 1<<30 is a nice round number, and */
337                                 /* is guaranteed to be less than LONG_MAX */
338                                 while(remaining>0U)
339                                 {
340                                         unsigned long skip= (unsigned long)(remaining % (1U<<30));
341
342                                         FLAC__ASSERT(skip<=LONG_MAX);
343                                         while(skip>0 && fseek(infile, skip, SEEK_CUR)<0) {
344                                                 unsigned int need= min(skip, sizeof ucbuffer_);
345                                                 if(fread(ucbuffer_, 1U, need, infile)<need) {
346                                                         fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_session.inbasefilename);
347                                                         return EncoderSession_finish_error(&encoder_session);
348                                                 }
349                                                 skip-= need;
350                                         }
351
352                                         remaining-= skip;
353                                 }
354                         }
355
356                         data_bytes-= (unsigned int)encoder_session.skip*bytes_per_frame; /*@@@ WATCHOUT: 4GB limit */
357                         encoder_session.total_samples_to_encode= total_samples_in_input - encoder_session.skip;
358                         if(encoder_session.until > 0) {
359                                 trim = total_samples_in_input - encoder_session.until;
360                                 FLAC__ASSERT(total_samples_in_input > 0);
361                                 FLAC__ASSERT(!options.common.sector_align);
362                                 data_bytes-= (unsigned int)trim*bytes_per_frame;
363                                 encoder_session.total_samples_to_encode-= trim;
364                         }
365                         if(options.common.sector_align) {
366                                 align_remainder= (unsigned int)(encoder_session.total_samples_to_encode % 588U);
367                                 if(options.common.is_last_file)
368                                         encoder_session.total_samples_to_encode+= (588U-align_remainder); /* will pad with zeroes */
369                                 else
370                                         encoder_session.total_samples_to_encode-= align_remainder; /* will stop short and carry over to next file */
371                         }
372
373                         /* +54 for the size of the AIFF headers; this is just an estimate for the progress indicator and doesn't need to be exact */
374                         encoder_session.unencoded_size= encoder_session.total_samples_to_encode*bytes_per_frame+54;
375
376                         if(!EncoderSession_init_encoder(&encoder_session, options.common, channels, bps, sample_rate))
377                                 return EncoderSession_finish_error(&encoder_session);
378
379                         /* first do any samples in the reservoir */
380                         if(options.common.sector_align && *options.common.align_reservoir_samples>0U) {
381
382                                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 *const *)options.common.align_reservoir, *options.common.align_reservoir_samples)) {
383                                         print_error_with_state(&encoder_session, "ERROR during encoding");
384                                         return EncoderSession_finish_error(&encoder_session);
385                                 }
386                         }
387
388                         /* decrement the data_bytes counter if we need to align the file */
389                         if(options.common.sector_align) {
390                                 if(options.common.is_last_file)
391                                         *options.common.align_reservoir_samples= 0U;
392                                 else {
393                                         *options.common.align_reservoir_samples= align_remainder;
394                                         data_bytes-= (*options.common.align_reservoir_samples)*bytes_per_frame;
395                                 }
396                         }
397
398                         /* now do from the file */
399                         while(data_bytes>0) {
400                                 size_t bytes_read= fread(ucbuffer_, 1U, min(data_bytes, CHUNK_OF_SAMPLES*bytes_per_frame), infile);
401
402                                 if(bytes_read==0U) {
403                                         if(ferror(infile)) {
404                                                 fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
405                                                 return EncoderSession_finish_error(&encoder_session);
406                                         }
407                                         else if(feof(infile)) {
408                                                 fprintf(stderr, "%s: WARNING: unexpected EOF; expected %u samples, got %u samples\n", encoder_session.inbasefilename, (unsigned int)encoder_session.total_samples_to_encode, (unsigned int)encoder_session.samples_written);
409                                                 data_bytes= 0;
410                                         }
411                                 }
412                                 else {
413                                         if(bytes_read % bytes_per_frame != 0U) {
414                                                 fprintf(stderr, "%s: ERROR: got partial sample\n", encoder_session.inbasefilename);
415                                                 return EncoderSession_finish_error(&encoder_session);
416                                         }
417                                         else {
418                                                 unsigned int frames= bytes_read/bytes_per_frame;
419                                                 format_input(input_, frames, true, false, channels, bps);
420
421                                                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 *const *)input_, frames)) {
422                                                         print_error_with_state(&encoder_session, "ERROR during encoding");
423                                                         return EncoderSession_finish_error(&encoder_session);
424                                                 }
425                                                 else
426                                                         data_bytes-= bytes_read;
427                                         }
428                                 }
429                         }
430
431                         if(trim>0) {
432                                 FLAC__uint64 remaining= (unsigned int)trim*bytes_per_frame;
433
434                                 FLAC__ASSERT(!options.common.sector_align);
435
436                                 /* do 1<<30 bytes at a time, since 1<<30 is a nice round number, and */
437                                 /* is guaranteed to be less than LONG_MAX */
438                                 while(remaining>0U)
439                                 {
440                                         unsigned long skip= (unsigned long)(remaining % (1U<<30));
441
442                                         FLAC__ASSERT(skip<=LONG_MAX);
443                                         while(skip>0 && fseek(infile, skip, SEEK_CUR)<0) {
444                                                 unsigned int need= min(skip, sizeof ucbuffer_);
445                                                 if(fread(ucbuffer_, 1U, need, infile)<need) {
446                                                         fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_session.inbasefilename);
447                                                         return EncoderSession_finish_error(&encoder_session);
448                                                 }
449                                                 skip-= need;
450                                         }
451
452                                         remaining-= skip;
453                                 }
454                         }
455
456                         /* now read unaligned samples into reservoir or pad with zeroes if necessary */
457                         if(options.common.sector_align) {
458                                 if(options.common.is_last_file) {
459                                         unsigned int pad_frames= 588U-align_remainder;
460
461                                         if(pad_frames<588U) {
462                                                 unsigned int i;
463
464                                                 info_align_zero= pad_frames;
465                                                 for(i= 0U; i<channels; ++i)
466                                                         memset(input_[i], 0, pad_frames*(bps>>3));
467
468                                                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 *const *)input_, pad_frames)) {
469                                                         print_error_with_state(&encoder_session, "ERROR during encoding");
470                                                         return EncoderSession_finish_error(&encoder_session);
471                                                 }
472                                         }
473                                 }
474                                 else {
475                                         if(*options.common.align_reservoir_samples > 0) {
476                                                 size_t bytes_read= fread(ucbuffer_, 1U, (*options.common.align_reservoir_samples)*bytes_per_frame, infile);
477
478                                                 FLAC__ASSERT(CHUNK_OF_SAMPLES>=588U);
479                                                 if(bytes_read==0U && ferror(infile)) {
480                                                         fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
481                                                         return EncoderSession_finish_error(&encoder_session);
482                                                 }
483                                                 else if(bytes_read != (*options.common.align_reservoir_samples) * bytes_per_frame)
484                                                         fprintf(stderr, "%s: WARNING: unexpected EOF; read %u bytes; expected %u samples, got %u samples\n", encoder_session.inbasefilename, (unsigned int)bytes_read, (unsigned int)encoder_session.total_samples_to_encode, (unsigned int)encoder_session.samples_written);
485                                                 else {
486                                                         info_align_carry= *options.common.align_reservoir_samples;
487                                                         format_input(options.common.align_reservoir, *options.common.align_reservoir_samples, true, false, channels, bps);
488                                                 }
489                                         }
490                                 }
491                         }
492
493                         if(pad==true) {
494                                 unsigned char tmp;
495
496                                 if(fread(&tmp, 1U, 1U, infile)<1U) {
497                                         fprintf(stderr, "%s: ERROR during read of SSND pad byte\n", encoder_session.inbasefilename);
498                                         return EncoderSession_finish_error(&encoder_session);
499                                 }
500                         }
501
502                         got_ssnd_chunk= true;
503                 }
504                 else { /* other chunk */
505                         if(!strncmp(chunk_id, "COMM", 4))
506                                 fprintf(stderr, "%s: WARNING: skipping extra 'COMM' chunk\n", encoder_session.inbasefilename);
507                         else if(!strncmp(chunk_id, "SSND", 4))
508                                 fprintf(stderr, "%s: WARNING: skipping extra 'SSND' chunk\n", encoder_session.inbasefilename);
509                         else
510                                 fprintf(stderr, "%s: WARNING: skipping unknown chunk '%s'\n", encoder_session.inbasefilename, chunk_id);
511
512                         /* chunk size */
513                         if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
514                                 return EncoderSession_finish_error(&encoder_session);
515                         else {
516                                 unsigned long skip= xx+(xx & 1U);
517
518                                 FLAC__ASSERT(skip<=LONG_MAX);
519                                 while(skip>0U && fseek(infile, skip, SEEK_CUR)<0) {
520                                         unsigned int need= min(skip, sizeof ucbuffer_);
521                                         if(fread(ucbuffer_, 1U, need, infile)<need) {
522                                                 fprintf(stderr, "%s: ERROR during read while skipping unknown chunk\n", encoder_session.inbasefilename);
523                                                 return EncoderSession_finish_error(&encoder_session);
524                                         }
525                                         skip-= need;
526                                 }
527                         }
528                 }
529         }
530
531         if(got_ssnd_chunk==false && sample_frames!=0U) {
532                 fprintf(stderr, "%s: ERROR: missing SSND chunk\n", encoder_session.inbasefilename);
533                 return EncoderSession_finish_error(&encoder_session);
534         }
535
536         return EncoderSession_finish_ok(&encoder_session, info_align_carry, info_align_zero);
537 }
538
539 int flac__encode_wav(FILE *infile, long infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options)
540 {
541         EncoderSession encoder_session;
542         FLAC__bool is_unsigned_samples = false;
543         unsigned channels = 0, bps = 0, sample_rate = 0, data_bytes;
544         size_t bytes_per_wide_sample, bytes_read;
545         FLAC__uint16 x;
546         FLAC__uint32 xx;
547         FLAC__bool got_fmt_chunk = false, got_data_chunk = false;
548         unsigned align_remainder = 0;
549         int info_align_carry = -1, info_align_zero = -1;
550
551         (void)infilesize;
552         (void)lookahead;
553         (void)lookahead_length;
554
555         if(!
556                 EncoderSession_construct(
557                         &encoder_session,
558 #ifdef FLAC__HAS_OGG
559                         options.common.use_ogg,
560 #else
561                         /*use_ogg=*/false,
562 #endif
563                         options.common.verify,
564                         options.common.verbose,
565                         infile,
566                         infilename,
567                         outfilename
568                 )
569         )
570                 return 1;
571
572         /*
573          * lookahead[] already has "RIFFxxxxWAVE", do sub-chunks
574          */
575         while(!feof(infile)) {
576                 if(!read_little_endian_uint32(infile, &xx, true, encoder_session.inbasefilename))
577                         return EncoderSession_finish_error(&encoder_session);
578                 if(feof(infile))
579                         break;
580                 if(xx == 0x20746d66 && !got_fmt_chunk) { /* "fmt " */
581                         /* fmt sub-chunk size */
582                         if(!read_little_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
583                                 return EncoderSession_finish_error(&encoder_session);
584                         if(xx < 16) {
585                                 fprintf(stderr, "%s: ERROR: found non-standard 'fmt ' sub-chunk which has length = %u\n", encoder_session.inbasefilename, (unsigned)xx);
586                                 return EncoderSession_finish_error(&encoder_session);
587                         }
588                         else if(xx != 16 && xx != 18) {
589                                 fprintf(stderr, "%s: WARNING: found non-standard 'fmt ' sub-chunk which has length = %u\n", encoder_session.inbasefilename, (unsigned)xx);
590                         }
591                         data_bytes = xx;
592                         /* compression code */
593                         if(!read_little_endian_uint16(infile, &x, false, encoder_session.inbasefilename))
594                                 return EncoderSession_finish_error(&encoder_session);
595                         if(x != 1) {
596                                 fprintf(stderr, "%s: ERROR: unsupported compression type %u\n", encoder_session.inbasefilename, (unsigned)x);
597                                 return EncoderSession_finish_error(&encoder_session);
598                         }
599                         /* number of channels */
600                         if(!read_little_endian_uint16(infile, &x, false, encoder_session.inbasefilename))
601                                 return EncoderSession_finish_error(&encoder_session);
602                         if(x == 0 || x > FLAC__MAX_CHANNELS) {
603                                 fprintf(stderr, "%s: ERROR: unsupported number channels %u\n", encoder_session.inbasefilename, (unsigned)x);
604                                 return EncoderSession_finish_error(&encoder_session);
605                         }
606                         else if(options.common.sector_align && x != 2) {
607                                 fprintf(stderr, "%s: ERROR: file has %u channels, must be 2 for --sector-align\n", encoder_session.inbasefilename, (unsigned)x);
608                                 return EncoderSession_finish_error(&encoder_session);
609                         }
610                         channels = x;
611                         /* sample rate */
612                         if(!read_little_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
613                                 return EncoderSession_finish_error(&encoder_session);
614                         if(!FLAC__format_sample_rate_is_valid(xx)) {
615                                 fprintf(stderr, "%s: ERROR: unsupported sample rate %u\n", encoder_session.inbasefilename, (unsigned)xx);
616                                 return EncoderSession_finish_error(&encoder_session);
617                         }
618                         else if(options.common.sector_align && xx != 44100) {
619                                 fprintf(stderr, "%s: ERROR: file's sample rate is %u, must be 44100 for --sector-align\n", encoder_session.inbasefilename, (unsigned)xx);
620                                 return EncoderSession_finish_error(&encoder_session);
621                         }
622                         sample_rate = xx;
623                         /* avg bytes per second (ignored) */
624                         if(!read_little_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
625                                 return EncoderSession_finish_error(&encoder_session);
626                         /* block align (ignored) */
627                         if(!read_little_endian_uint16(infile, &x, false, encoder_session.inbasefilename))
628                                 return EncoderSession_finish_error(&encoder_session);
629                         /* bits per sample */
630                         if(!read_little_endian_uint16(infile, &x, false, encoder_session.inbasefilename))
631                                 return EncoderSession_finish_error(&encoder_session);
632                         if(x != 8 && x != 16 && x != 24) {
633                                 fprintf(stderr, "%s: ERROR: unsupported bits per sample %u\n", encoder_session.inbasefilename, (unsigned)x);
634                                 return EncoderSession_finish_error(&encoder_session);
635                         }
636                         else if(options.common.sector_align && x != 16) {
637                                 fprintf(stderr, "%s: ERROR: file has %u bits per sample, must be 16 for --sector-align\n", encoder_session.inbasefilename, (unsigned)x);
638                                 return EncoderSession_finish_error(&encoder_session);
639                         }
640                         bps = x;
641                         is_unsigned_samples = (x == 8);
642
643                         /* skip any extra data in the fmt sub-chunk */
644                         data_bytes -= 16;
645                         if(data_bytes > 0) {
646                                 unsigned left, need;
647                                 for(left = data_bytes; left > 0; ) {
648                                         need = min(left, CHUNK_OF_SAMPLES);
649                                         if(fread(ucbuffer_, 1U, need, infile) < need) {
650                                                 fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_session.inbasefilename);
651                                                 return EncoderSession_finish_error(&encoder_session);
652                                         }
653                                         left -= need;
654                                 }
655                         }
656
657                         /*
658                          * now that we know the sample rate, canonicalize the
659                          * --skip string to a number of samples:
660                          */
661                         flac__utils_canonicalize_skip_until_specification(&options.common.skip_specification, sample_rate);
662                         FLAC__ASSERT(options.common.skip_specification.value.samples >= 0);
663                         encoder_session.skip = (FLAC__uint64)options.common.skip_specification.value.samples;
664                         FLAC__ASSERT(!options.common.sector_align || encoder_session.skip == 0);
665
666                         got_fmt_chunk = true;
667                 }
668                 else if(xx == 0x61746164 && !got_data_chunk && got_fmt_chunk) { /* "data" */
669                         FLAC__uint64 total_samples_in_input, trim = 0;
670
671                         /* data size */
672                         if(!read_little_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
673                                 return EncoderSession_finish_error(&encoder_session);
674                         data_bytes = xx;
675
676                         bytes_per_wide_sample = channels * (bps >> 3);
677
678                         /* *options.common.align_reservoir_samples will be 0 unless --sector-align is used */
679                         FLAC__ASSERT(options.common.sector_align || *options.common.align_reservoir_samples == 0);
680                         total_samples_in_input = data_bytes / bytes_per_wide_sample + *options.common.align_reservoir_samples;
681
682                         /*
683                          * now that we know the input size, canonicalize the
684                          * --until string to an absolute sample number:
685                          */
686                         if(!canonicalize_until_specification(&options.common.until_specification, encoder_session.inbasefilename, sample_rate, encoder_session.skip, total_samples_in_input))
687                                 return EncoderSession_finish_error(&encoder_session);
688                         encoder_session.until = (FLAC__uint64)options.common.until_specification.value.samples;
689                         FLAC__ASSERT(!options.common.sector_align || encoder_session.until == 0);
690
691                         if(encoder_session.skip > 0) {
692                                 if(fseek(infile, bytes_per_wide_sample * (unsigned)encoder_session.skip, SEEK_CUR) < 0) {
693                                         /* can't seek input, read ahead manually... */
694                                         unsigned left, need;
695                                         for(left = (unsigned)encoder_session.skip; left > 0; ) { /*@@@ WATCHOUT: 4GB limit */
696                                                 need = min(left, CHUNK_OF_SAMPLES);
697                                                 if(fread(ucbuffer_, bytes_per_wide_sample, need, infile) < need) {
698                                                         fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_session.inbasefilename);
699                                                         return EncoderSession_finish_error(&encoder_session);
700                                                 }
701                                                 left -= need;
702                                         }
703                                 }
704                         }
705
706                         data_bytes -= (unsigned)encoder_session.skip * bytes_per_wide_sample; /*@@@ WATCHOUT: 4GB limit */
707                         encoder_session.total_samples_to_encode = total_samples_in_input - encoder_session.skip;
708                         if(encoder_session.until > 0) {
709                                 trim = total_samples_in_input - encoder_session.until;
710                                 FLAC__ASSERT(total_samples_in_input > 0);
711                                 FLAC__ASSERT(!options.common.sector_align);
712                                 data_bytes -= (unsigned int)trim * bytes_per_wide_sample;
713                                 encoder_session.total_samples_to_encode -= trim;
714                         }
715                         if(options.common.sector_align) {
716                                 align_remainder = (unsigned)(encoder_session.total_samples_to_encode % 588);
717                                 if(options.common.is_last_file)
718                                         encoder_session.total_samples_to_encode += (588-align_remainder); /* will pad with zeroes */
719                                 else
720                                         encoder_session.total_samples_to_encode -= align_remainder; /* will stop short and carry over to next file */
721                         }
722
723                         /* +44 for the size of the WAV headers; this is just an estimate for the progress indicator and doesn't need to be exact */
724                         encoder_session.unencoded_size = encoder_session.total_samples_to_encode * bytes_per_wide_sample + 44;
725
726                         if(!EncoderSession_init_encoder(&encoder_session, options.common, channels, bps, sample_rate))
727                                 return EncoderSession_finish_error(&encoder_session);
728
729                         /*
730                          * first do any samples in the reservoir
731                          */
732                         if(options.common.sector_align && *options.common.align_reservoir_samples > 0) {
733                                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 * const *)options.common.align_reservoir, *options.common.align_reservoir_samples)) {
734                                         print_error_with_state(&encoder_session, "ERROR during encoding");
735                                         return EncoderSession_finish_error(&encoder_session);
736                                 }
737                         }
738
739                         /*
740                          * decrement the data_bytes counter if we need to align the file
741                          */
742                         if(options.common.sector_align) {
743                                 if(options.common.is_last_file) {
744                                         *options.common.align_reservoir_samples = 0;
745                                 }
746                                 else {
747                                         *options.common.align_reservoir_samples = align_remainder;
748                                         data_bytes -= (*options.common.align_reservoir_samples) * bytes_per_wide_sample;
749                                 }
750                         }
751
752                         /*
753                          * now do from the file
754                          */
755                         while(data_bytes > 0) {
756                                 bytes_read = fread(ucbuffer_, sizeof(unsigned char), min(data_bytes, CHUNK_OF_SAMPLES * bytes_per_wide_sample), infile);
757                                 if(bytes_read == 0) {
758                                         if(ferror(infile)) {
759                                                 fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
760                                                 return EncoderSession_finish_error(&encoder_session);
761                                         }
762                                         else if(feof(infile)) {
763                                                 fprintf(stderr, "%s: WARNING: unexpected EOF; expected %u samples, got %u samples\n", encoder_session.inbasefilename, (unsigned)encoder_session.total_samples_to_encode, (unsigned)encoder_session.samples_written);
764                                                 data_bytes = 0;
765                                         }
766                                 }
767                                 else {
768                                         if(bytes_read % bytes_per_wide_sample != 0) {
769                                                 fprintf(stderr, "%s: ERROR: got partial sample\n", encoder_session.inbasefilename);
770                                                 return EncoderSession_finish_error(&encoder_session);
771                                         }
772                                         else {
773                                                 unsigned wide_samples = bytes_read / bytes_per_wide_sample;
774                                                 format_input(input_, wide_samples, false, is_unsigned_samples, channels, bps);
775
776                                                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 * const *)input_, wide_samples)) {
777                                                         print_error_with_state(&encoder_session, "ERROR during encoding");
778                                                         return EncoderSession_finish_error(&encoder_session);
779                                                 }
780                                                 data_bytes -= bytes_read;
781                                         }
782                                 }
783                         }
784
785                         if(trim > 0) {
786                                 if(fseek(infile, bytes_per_wide_sample * (unsigned)trim, SEEK_CUR) < 0) {
787                                         /* can't seek input, read ahead manually... */
788                                         unsigned left, need;
789                                         for(left = (unsigned)trim; left > 0; ) { /*@@@ WATCHOUT: 4GB limit */
790                                                 need = min(left, CHUNK_OF_SAMPLES);
791                                                 if(fread(ucbuffer_, bytes_per_wide_sample, need, infile) < need) {
792                                                         fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_session.inbasefilename);
793                                                         return EncoderSession_finish_error(&encoder_session);
794                                                 }
795                                                 left -= need;
796                                         }
797                                 }
798                         }
799
800                         /*
801                          * now read unaligned samples into reservoir or pad with zeroes if necessary
802                          */
803                         if(options.common.sector_align) {
804                                 if(options.common.is_last_file) {
805                                         unsigned wide_samples = 588 - align_remainder;
806                                         if(wide_samples < 588) {
807                                                 unsigned channel;
808
809                                                 info_align_zero = wide_samples;
810                                                 data_bytes = wide_samples * (bps >> 3);
811                                                 for(channel = 0; channel < channels; channel++)
812                                                         memset(input_[channel], 0, data_bytes);
813
814                                                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 * const *)input_, wide_samples)) {
815                                                         print_error_with_state(&encoder_session, "ERROR during encoding");
816                                                         return EncoderSession_finish_error(&encoder_session);
817                                                 }
818                                         }
819                                 }
820                                 else {
821                                         if(*options.common.align_reservoir_samples > 0) {
822                                                 FLAC__ASSERT(CHUNK_OF_SAMPLES >= 588);
823                                                 bytes_read = fread(ucbuffer_, sizeof(unsigned char), (*options.common.align_reservoir_samples) * bytes_per_wide_sample, infile);
824                                                 if(bytes_read == 0 && ferror(infile)) {
825                                                         fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
826                                                         return EncoderSession_finish_error(&encoder_session);
827                                                 }
828                                                 else if(bytes_read != (*options.common.align_reservoir_samples) * bytes_per_wide_sample) {
829                                                         fprintf(stderr, "%s: WARNING: unexpected EOF; read %u bytes; expected %u samples, got %u samples\n", encoder_session.inbasefilename, (unsigned)bytes_read, (unsigned)encoder_session.total_samples_to_encode, (unsigned)encoder_session.samples_written);
830                                                         data_bytes = 0;
831                                                 }
832                                                 else {
833                                                         info_align_carry = *options.common.align_reservoir_samples;
834                                                         format_input(options.common.align_reservoir, *options.common.align_reservoir_samples, false, is_unsigned_samples, channels, bps);
835                                                 }
836                                         }
837                                 }
838                         }
839
840                         got_data_chunk = true;
841                 }
842                 else {
843                         if(xx == 0x20746d66 && got_fmt_chunk) { /* "fmt " */
844                                 fprintf(stderr, "%s: WARNING: skipping extra 'fmt ' sub-chunk\n", encoder_session.inbasefilename);
845                         }
846                         else if(xx == 0x61746164) { /* "data" */
847                                 if(got_data_chunk) {
848                                         fprintf(stderr, "%s: WARNING: skipping extra 'data' sub-chunk\n", encoder_session.inbasefilename);
849                                 }
850                                 else if(!got_fmt_chunk) {
851                                         fprintf(stderr, "%s: ERROR: got 'data' sub-chunk before 'fmt' sub-chunk\n", encoder_session.inbasefilename);
852                                         return EncoderSession_finish_error(&encoder_session);
853                                 }
854                                 else {
855                                         FLAC__ASSERT(0);
856                                 }
857                         }
858                         else {
859                                 fprintf(stderr, "%s: WARNING: skipping unknown sub-chunk '%c%c%c%c'\n", encoder_session.inbasefilename, (char)(xx&255), (char)((xx>>8)&255), (char)((xx>>16)&255), (char)(xx>>24));
860                         }
861                         /* sub-chunk size */
862                         if(!read_little_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
863                                 return EncoderSession_finish_error(&encoder_session);
864                         if(fseek(infile, xx, SEEK_CUR) < 0) {
865                                 /* can't seek input, read ahead manually... */
866                                 unsigned left, need;
867                                 const unsigned chunk = sizeof(ucbuffer_);
868                                 for(left = xx; left > 0; ) {
869                                         need = min(left, chunk);
870                                         if(fread(ucbuffer_, 1, need, infile) < need) {
871                                                 fprintf(stderr, "%s: ERROR during read while skipping unsupported sub-chunk\n", encoder_session.inbasefilename);
872                                                 return EncoderSession_finish_error(&encoder_session);
873                                         }
874                                         left -= need;
875                                 }
876                         }
877                 }
878         }
879
880         return EncoderSession_finish_ok(&encoder_session, info_align_carry, info_align_zero);
881 }
882
883 int flac__encode_raw(FILE *infile, long infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, raw_encode_options_t options)
884 {
885         EncoderSession encoder_session;
886         size_t bytes_read;
887         const size_t bytes_per_wide_sample = options.channels * (options.bps >> 3);
888         unsigned align_remainder = 0;
889         int info_align_carry = -1, info_align_zero = -1;
890         FLAC__uint64 total_samples_in_input = 0;;
891
892         FLAC__ASSERT(!options.common.sector_align || options.channels == 2);
893         FLAC__ASSERT(!options.common.sector_align || options.bps == 16);
894         FLAC__ASSERT(!options.common.sector_align || options.sample_rate == 44100);
895         FLAC__ASSERT(!options.common.sector_align || infilesize >= 0);
896         FLAC__ASSERT(!options.common.replay_gain || options.channels <= 2);
897         FLAC__ASSERT(!options.common.replay_gain || grabbag__replaygain_is_valid_sample_frequency(options.sample_rate));
898
899         if(!
900                 EncoderSession_construct(
901                         &encoder_session,
902 #ifdef FLAC__HAS_OGG
903                         options.common.use_ogg,
904 #else
905                         /*use_ogg=*/false,
906 #endif
907                         options.common.verify,
908                         options.common.verbose,
909                         infile,
910                         infilename,
911                         outfilename
912                 )
913         )
914                 return 1;
915
916         /*
917          * now that we know the sample rate, canonicalize the
918          * --skip string to a number of samples:
919          */
920         flac__utils_canonicalize_skip_until_specification(&options.common.skip_specification, options.sample_rate);
921         FLAC__ASSERT(options.common.skip_specification.value.samples >= 0);
922         encoder_session.skip = (FLAC__uint64)options.common.skip_specification.value.samples;
923         FLAC__ASSERT(!options.common.sector_align || encoder_session.skip == 0);
924
925         if(infilesize < 0)
926                 total_samples_in_input = 0;
927         else {
928                 /* *options.common.align_reservoir_samples will be 0 unless --sector-align is used */
929                 FLAC__ASSERT(options.common.sector_align || *options.common.align_reservoir_samples == 0);
930                 total_samples_in_input = (unsigned)infilesize / bytes_per_wide_sample + *options.common.align_reservoir_samples;
931         }
932
933         /*
934          * now that we know the input size, canonicalize the
935          * --until strings to a number of samples:
936          */
937         if(!canonicalize_until_specification(&options.common.until_specification, encoder_session.inbasefilename, options.sample_rate, encoder_session.skip, total_samples_in_input))
938                 return EncoderSession_finish_error(&encoder_session);
939         encoder_session.until = (FLAC__uint64)options.common.until_specification.value.samples;
940         FLAC__ASSERT(!options.common.sector_align || encoder_session.until == 0);
941
942         encoder_session.total_samples_to_encode = total_samples_in_input - encoder_session.skip;
943         if(encoder_session.until > 0) {
944                 const FLAC__uint64 trim = total_samples_in_input - encoder_session.until;
945                 FLAC__ASSERT(total_samples_in_input > 0);
946                 FLAC__ASSERT(!options.common.sector_align);
947                 encoder_session.total_samples_to_encode -= trim;
948         }
949         if(infilesize >= 0 && options.common.sector_align) {
950                 FLAC__ASSERT(encoder_session.skip == 0);
951                 align_remainder = (unsigned)(encoder_session.total_samples_to_encode % 588);
952                 if(options.common.is_last_file)
953                         encoder_session.total_samples_to_encode += (588-align_remainder); /* will pad with zeroes */
954                 else
955                         encoder_session.total_samples_to_encode -= align_remainder; /* will stop short and carry over to next file */
956         }
957         encoder_session.unencoded_size = encoder_session.total_samples_to_encode * bytes_per_wide_sample;
958
959         if(encoder_session.verbose && encoder_session.total_samples_to_encode <= 0)
960                 fprintf(stderr, "(No runtime statistics possible; please wait for encoding to finish...)\n");
961
962         if(encoder_session.skip > 0) {
963                 unsigned skip_bytes = bytes_per_wide_sample * (unsigned)encoder_session.skip;
964                 if(skip_bytes > lookahead_length) {
965                         skip_bytes -= lookahead_length;
966                         lookahead_length = 0;
967                         if(fseek(infile, (long)skip_bytes, SEEK_CUR) < 0) {
968                                 /* can't seek input, read ahead manually... */
969                                 unsigned left, need;
970                                 const unsigned chunk = sizeof(ucbuffer_);
971                                 for(left = skip_bytes; left > 0; ) {
972                                         need = min(left, chunk);
973                                         if(fread(ucbuffer_, 1, need, infile) < need) {
974                                                 fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_session.inbasefilename);
975                                                 return EncoderSession_finish_error(&encoder_session);
976                                         }
977                                         left -= need;
978                                 }
979                         }
980                 }
981                 else {
982                         lookahead += skip_bytes;
983                         lookahead_length -= skip_bytes;
984                 }
985         }
986
987         if(!EncoderSession_init_encoder(&encoder_session, options.common, options.channels, options.bps, options.sample_rate))
988                 return EncoderSession_finish_error(&encoder_session);
989
990         /*
991          * first do any samples in the reservoir
992          */
993         if(options.common.sector_align && *options.common.align_reservoir_samples > 0) {
994                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 * const *)options.common.align_reservoir, *options.common.align_reservoir_samples)) {
995                         print_error_with_state(&encoder_session, "ERROR during encoding");
996                         return EncoderSession_finish_error(&encoder_session);
997                 }
998         }
999
1000         /*
1001          * decrement infilesize if we need to align the file
1002          */
1003         if(options.common.sector_align) {
1004                 FLAC__ASSERT(infilesize >= 0);
1005                 if(options.common.is_last_file) {
1006                         *options.common.align_reservoir_samples = 0;
1007                 }
1008                 else {
1009                         *options.common.align_reservoir_samples = align_remainder;
1010                         infilesize -= (long)((*options.common.align_reservoir_samples) * bytes_per_wide_sample);
1011                         FLAC__ASSERT(infilesize >= 0);
1012                 }
1013         }
1014
1015         /*
1016          * now do from the file
1017          */
1018         if(infilesize < 0) {
1019                 while(!feof(infile)) {
1020                         if(lookahead_length > 0) {
1021                                 FLAC__ASSERT(lookahead_length < CHUNK_OF_SAMPLES * bytes_per_wide_sample);
1022                                 memcpy(ucbuffer_, lookahead, lookahead_length);
1023                                 bytes_read = fread(ucbuffer_+lookahead_length, sizeof(unsigned char), CHUNK_OF_SAMPLES * bytes_per_wide_sample - lookahead_length, infile) + lookahead_length;
1024                                 if(ferror(infile)) {
1025                                         fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
1026                                         return EncoderSession_finish_error(&encoder_session);
1027                                 }
1028                                 lookahead_length = 0;
1029                         }
1030                         else
1031                                 bytes_read = fread(ucbuffer_, sizeof(unsigned char), CHUNK_OF_SAMPLES * bytes_per_wide_sample, infile);
1032
1033                         if(bytes_read == 0) {
1034                                 if(ferror(infile)) {
1035                                         fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
1036                                         return EncoderSession_finish_error(&encoder_session);
1037                                 }
1038                         }
1039                         else if(bytes_read % bytes_per_wide_sample != 0) {
1040                                 fprintf(stderr, "%s: ERROR: got partial sample\n", encoder_session.inbasefilename);
1041                                 return EncoderSession_finish_error(&encoder_session);
1042                         }
1043                         else {
1044                                 unsigned wide_samples = bytes_read / bytes_per_wide_sample;
1045                                 format_input(input_, wide_samples, options.is_big_endian, options.is_unsigned_samples, options.channels, options.bps);
1046
1047                                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 * const *)input_, wide_samples)) {
1048                                         print_error_with_state(&encoder_session, "ERROR during encoding");
1049                                         return EncoderSession_finish_error(&encoder_session);
1050                                 }
1051                         }
1052                 }
1053         }
1054         else {
1055                 const FLAC__uint64 max_input_bytes = encoder_session.total_samples_to_encode * bytes_per_wide_sample;
1056                 FLAC__uint64 total_input_bytes_read = 0;
1057                 while(total_input_bytes_read < max_input_bytes) {
1058                         {
1059                                 size_t wanted = (CHUNK_OF_SAMPLES * bytes_per_wide_sample);
1060                                 wanted = min(wanted, (size_t)(max_input_bytes - total_input_bytes_read));
1061
1062                                 if(lookahead_length > 0) {
1063                                         FLAC__ASSERT(lookahead_length <= wanted);
1064                                         memcpy(ucbuffer_, lookahead, lookahead_length);
1065                                         wanted -= lookahead_length;
1066                                         bytes_read = lookahead_length;
1067                                         if(wanted > 0) {
1068                                                 bytes_read += fread(ucbuffer_+lookahead_length, sizeof(unsigned char), wanted, infile);
1069                                                 if(ferror(infile)) {
1070                                                         fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
1071                                                         return EncoderSession_finish_error(&encoder_session);
1072                                                 }
1073                                         }
1074                                         lookahead_length = 0;
1075                                 }
1076                                 else
1077                                         bytes_read = fread(ucbuffer_, sizeof(unsigned char), wanted, infile);
1078                         }
1079
1080                         if(bytes_read == 0) {
1081                                 if(ferror(infile)) {
1082                                         fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
1083                                         return EncoderSession_finish_error(&encoder_session);
1084                                 }
1085                                 else if(feof(infile)) {
1086                                         fprintf(stderr, "%s: WARNING: unexpected EOF; expected %u samples, got %u samples\n", encoder_session.inbasefilename, (unsigned)encoder_session.total_samples_to_encode, (unsigned)encoder_session.samples_written);
1087                                         total_input_bytes_read = max_input_bytes;
1088                                 }
1089                         }
1090                         else {
1091                                 if(bytes_read % bytes_per_wide_sample != 0) {
1092                                         fprintf(stderr, "%s: ERROR: got partial sample\n", encoder_session.inbasefilename);
1093                                         return EncoderSession_finish_error(&encoder_session);
1094                                 }
1095                                 else {
1096                                         unsigned wide_samples = bytes_read / bytes_per_wide_sample;
1097                                         format_input(input_, wide_samples, options.is_big_endian, options.is_unsigned_samples, options.channels, options.bps);
1098
1099                                         if(!EncoderSession_process(&encoder_session, (const FLAC__int32 * const *)input_, wide_samples)) {
1100                                                 print_error_with_state(&encoder_session, "ERROR during encoding");
1101                                                 return EncoderSession_finish_error(&encoder_session);
1102                                         }
1103                                         total_input_bytes_read += bytes_read;
1104                                 }
1105                         }
1106                 }
1107         }
1108
1109         /*
1110          * now read unaligned samples into reservoir or pad with zeroes if necessary
1111          */
1112         if(options.common.sector_align) {
1113                 if(options.common.is_last_file) {
1114                         unsigned wide_samples = 588 - align_remainder;
1115                         if(wide_samples < 588) {
1116                                 unsigned channel, data_bytes;
1117
1118                                 info_align_zero = wide_samples;
1119                                 data_bytes = wide_samples * (options.bps >> 3);
1120                                 for(channel = 0; channel < options.channels; channel++)
1121                                         memset(input_[channel], 0, data_bytes);
1122
1123                                 if(!EncoderSession_process(&encoder_session, (const FLAC__int32 * const *)input_, wide_samples)) {
1124                                         print_error_with_state(&encoder_session, "ERROR during encoding");
1125                                         return EncoderSession_finish_error(&encoder_session);
1126                                 }
1127                         }
1128                 }
1129                 else {
1130                         if(*options.common.align_reservoir_samples > 0) {
1131                                 FLAC__ASSERT(CHUNK_OF_SAMPLES >= 588);
1132                                 bytes_read = fread(ucbuffer_, sizeof(unsigned char), (*options.common.align_reservoir_samples) * bytes_per_wide_sample, infile);
1133                                 if(bytes_read == 0 && ferror(infile)) {
1134                                         fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
1135                                         return EncoderSession_finish_error(&encoder_session);
1136                                 }
1137                                 else if(bytes_read != (*options.common.align_reservoir_samples) * bytes_per_wide_sample) {
1138                                         fprintf(stderr, "%s: WARNING: unexpected EOF; read %u bytes; expected %u samples, got %u samples\n", encoder_session.inbasefilename, (unsigned)bytes_read, (unsigned)encoder_session.total_samples_to_encode, (unsigned)encoder_session.samples_written);
1139                                 }
1140                                 else {
1141                                         info_align_carry = *options.common.align_reservoir_samples;
1142                                         format_input(options.common.align_reservoir, *options.common.align_reservoir_samples, false, options.is_unsigned_samples, options.channels, options.bps);
1143                                 }
1144                         }
1145                 }
1146         }
1147
1148         return EncoderSession_finish_ok(&encoder_session, info_align_carry, info_align_zero);
1149 }
1150
1151 FLAC__bool EncoderSession_construct(EncoderSession *e, FLAC__bool use_ogg, FLAC__bool verify, FLAC__bool verbose, FILE *infile, const char *infilename, const char *outfilename)
1152 {
1153         unsigned i;
1154         FLAC__uint32 test = 1;
1155
1156         /*
1157          * initialize globals
1158          */
1159
1160         is_big_endian_host_ = (*((FLAC__byte*)(&test)))? false : true;
1161
1162         for(i = 0; i < FLAC__MAX_CHANNELS; i++)
1163                 input_[i] = &(in_[i][0]);
1164
1165
1166         /*
1167          * initialize instance
1168          */
1169
1170 #ifdef FLAC__HAS_OGG
1171         e->use_ogg = use_ogg;
1172 #else
1173         (void)use_ogg;
1174 #endif
1175         e->verify = verify;
1176         e->verbose = verbose;
1177
1178         e->is_stdout = (0 == strcmp(outfilename, "-"));
1179
1180         e->inbasefilename = grabbag__file_get_basename(infilename);
1181         e->outfilename = outfilename;
1182
1183         e->skip = 0; /* filled in later after the sample_rate is known */
1184         e->unencoded_size = 0;
1185         e->total_samples_to_encode = 0;
1186         e->bytes_written = 0;
1187         e->samples_written = 0;
1188         e->blocksize = 0;
1189         e->stats_mask = 0;
1190
1191         e->encoder.flac.stream = 0;
1192         e->encoder.flac.file = 0;
1193 #ifdef FLAC__HAS_OGG
1194         e->encoder.ogg.stream = 0;
1195 #endif
1196
1197         e->fin = infile;
1198         e->fout = 0;
1199         e->seek_table_template = 0;
1200
1201         if(e->is_stdout) {
1202                 e->fout = grabbag__file_get_binary_stdout();
1203         }
1204 #ifdef FLAC__HAS_OGG
1205         else {
1206                 if(e->use_ogg) {
1207                         if(0 == (e->fout = fopen(outfilename, "wb"))) {
1208                                 fprintf(stderr, "%s: ERROR: can't open output file %s\n", e->inbasefilename, outfilename);
1209                                 EncoderSession_destroy(e);
1210                                 return false;
1211                         }
1212                 }
1213         }
1214 #endif
1215
1216         if(0 == (e->seek_table_template = FLAC__metadata_object_new(FLAC__METADATA_TYPE_SEEKTABLE))) {
1217                 fprintf(stderr, "%s: ERROR allocating memory for seek table\n", e->inbasefilename);
1218                 return false;
1219         }
1220
1221 #ifdef FLAC__HAS_OGG
1222         if(e->use_ogg) {
1223                 e->encoder.ogg.stream = OggFLAC__stream_encoder_new();
1224                 if(0 == e->encoder.ogg.stream) {
1225                         fprintf(stderr, "%s: ERROR creating the encoder instance\n", e->inbasefilename);
1226                         EncoderSession_destroy(e);
1227                         return false;
1228                 }
1229         }
1230         else
1231 #endif
1232         if(e->is_stdout) {
1233                 e->encoder.flac.stream = FLAC__stream_encoder_new();
1234                 if(0 == e->encoder.flac.stream) {
1235                         fprintf(stderr, "%s: ERROR creating the encoder instance\n", e->inbasefilename);
1236                         EncoderSession_destroy(e);
1237                         return false;
1238                 }
1239         }
1240         else {
1241                 e->encoder.flac.file = FLAC__file_encoder_new();
1242                 if(0 == e->encoder.flac.file) {
1243                         fprintf(stderr, "%s: ERROR creating the encoder instance\n", e->inbasefilename);
1244                         EncoderSession_destroy(e);
1245                         return false;
1246                 }
1247         }
1248
1249         return true;
1250 }
1251
1252 void EncoderSession_destroy(EncoderSession *e)
1253 {
1254         if(e->fin != stdin)
1255                 fclose(e->fin);
1256         if(0 != e->fout && e->fout != stdout)
1257                 fclose(e->fout);
1258
1259 #ifdef FLAC__HAS_OGG
1260         if(e->use_ogg) {
1261                 if(0 != e->encoder.ogg.stream) {
1262                         OggFLAC__stream_encoder_delete(e->encoder.ogg.stream);
1263                         e->encoder.ogg.stream = 0;
1264                 }
1265         }
1266         else
1267 #endif
1268         if(e->is_stdout) {
1269                 if(0 != e->encoder.flac.stream) {
1270                         FLAC__stream_encoder_delete(e->encoder.flac.stream);
1271                         e->encoder.flac.stream = 0;
1272                 }
1273         }
1274         else {
1275                 if(0 != e->encoder.flac.file) {
1276                         FLAC__file_encoder_delete(e->encoder.flac.file);
1277                         e->encoder.flac.file = 0;
1278                 }
1279         }
1280
1281         if(0 != e->seek_table_template) {
1282                 FLAC__metadata_object_delete(e->seek_table_template);
1283                 e->seek_table_template = 0;
1284         }
1285 }
1286
1287 int EncoderSession_finish_ok(EncoderSession *e, int info_align_carry, int info_align_zero)
1288 {
1289         FLAC__StreamEncoderState fse_state = FLAC__STREAM_ENCODER_OK;
1290         int ret = 0;
1291
1292 #ifdef FLAC__HAS_OGG
1293         if(e->use_ogg) {
1294                 if(e->encoder.ogg.stream) {
1295                         fse_state = OggFLAC__stream_encoder_get_FLAC_stream_encoder_state(e->encoder.ogg.stream);
1296                         OggFLAC__stream_encoder_finish(e->encoder.ogg.stream);
1297                 }
1298         }
1299         else
1300 #endif
1301         if(e->is_stdout) {
1302                 if(e->encoder.flac.stream) {
1303                         fse_state = FLAC__stream_encoder_get_state(e->encoder.flac.stream);
1304                         FLAC__stream_encoder_finish(e->encoder.flac.stream);
1305                 }
1306         }
1307         else {
1308                 if(e->encoder.flac.file) {
1309                         fse_state = FLAC__file_encoder_get_stream_encoder_state(e->encoder.flac.file);
1310                         FLAC__file_encoder_finish(e->encoder.flac.file);
1311                 }
1312         }
1313
1314         if(e->verbose && e->total_samples_to_encode > 0) {
1315                 print_stats(e);
1316                 fprintf(stderr, "\n");
1317         }
1318
1319         if(fse_state == FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA) {
1320                 print_verify_error(e);
1321                 ret = 1;
1322         }
1323         else {
1324                 if(info_align_carry >= 0)
1325                         fprintf(stderr, "%s: INFO: sector alignment causing %d samples to be carried over\n", e->inbasefilename, info_align_carry);
1326                 if(info_align_zero >= 0)
1327                         fprintf(stderr, "%s: INFO: sector alignment causing %d zero samples to be appended\n", e->inbasefilename, info_align_zero);
1328         }
1329
1330         EncoderSession_destroy(e);
1331
1332         return ret;
1333 }
1334
1335 int EncoderSession_finish_error(EncoderSession *e)
1336 {
1337         FLAC__StreamEncoderState fse_state;
1338
1339         if(e->verbose && e->total_samples_to_encode > 0)
1340                 fprintf(stderr, "\n");
1341
1342 #ifdef FLAC__HAS_OGG
1343         if(e->use_ogg) {
1344                 fse_state = OggFLAC__stream_encoder_get_FLAC_stream_encoder_state(e->encoder.ogg.stream);
1345         }
1346         else
1347 #endif
1348         if(e->is_stdout) {
1349                 fse_state = FLAC__stream_encoder_get_state(e->encoder.flac.stream);
1350         }
1351         else {
1352                 fse_state = FLAC__file_encoder_get_stream_encoder_state(e->encoder.flac.file);
1353         }
1354
1355         if(fse_state == FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA)
1356                 print_verify_error(e);
1357         else
1358                 unlink(e->outfilename);
1359
1360         EncoderSession_destroy(e);
1361
1362         return 1;
1363 }
1364
1365 FLAC__bool EncoderSession_init_encoder(EncoderSession *e, encode_options_t options, unsigned channels, unsigned bps, unsigned sample_rate)
1366 {
1367         unsigned num_metadata;
1368         FLAC__StreamMetadata padding, *cuesheet = 0;
1369         FLAC__StreamMetadata *metadata[4];
1370
1371         e->replay_gain = options.replay_gain;
1372         e->channels = channels;
1373         e->bits_per_sample = bps;
1374         e->sample_rate = sample_rate;
1375
1376         if(e->replay_gain) {
1377                 if(channels != 1 && channels != 2) {
1378                         fprintf(stderr, "%s: ERROR, number of channels (%u) must be 1 or 2 for --replay-gain\n", e->inbasefilename, channels);
1379                         return false;
1380                 }
1381                 if(!grabbag__replaygain_is_valid_sample_frequency(sample_rate)) {
1382                         fprintf(stderr, "%s: ERROR, invalid sample rate (%u) for --replay-gain\n", e->inbasefilename, sample_rate);
1383                         return false;
1384                 }
1385                 if(options.is_first_file) {
1386                         if(!grabbag__replaygain_init(sample_rate)) {
1387                                 fprintf(stderr, "%s: ERROR initializing ReplayGain stage\n", e->inbasefilename);
1388                                 return false;
1389                         }
1390                 }
1391         }
1392
1393         if(channels != 2)
1394                 options.do_mid_side = options.loose_mid_side = false;
1395
1396         if(!parse_cuesheet_(&cuesheet, options.cuesheet_filename, e->inbasefilename, e->total_samples_to_encode))
1397                 return false;
1398
1399         if(!convert_to_seek_table_template(options.requested_seek_points, options.num_requested_seek_points, options.cued_seekpoints? cuesheet : 0, e)) {
1400                 fprintf(stderr, "%s: ERROR allocating memory for seek table\n", e->inbasefilename);
1401                 if(0 != cuesheet)
1402                         free(cuesheet);
1403                 return false;
1404         }
1405
1406         num_metadata = 0;
1407         if(e->seek_table_template->data.seek_table.num_points > 0) {
1408                 e->seek_table_template->is_last = false; /* the encoder will set this for us */
1409                 metadata[num_metadata++] = e->seek_table_template;
1410         }
1411         if(0 != cuesheet)
1412                 metadata[num_metadata++] = cuesheet;
1413         metadata[num_metadata++] = options.vorbis_comment;
1414         if(options.padding > 0) {
1415                 padding.is_last = false; /* the encoder will set this for us */
1416                 padding.type = FLAC__METADATA_TYPE_PADDING;
1417                 padding.length = (unsigned)options.padding;
1418                 metadata[num_metadata++] = &padding;
1419         }
1420
1421         e->blocksize = options.blocksize;
1422         e->stats_mask = (options.do_exhaustive_model_search || options.do_qlp_coeff_prec_search)? 0x0f : 0x3f;
1423
1424 #ifdef FLAC__HAS_OGG
1425         if(e->use_ogg) {
1426                 if(options.has_serial_number)
1427                         OggFLAC__stream_encoder_set_serial_number(e->encoder.ogg.stream, options.serial_number);
1428                 OggFLAC__stream_encoder_set_verify(e->encoder.ogg.stream, options.verify);
1429                 OggFLAC__stream_encoder_set_streamable_subset(e->encoder.ogg.stream, !options.lax);
1430                 OggFLAC__stream_encoder_set_do_mid_side_stereo(e->encoder.ogg.stream, options.do_mid_side);
1431                 OggFLAC__stream_encoder_set_loose_mid_side_stereo(e->encoder.ogg.stream, options.loose_mid_side);
1432                 OggFLAC__stream_encoder_set_channels(e->encoder.ogg.stream, channels);
1433                 OggFLAC__stream_encoder_set_bits_per_sample(e->encoder.ogg.stream, bps);
1434                 OggFLAC__stream_encoder_set_sample_rate(e->encoder.ogg.stream, sample_rate);
1435                 OggFLAC__stream_encoder_set_blocksize(e->encoder.ogg.stream, options.blocksize);
1436                 OggFLAC__stream_encoder_set_max_lpc_order(e->encoder.ogg.stream, options.max_lpc_order);
1437                 OggFLAC__stream_encoder_set_qlp_coeff_precision(e->encoder.ogg.stream, options.qlp_coeff_precision);
1438                 OggFLAC__stream_encoder_set_do_qlp_coeff_prec_search(e->encoder.ogg.stream, options.do_qlp_coeff_prec_search);
1439                 OggFLAC__stream_encoder_set_do_escape_coding(e->encoder.ogg.stream, options.do_escape_coding);
1440                 OggFLAC__stream_encoder_set_do_exhaustive_model_search(e->encoder.ogg.stream, options.do_exhaustive_model_search);
1441                 OggFLAC__stream_encoder_set_min_residual_partition_order(e->encoder.ogg.stream, options.min_residual_partition_order);
1442                 OggFLAC__stream_encoder_set_max_residual_partition_order(e->encoder.ogg.stream, options.max_residual_partition_order);
1443                 OggFLAC__stream_encoder_set_rice_parameter_search_dist(e->encoder.ogg.stream, options.rice_parameter_search_dist);
1444                 OggFLAC__stream_encoder_set_total_samples_estimate(e->encoder.ogg.stream, e->total_samples_to_encode);
1445                 OggFLAC__stream_encoder_set_metadata(e->encoder.ogg.stream, (num_metadata > 0)? metadata : 0, num_metadata);
1446                 OggFLAC__stream_encoder_set_write_callback(e->encoder.ogg.stream, ogg_stream_encoder_write_callback);
1447                 OggFLAC__stream_encoder_set_client_data(e->encoder.ogg.stream, e);
1448
1449                 OggFLAC__stream_encoder_disable_constant_subframes(e->encoder.ogg.stream, options.debug.disable_constant_subframes);
1450                 OggFLAC__stream_encoder_disable_fixed_subframes(e->encoder.ogg.stream, options.debug.disable_fixed_subframes);
1451                 OggFLAC__stream_encoder_disable_verbatim_subframes(e->encoder.ogg.stream, options.debug.disable_verbatim_subframes);
1452
1453                 if(OggFLAC__stream_encoder_init(e->encoder.ogg.stream) != FLAC__STREAM_ENCODER_OK) {
1454                         print_error_with_state(e, "ERROR initializing encoder");
1455                         if(0 != cuesheet)
1456                                 free(cuesheet);
1457                         return false;
1458                 }
1459         }
1460         else
1461 #endif
1462         if(e->is_stdout) {
1463                 FLAC__stream_encoder_set_verify(e->encoder.flac.stream, options.verify);
1464                 FLAC__stream_encoder_set_streamable_subset(e->encoder.flac.stream, !options.lax);
1465                 FLAC__stream_encoder_set_do_mid_side_stereo(e->encoder.flac.stream, options.do_mid_side);
1466                 FLAC__stream_encoder_set_loose_mid_side_stereo(e->encoder.flac.stream, options.loose_mid_side);
1467                 FLAC__stream_encoder_set_channels(e->encoder.flac.stream, channels);
1468                 FLAC__stream_encoder_set_bits_per_sample(e->encoder.flac.stream, bps);
1469                 FLAC__stream_encoder_set_sample_rate(e->encoder.flac.stream, sample_rate);
1470                 FLAC__stream_encoder_set_blocksize(e->encoder.flac.stream, options.blocksize);
1471                 FLAC__stream_encoder_set_max_lpc_order(e->encoder.flac.stream, options.max_lpc_order);
1472                 FLAC__stream_encoder_set_qlp_coeff_precision(e->encoder.flac.stream, options.qlp_coeff_precision);
1473                 FLAC__stream_encoder_set_do_qlp_coeff_prec_search(e->encoder.flac.stream, options.do_qlp_coeff_prec_search);
1474                 FLAC__stream_encoder_set_do_escape_coding(e->encoder.flac.stream, options.do_escape_coding);
1475                 FLAC__stream_encoder_set_do_exhaustive_model_search(e->encoder.flac.stream, options.do_exhaustive_model_search);
1476                 FLAC__stream_encoder_set_min_residual_partition_order(e->encoder.flac.stream, options.min_residual_partition_order);
1477                 FLAC__stream_encoder_set_max_residual_partition_order(e->encoder.flac.stream, options.max_residual_partition_order);
1478                 FLAC__stream_encoder_set_rice_parameter_search_dist(e->encoder.flac.stream, options.rice_parameter_search_dist);
1479                 FLAC__stream_encoder_set_total_samples_estimate(e->encoder.flac.stream, e->total_samples_to_encode);
1480                 FLAC__stream_encoder_set_metadata(e->encoder.flac.stream, (num_metadata > 0)? metadata : 0, num_metadata);
1481                 FLAC__stream_encoder_set_write_callback(e->encoder.flac.stream, flac_stream_encoder_write_callback);
1482                 FLAC__stream_encoder_set_metadata_callback(e->encoder.flac.stream, flac_stream_encoder_metadata_callback);
1483                 FLAC__stream_encoder_set_client_data(e->encoder.flac.stream, e);
1484
1485                 FLAC__stream_encoder_disable_constant_subframes(e->encoder.flac.stream, options.debug.disable_constant_subframes);
1486                 FLAC__stream_encoder_disable_fixed_subframes(e->encoder.flac.stream, options.debug.disable_fixed_subframes);
1487                 FLAC__stream_encoder_disable_verbatim_subframes(e->encoder.flac.stream, options.debug.disable_verbatim_subframes);
1488
1489                 if(FLAC__stream_encoder_init(e->encoder.flac.stream) != FLAC__STREAM_ENCODER_OK) {
1490                         print_error_with_state(e, "ERROR initializing encoder");
1491                         if(0 != cuesheet)
1492                                 free(cuesheet);
1493                         return false;
1494                 }
1495         }
1496         else {
1497                 FLAC__file_encoder_set_filename(e->encoder.flac.file, e->outfilename);
1498                 FLAC__file_encoder_set_verify(e->encoder.flac.file, options.verify);
1499                 FLAC__file_encoder_set_streamable_subset(e->encoder.flac.file, !options.lax);
1500                 FLAC__file_encoder_set_do_mid_side_stereo(e->encoder.flac.file, options.do_mid_side);
1501                 FLAC__file_encoder_set_loose_mid_side_stereo(e->encoder.flac.file, options.loose_mid_side);
1502                 FLAC__file_encoder_set_channels(e->encoder.flac.file, channels);
1503                 FLAC__file_encoder_set_bits_per_sample(e->encoder.flac.file, bps);
1504                 FLAC__file_encoder_set_sample_rate(e->encoder.flac.file, sample_rate);
1505                 FLAC__file_encoder_set_blocksize(e->encoder.flac.file, options.blocksize);
1506                 FLAC__file_encoder_set_max_lpc_order(e->encoder.flac.file, options.max_lpc_order);
1507                 FLAC__file_encoder_set_qlp_coeff_precision(e->encoder.flac.file, options.qlp_coeff_precision);
1508                 FLAC__file_encoder_set_do_qlp_coeff_prec_search(e->encoder.flac.file, options.do_qlp_coeff_prec_search);
1509                 FLAC__file_encoder_set_do_escape_coding(e->encoder.flac.file, options.do_escape_coding);
1510                 FLAC__file_encoder_set_do_exhaustive_model_search(e->encoder.flac.file, options.do_exhaustive_model_search);
1511                 FLAC__file_encoder_set_min_residual_partition_order(e->encoder.flac.file, options.min_residual_partition_order);
1512                 FLAC__file_encoder_set_max_residual_partition_order(e->encoder.flac.file, options.max_residual_partition_order);
1513                 FLAC__file_encoder_set_rice_parameter_search_dist(e->encoder.flac.file, options.rice_parameter_search_dist);
1514                 FLAC__file_encoder_set_total_samples_estimate(e->encoder.flac.file, e->total_samples_to_encode);
1515                 FLAC__file_encoder_set_metadata(e->encoder.flac.file, (num_metadata > 0)? metadata : 0, num_metadata);
1516                 FLAC__file_encoder_set_progress_callback(e->encoder.flac.file, flac_file_encoder_progress_callback);
1517                 FLAC__file_encoder_set_client_data(e->encoder.flac.file, e);
1518
1519                 FLAC__file_encoder_disable_constant_subframes(e->encoder.flac.file, options.debug.disable_constant_subframes);
1520                 FLAC__file_encoder_disable_fixed_subframes(e->encoder.flac.file, options.debug.disable_fixed_subframes);
1521                 FLAC__file_encoder_disable_verbatim_subframes(e->encoder.flac.file, options.debug.disable_verbatim_subframes);
1522
1523                 if(FLAC__file_encoder_init(e->encoder.flac.file) != FLAC__FILE_ENCODER_OK) {
1524                         print_error_with_state(e, "ERROR initializing encoder");
1525                         if(0 != cuesheet)
1526                                 free(cuesheet);
1527                         return false;
1528                 }
1529         }
1530
1531         if(0 != cuesheet)
1532                 free(cuesheet);
1533
1534         return true;
1535 }
1536
1537 FLAC__bool EncoderSession_process(EncoderSession *e, const FLAC__int32 * const buffer[], unsigned samples)
1538 {
1539         if(e->replay_gain) {
1540                 if(!grabbag__replaygain_analyze(buffer, e->channels==2, e->bits_per_sample, samples))
1541                         fprintf(stderr, "%s: WARNING, error while calculating ReplayGain\n", e->inbasefilename);
1542         }
1543
1544 #ifdef FLAC__HAS_OGG
1545         if(e->use_ogg) {
1546                 return OggFLAC__stream_encoder_process(e->encoder.ogg.stream, buffer, samples);
1547         }
1548         else
1549 #endif
1550         if(e->is_stdout) {
1551                 return FLAC__stream_encoder_process(e->encoder.flac.stream, buffer, samples);
1552         }
1553         else {
1554                 return FLAC__file_encoder_process(e->encoder.flac.file, buffer, samples);
1555         }
1556 }
1557
1558 FLAC__bool convert_to_seek_table_template(const char *requested_seek_points, int num_requested_seek_points, FLAC__StreamMetadata *cuesheet, EncoderSession *e)
1559 {
1560         FLAC__bool only_placeholders;
1561         FLAC__bool has_real_points;
1562
1563         if(num_requested_seek_points == 0 && 0 == cuesheet)
1564                 return true;
1565
1566         if(num_requested_seek_points < 0) {
1567                 requested_seek_points = "10s;";
1568                 num_requested_seek_points = 1;
1569         }
1570
1571         if(e->is_stdout)
1572                 only_placeholders = true;
1573 #ifdef FLAC__HAS_OGG
1574         else if(e->use_ogg)
1575                 only_placeholders = true;
1576 #endif
1577         else
1578                 only_placeholders = false;
1579
1580         if(num_requested_seek_points > 0) {
1581                 if(!grabbag__seektable_convert_specification_to_template(requested_seek_points, only_placeholders, e->total_samples_to_encode, e->sample_rate, e->seek_table_template, &has_real_points))
1582                         return false;
1583         }
1584
1585         if(0 != cuesheet) {
1586                 unsigned i, j;
1587                 const FLAC__StreamMetadata_CueSheet *cs = &cuesheet->data.cue_sheet;
1588                 for(i = 0; i < cs->num_tracks; i++) {
1589                         const FLAC__StreamMetadata_CueSheet_Track *tr = cs->tracks+i;
1590                         for(j = 0; j < tr->num_indices; j++) {
1591                                 if(!FLAC__metadata_object_seektable_template_append_point(e->seek_table_template, tr->offset + tr->indices[j].offset))
1592                                         return false;
1593                                 has_real_points = true;
1594                         }
1595                 }
1596                 if(has_real_points)
1597                         if(!FLAC__metadata_object_seektable_template_sort(e->seek_table_template, /*compact=*/true))
1598                                 return false;
1599         }
1600
1601         if(has_real_points) {
1602                 if(e->is_stdout)
1603                         fprintf(stderr, "%s: WARNING, cannot write back seekpoints when encoding to stdout\n", e->inbasefilename);
1604 #ifdef FLAC__HAS_OGG
1605                 else if(e->use_ogg)
1606                         fprintf(stderr, "%s: WARNING, cannot write back seekpoints when encoding to Ogg yet\n", e->inbasefilename);
1607 #endif
1608         }
1609
1610         return true;
1611 }
1612
1613 FLAC__bool canonicalize_until_specification(utils__SkipUntilSpecification *spec, const char *inbasefilename, unsigned sample_rate, FLAC__uint64 skip, FLAC__uint64 total_samples_in_input)
1614 {
1615         /* convert from mm:ss.sss to sample number if necessary */
1616         flac__utils_canonicalize_skip_until_specification(spec, sample_rate);
1617
1618         /* special case: if "--until=-0", use the special value '0' to mean "end-of-stream" */
1619         if(spec->is_relative && spec->value.samples == 0) {
1620                 spec->is_relative = false;
1621                 return true;
1622         }
1623
1624         /* in any other case the total samples in the input must be known */
1625         if(total_samples_in_input == 0) {
1626                 fprintf(stderr, "%s: ERROR, cannot use --until when input length is unknown\n", inbasefilename);
1627                 return false;
1628         }
1629
1630         FLAC__ASSERT(spec->value_is_samples);
1631
1632         /* convert relative specifications to absolute */
1633         if(spec->is_relative) {
1634                 if(spec->value.samples <= 0)
1635                         spec->value.samples += (FLAC__int64)total_samples_in_input;
1636                 else
1637                         spec->value.samples += skip;
1638                 spec->is_relative = false;
1639         }
1640
1641         /* error check */
1642         if(spec->value.samples < 0) {
1643                 fprintf(stderr, "%s: ERROR, --until value is before beginning of input\n", inbasefilename);
1644                 return false;
1645         }
1646         if((FLAC__uint64)spec->value.samples <= skip) {
1647                 fprintf(stderr, "%s: ERROR, --until value is before --skip point\n", inbasefilename);
1648                 return false;
1649         }
1650         if((FLAC__uint64)spec->value.samples > total_samples_in_input) {
1651                 fprintf(stderr, "%s: ERROR, --until value is after end of input\n", inbasefilename);
1652                 return false;
1653         }
1654
1655         return true;
1656 }
1657
1658 void format_input(FLAC__int32 *dest[], unsigned wide_samples, FLAC__bool is_big_endian, FLAC__bool is_unsigned_samples, unsigned channels, unsigned bps)
1659 {
1660         unsigned wide_sample, sample, channel, byte;
1661
1662         if(bps == 8) {
1663                 if(is_unsigned_samples) {
1664                         for(sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
1665                                 for(channel = 0; channel < channels; channel++, sample++)
1666                                         dest[channel][wide_sample] = (FLAC__int32)ucbuffer_[sample] - 0x80;
1667                 }
1668                 else {
1669                         for(sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
1670                                 for(channel = 0; channel < channels; channel++, sample++)
1671                                         dest[channel][wide_sample] = (FLAC__int32)scbuffer_[sample];
1672                 }
1673         }
1674         else if(bps == 16) {
1675                 if(is_big_endian != is_big_endian_host_) {
1676                         unsigned char tmp;
1677                         const unsigned bytes = wide_samples * channels * (bps >> 3);
1678                         for(byte = 0; byte < bytes; byte += 2) {
1679                                 tmp = ucbuffer_[byte];
1680                                 ucbuffer_[byte] = ucbuffer_[byte+1];
1681                                 ucbuffer_[byte+1] = tmp;
1682                         }
1683                 }
1684                 if(is_unsigned_samples) {
1685                         for(sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
1686                                 for(channel = 0; channel < channels; channel++, sample++)
1687                                         dest[channel][wide_sample] = (FLAC__int32)usbuffer_[sample] - 0x8000;
1688                 }
1689                 else {
1690                         for(sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
1691                                 for(channel = 0; channel < channels; channel++, sample++)
1692                                         dest[channel][wide_sample] = (FLAC__int32)ssbuffer_[sample];
1693                 }
1694         }
1695         else if(bps == 24) {
1696                 if(!is_big_endian) {
1697                         unsigned char tmp;
1698                         const unsigned bytes = wide_samples * channels * (bps >> 3);
1699                         for(byte = 0; byte < bytes; byte += 3) {
1700                                 tmp = ucbuffer_[byte];
1701                                 ucbuffer_[byte] = ucbuffer_[byte+2];
1702                                 ucbuffer_[byte+2] = tmp;
1703                         }
1704                 }
1705                 if(is_unsigned_samples) {
1706                         for(byte = sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
1707                                 for(channel = 0; channel < channels; channel++, sample++) {
1708                                         dest[channel][wide_sample]  = ucbuffer_[byte++]; dest[channel][wide_sample] <<= 8;
1709                                         dest[channel][wide_sample] |= ucbuffer_[byte++]; dest[channel][wide_sample] <<= 8;
1710                                         dest[channel][wide_sample] |= ucbuffer_[byte++];
1711                                         dest[channel][wide_sample] -= 0x800000;
1712                                 }
1713                 }
1714                 else {
1715                         for(byte = sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
1716                                 for(channel = 0; channel < channels; channel++, sample++) {
1717                                         dest[channel][wide_sample]  = scbuffer_[byte++]; dest[channel][wide_sample] <<= 8;
1718                                         dest[channel][wide_sample] |= ucbuffer_[byte++]; dest[channel][wide_sample] <<= 8;
1719                                         dest[channel][wide_sample] |= ucbuffer_[byte++];
1720                                 }
1721                 }
1722         }
1723         else {
1724                 FLAC__ASSERT(0);
1725         }
1726 }
1727
1728 #ifdef FLAC__HAS_OGG
1729 FLAC__StreamEncoderWriteStatus ogg_stream_encoder_write_callback(const OggFLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data)
1730 {
1731         EncoderSession *encoder_session = (EncoderSession*)client_data;
1732
1733         (void)encoder;
1734
1735         encoder_session->bytes_written += bytes;
1736         /*
1737          * With Ogg FLAC we don't get one write callback per frame and
1738          * we don't have good number for 'samples', so we estimate based
1739          * on the frame number and the knowledge that all blocks (except
1740          * the last) are the same size.
1741          */
1742         (void)samples;
1743         encoder_session->samples_written = (current_frame+1) * encoder_session->blocksize;
1744
1745         if(encoder_session->verbose && encoder_session->total_samples_to_encode > 0 && !(current_frame & encoder_session->stats_mask))
1746                 print_stats(encoder_session);
1747
1748         if(flac__utils_fwrite(buffer, sizeof(FLAC__byte), bytes, encoder_session->fout) == bytes)
1749                 return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
1750         else
1751                 return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
1752 }
1753 #endif
1754
1755 FLAC__StreamEncoderWriteStatus flac_stream_encoder_write_callback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data)
1756 {
1757         EncoderSession *encoder_session = (EncoderSession*)client_data;
1758
1759         (void)encoder;
1760
1761         encoder_session->bytes_written += bytes;
1762         encoder_session->samples_written += samples;
1763
1764         if(samples && encoder_session->verbose && encoder_session->total_samples_to_encode > 0 && !(current_frame & encoder_session->stats_mask))
1765                 print_stats(encoder_session);
1766
1767         if(flac__utils_fwrite(buffer, sizeof(FLAC__byte), bytes, encoder_session->fout) == bytes)
1768                 return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
1769         else
1770                 return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
1771 }
1772
1773 void flac_stream_encoder_metadata_callback(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data)
1774 {
1775         /*
1776          * Nothing to do; if we get here, we're decoding to stdout, in
1777          * which case we can't seek backwards to write new metadata.
1778          */
1779         (void)encoder, (void)metadata, (void)client_data;
1780 }
1781
1782 void flac_file_encoder_progress_callback(const FLAC__FileEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, unsigned frames_written, unsigned total_frames_estimate, void *client_data)
1783 {
1784         EncoderSession *encoder_session = (EncoderSession*)client_data;
1785
1786         (void)encoder, (void)total_frames_estimate;
1787
1788         encoder_session->bytes_written = bytes_written;
1789         encoder_session->samples_written = samples_written;
1790
1791         if(encoder_session->verbose && encoder_session->total_samples_to_encode > 0 && !((frames_written-1) & encoder_session->stats_mask))
1792                 print_stats(encoder_session);
1793 }
1794
1795 FLAC__bool parse_cuesheet_(FLAC__StreamMetadata **cuesheet, const char *cuesheet_filename, const char *inbasefilename, FLAC__uint64 lead_out_offset)
1796 {
1797         FILE *f;
1798         unsigned last_line_read;
1799         const char *error_message;
1800
1801         if(0 == cuesheet_filename)
1802                 return true;
1803
1804         if(lead_out_offset == 0) {
1805                 fprintf(stderr, "%s: ERROR cannot import cuesheet when the number of input samples to encode is unknown\n", inbasefilename);
1806                 return false;
1807         }
1808
1809         if(0 == (f = fopen(cuesheet_filename, "r"))) {
1810                 fprintf(stderr, "%s: ERROR opening cuesheet \"%s\" for reading\n", inbasefilename, cuesheet_filename);
1811                 return false;
1812         }
1813
1814         *cuesheet = grabbag__cuesheet_parse(f, &error_message, &last_line_read, /*@@@@is_cdda=*/true, lead_out_offset);
1815
1816         fclose(f);
1817
1818         if(0 == *cuesheet) {
1819                 fprintf(stderr, "%s: ERROR parsing cuesheet \"%s\" on line %u: %s\n", inbasefilename, cuesheet_filename, last_line_read, error_message);
1820                 return false;
1821         }
1822
1823         return true;
1824 }
1825
1826 void print_stats(const EncoderSession *encoder_session)
1827 {
1828         const FLAC__uint64 samples_written = min(encoder_session->total_samples_to_encode, encoder_session->samples_written);
1829 #if defined _MSC_VER || defined __MINGW32__
1830         /* with VC++ you have to spoon feed it the casting */
1831         const double progress = (double)(FLAC__int64)samples_written / (double)(FLAC__int64)encoder_session->total_samples_to_encode;
1832         const double ratio = (double)(FLAC__int64)encoder_session->bytes_written / ((double)(FLAC__int64)encoder_session->unencoded_size * progress);
1833 #else
1834         const double progress = (double)samples_written / (double)encoder_session->total_samples_to_encode;
1835         const double ratio = (double)encoder_session->bytes_written / ((double)encoder_session->unencoded_size * progress);
1836 #endif
1837
1838         if(samples_written == encoder_session->total_samples_to_encode) {
1839                 fprintf(stderr, "\r%s:%s wrote %u bytes, ratio=%0.3f",
1840                         encoder_session->inbasefilename,
1841                         encoder_session->verify? " Verify OK," : "",
1842                         (unsigned)encoder_session->bytes_written,
1843                         ratio
1844                 );
1845         }
1846         else {
1847                 fprintf(stderr, "\r%s: %u%% complete, ratio=%0.3f", encoder_session->inbasefilename, (unsigned)floor(progress * 100.0 + 0.5), ratio);
1848         }
1849 }
1850
1851 void print_error_with_state(const EncoderSession *e, const char *message)
1852 {
1853         const int ilen = strlen(e->inbasefilename) + 1;
1854
1855         fprintf(stderr, "\n%s: %s\n", e->inbasefilename, message);
1856
1857 #ifdef FLAC__HAS_OGG
1858         if(e->use_ogg) {
1859                 const OggFLAC__StreamEncoderState ose_state = OggFLAC__stream_encoder_get_state(e->encoder.ogg.stream);
1860                 if(ose_state != OggFLAC__STREAM_ENCODER_FLAC_STREAM_ENCODER_ERROR) {
1861                         fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)ose_state, OggFLAC__StreamEncoderStateString[ose_state]);
1862                 }
1863                 else {
1864                         const FLAC__StreamEncoderState fse_state = OggFLAC__stream_encoder_get_FLAC_stream_encoder_state(e->encoder.ogg.stream);
1865                         if(fse_state != FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR) {
1866                                 fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)fse_state, FLAC__StreamEncoderStateString[fse_state]);
1867                         }
1868                         else {
1869                                 const FLAC__StreamDecoderState fsd_state = OggFLAC__stream_encoder_get_verify_decoder_state(e->encoder.ogg.stream);
1870                                 fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)fsd_state, FLAC__StreamDecoderStateString[fsd_state]);
1871                         }
1872                 }
1873         }
1874         else
1875 #endif
1876         if(e->is_stdout) {
1877                 const FLAC__StreamEncoderState fse_state = FLAC__stream_encoder_get_state(e->encoder.flac.stream);
1878                 if(fse_state != FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR) {
1879                         fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)fse_state, FLAC__StreamEncoderStateString[fse_state]);
1880                 }
1881                 else {
1882                         const FLAC__StreamDecoderState fsd_state = FLAC__stream_encoder_get_verify_decoder_state(e->encoder.flac.stream);
1883                         fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)fsd_state, FLAC__StreamDecoderStateString[fsd_state]);
1884                 }
1885         }
1886         else {
1887                 const FLAC__FileEncoderState ffe_state = FLAC__file_encoder_get_state(e->encoder.flac.file);
1888                 if(ffe_state != FLAC__FILE_ENCODER_SEEKABLE_STREAM_ENCODER_ERROR) {
1889                         fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)ffe_state, FLAC__FileEncoderStateString[ffe_state]);
1890                 }
1891                 else {
1892                         const FLAC__SeekableStreamEncoderState fsse_state = FLAC__file_encoder_get_seekable_stream_encoder_state(e->encoder.flac.file);
1893                         if(fsse_state != FLAC__SEEKABLE_STREAM_ENCODER_STREAM_ENCODER_ERROR) {
1894                                 fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)fsse_state, FLAC__SeekableStreamEncoderStateString[fsse_state]);
1895                         }
1896                         else {
1897                                 const FLAC__StreamEncoderState fse_state = FLAC__file_encoder_get_stream_encoder_state(e->encoder.flac.file);
1898                                 if(fse_state != FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR) {
1899                                         fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)fse_state, FLAC__StreamEncoderStateString[fse_state]);
1900                                 }
1901                                 else {
1902                                         const FLAC__StreamDecoderState fsd_state = FLAC__file_encoder_get_verify_decoder_state(e->encoder.flac.file);
1903                                         fprintf(stderr, "%*s state = %d:%s\n", ilen, "", (int)fsd_state, FLAC__StreamDecoderStateString[fsd_state]);
1904                                 }
1905                         }
1906                 }
1907         }
1908 }
1909
1910 void print_verify_error(EncoderSession *e)
1911 {
1912         FLAC__uint64 absolute_sample;
1913         unsigned frame_number;
1914         unsigned channel;
1915         unsigned sample;
1916         FLAC__int32 expected;
1917         FLAC__int32 got;
1918
1919 #ifdef FLAC__HAS_OGG
1920         if(e->use_ogg) {
1921                 OggFLAC__stream_encoder_get_verify_decoder_error_stats(e->encoder.ogg.stream, &absolute_sample, &frame_number, &channel, &sample, &expected, &got);
1922         }
1923         else
1924 #endif
1925         if(e->is_stdout) {
1926                 FLAC__stream_encoder_get_verify_decoder_error_stats(e->encoder.flac.stream, &absolute_sample, &frame_number, &channel, &sample, &expected, &got);
1927         }
1928         else {
1929                 FLAC__file_encoder_get_verify_decoder_error_stats(e->encoder.flac.file, &absolute_sample, &frame_number, &channel, &sample, &expected, &got);
1930         }
1931
1932         fprintf(stderr, "%s: ERROR: mismatch in decoded data, verify FAILED!\n", e->inbasefilename);
1933         fprintf(stderr, "       Absolute sample=%u, frame=%u, channel=%u, sample=%u, expected %d, got %d\n", (unsigned)absolute_sample, frame_number, channel, sample, expected, got);
1934         fprintf(stderr, "       Please submit a bug report to\n");
1935         fprintf(stderr, "           http://sourceforge.net/bugs/?func=addbug&group_id=13478\n");
1936         fprintf(stderr, "       Make sure to include an email contact in the comment and/or use the\n");
1937         fprintf(stderr, "       \"Monitor\" feature to monitor the bug status.\n");
1938         fprintf(stderr, "Verify FAILED!  Do not trust %s\n", e->outfilename);
1939 }
1940
1941 FLAC__bool read_little_endian_uint16(FILE *f, FLAC__uint16 *val, FLAC__bool eof_ok, const char *fn)
1942 {
1943         size_t bytes_read = fread(val, 1, 2, f);
1944
1945         if(bytes_read == 0) {
1946                 if(!eof_ok) {
1947                         fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1948                         return false;
1949                 }
1950                 else
1951                         return true;
1952         }
1953         else if(bytes_read < 2) {
1954                 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1955                 return false;
1956         }
1957         else {
1958                 if(is_big_endian_host_) {
1959                         FLAC__byte tmp, *b = (FLAC__byte*)val;
1960                         tmp = b[1]; b[1] = b[0]; b[0] = tmp;
1961                 }
1962                 return true;
1963         }
1964 }
1965
1966 FLAC__bool read_little_endian_uint32(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn)
1967 {
1968         size_t bytes_read = fread(val, 1, 4, f);
1969
1970         if(bytes_read == 0) {
1971                 if(!eof_ok) {
1972                         fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1973                         return false;
1974                 }
1975                 else
1976                         return true;
1977         }
1978         else if(bytes_read < 4) {
1979                 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1980                 return false;
1981         }
1982         else {
1983                 if(is_big_endian_host_) {
1984                         FLAC__byte tmp, *b = (FLAC__byte*)val;
1985                         tmp = b[3]; b[3] = b[0]; b[0] = tmp;
1986                         tmp = b[2]; b[2] = b[1]; b[1] = tmp;
1987                 }
1988                 return true;
1989         }
1990 }
1991
1992 FLAC__bool
1993 read_big_endian_uint16(FILE *f, FLAC__uint16 *val, FLAC__bool eof_ok, const char *fn)
1994 {
1995         unsigned char buf[4];
1996         size_t bytes_read= fread(buf, 1, 2, f);
1997
1998         if(bytes_read==0U && eof_ok)
1999                 return true;
2000         else if(bytes_read<2U) {
2001                 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
2002                 return false;
2003         }
2004
2005         /* this is independent of host endianness */
2006         *val= (FLAC__uint16)(buf[0])<<8 | buf[1];
2007
2008         return true;
2009 }
2010
2011 FLAC__bool
2012 read_big_endian_uint32(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn)
2013 {
2014         unsigned char buf[4];
2015         size_t bytes_read= fread(buf, 1, 4, f);
2016
2017         if(bytes_read==0U && eof_ok)
2018                 return true;
2019         else if(bytes_read<4U) {
2020                 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
2021                 return false;
2022         }
2023
2024         /* this is independent of host endianness */
2025         *val= (FLAC__uint32)(buf[0])<<24 | (FLAC__uint32)(buf[1])<<16 |
2026                 (FLAC__uint32)(buf[2])<<8 | buf[3];
2027
2028         return true;
2029 }
2030
2031 FLAC__bool
2032 read_sane_extended(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn)
2033         /* Read an IEEE 754 80-bit (aka SANE) extended floating point value from 'f',
2034          * convert it into an integral value and store in 'val'.  Return false if only
2035          * between 1 and 9 bytes remain in 'f', if 0 bytes remain in 'f' and 'eof_ok' is
2036          * false, or if the value is negative, between zero and one, or too large to be
2037          * represented by 'val'; return true otherwise.
2038          */
2039 {
2040         unsigned int i;
2041         unsigned char buf[10];
2042         size_t bytes_read= fread(buf, 1U, 10U, f);
2043         FLAC__int16 e= ((FLAC__uint16)(buf[0])<<8 | (FLAC__uint16)(buf[1]))-0x3FFF;
2044         FLAC__int16 shift= 63-e;
2045         FLAC__uint64 p= 0U;
2046
2047         if(bytes_read==0U && eof_ok)
2048                 return true;
2049         else if(bytes_read<10U) {
2050                 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
2051                 return false;
2052         }
2053         else if((buf[0]>>7)==1U || e<0 || e>63) {
2054                 fprintf(stderr, "%s: ERROR: invalid floating-point value\n", fn);
2055                 return false;
2056         }
2057
2058         for(i= 0U; i<8U; ++i)
2059                 p|= (FLAC__uint64)(buf[i+2])<<(56U-i*8);
2060         *val= (FLAC__uint32)((p>>shift)+(p>>(shift-1) & 0x1));
2061
2062         return true;
2063 }