1 /* flac - Command-line FLAC encoder/decoder
2 * Copyright (C) 2000,2001,2002 Josh Coalson
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.
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.
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.
19 #if defined _WIN32 && !defined __CYGWIN__
20 /* where MSVC puts unlink() */
25 #include <math.h> /* for floor() */
26 #include <stdio.h> /* for FILE et al. */
27 #include <stdlib.h> /* for malloc */
28 #include <string.h> /* for strcmp() */
39 #define min(x,y) ((x)<(y)?(x):(y))
41 /* this MUST be >= 588 so that sector aligning can take place with one read */
42 #define CHUNK_OF_SAMPLES 2048
46 FLAC__VERIFY_FAILED_IN_FRAME,
47 FLAC__VERIFY_FAILED_IN_METADATA
50 static const char *verify_code_string[] = {
52 "FLAC__VERIFY_FAILED_IN_FRAME",
53 "FLAC__VERIFY_FAILED_IN_METADATA"
57 FLAC__int32 *original[FLAC__MAX_CHANNELS];
58 unsigned size; /* of each original[] in samples */
59 unsigned tail; /* in wide samples */
60 const FLAC__byte *encoded_signal;
61 unsigned encoded_signal_capacity;
62 unsigned encoded_bytes;
63 FLAC__bool into_frames;
65 FLAC__StreamDecoder *decoder;
76 const char *inbasefilename;
78 const char *outfilename;
79 FLAC__StreamEncoder *encoder;
82 FLAC__uint64 unencoded_size;
83 FLAC__uint64 total_samples_to_encode;
84 FLAC__uint64 bytes_written;
85 FLAC__uint64 samples_written;
86 FLAC__uint64 stream_offset; /* i.e. number of bytes before the first byte of the the first frame's header */
87 unsigned current_frame;
88 verify_fifo_struct verify_fifo;
89 FLAC__StreamMetaData_SeekTable seek_table;
90 unsigned first_seek_point_to_check;
95 } encoder_wrapper_struct;
97 static FLAC__bool is_big_endian_host;
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;
104 static FLAC__int32 in[FLAC__MAX_CHANNELS][CHUNK_OF_SAMPLES];
105 static FLAC__int32 *input[FLAC__MAX_CHANNELS];
108 static FLAC__bool init(encoder_wrapper_struct *encoder_wrapper);
109 static FLAC__bool init_encoder(encode_options_t options, unsigned channels, unsigned bps, unsigned sample_rate, encoder_wrapper_struct *encoder_wrapper);
110 static FLAC__bool convert_to_seek_table(char *requested_seek_points, int num_requested_seek_points, FLAC__uint64 stream_samples, unsigned blocksize, FLAC__StreamMetaData_SeekTable *seek_table);
111 static void append_point_to_seek_table(FLAC__StreamMetaData_SeekTable *seek_table, FLAC__uint64 sample, FLAC__uint64 stream_samples, FLAC__uint64 blocksize);
112 static int seekpoint_compare(const FLAC__StreamMetaData_SeekPoint *l, const FLAC__StreamMetaData_SeekPoint *r);
113 static void format_input(FLAC__int32 *dest[], unsigned wide_samples, FLAC__bool is_big_endian, FLAC__bool is_unsigned_samples, unsigned channels, unsigned bps, encoder_wrapper_struct *encoder_wrapper);
114 static void append_to_verify_fifo(encoder_wrapper_struct *encoder_wrapper, const FLAC__int32 *input[], unsigned channels, unsigned wide_samples);
115 static FLAC__StreamEncoderWriteStatus write_callback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data);
116 static void metadata_callback(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetaData *metadata, void *client_data);
117 static FLAC__StreamDecoderReadStatus verify_read_callback(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data);
118 static FLAC__StreamDecoderWriteStatus verify_write_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *buffer[], void *client_data);
119 static void verify_metadata_callback(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetaData *metadata, void *client_data);
120 static void verify_error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
121 static void print_stats(const encoder_wrapper_struct *encoder_wrapper);
122 static FLAC__bool read_little_endian_uint16(FILE *f, FLAC__uint16 *val, FLAC__bool eof_ok, const char *fn);
123 static FLAC__bool read_little_endian_uint32(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn);
124 static FLAC__bool write_big_endian_uint16(FILE *f, FLAC__uint16 val);
125 static FLAC__bool write_big_endian_uint64(FILE *f, FLAC__uint64 val);
127 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)
129 encoder_wrapper_struct encoder_wrapper;
130 FLAC__bool is_unsigned_samples = false;
131 unsigned channels = 0, bps = 0, sample_rate = 0, data_bytes;
132 size_t bytes_per_wide_sample, bytes_read;
135 FLAC__bool got_fmt_chunk = false, got_data_chunk = false;
136 unsigned align_remainder = 0;
137 int info_align_carry = -1, info_align_zero = -1;
139 FLAC__ASSERT(!options.sector_align || options.common.skip == 0);
141 encoder_wrapper.encoder = 0;
142 encoder_wrapper.verify = options.common.verify;
143 encoder_wrapper.verbose = options.common.verbose;
144 encoder_wrapper.bytes_written = 0;
145 encoder_wrapper.samples_written = 0;
146 encoder_wrapper.stream_offset = 0;
147 encoder_wrapper.inbasefilename = flac__file_get_basename(infilename);
148 encoder_wrapper.outfilename = outfilename;
149 encoder_wrapper.seek_table.points = 0;
150 encoder_wrapper.first_seek_point_to_check = 0;
152 encoder_wrapper.use_ogg = options.common.use_ogg;
156 (void)lookahead_length;
158 if(0 == strcmp(outfilename, "-")) {
159 encoder_wrapper.fout = file__get_binary_stdout();
162 if(0 == (encoder_wrapper.fout = fopen(outfilename, "wb"))) {
163 fprintf(stderr, "%s: ERROR: can't open output file %s\n", encoder_wrapper.inbasefilename, outfilename);
170 if(!init(&encoder_wrapper))
174 * lookahead[] already has "RIFFxxxxWAVE", do sub-chunks
176 while(!feof(infile)) {
177 if(!read_little_endian_uint32(infile, &xx, true, encoder_wrapper.inbasefilename))
181 if(xx == 0x20746d66) { /* "fmt " */
183 fprintf(stderr, "%s: WARNING: skipping extra 'fmt ' sub-chunk\n", encoder_wrapper.inbasefilename);
186 /* fmt sub-chunk size */
187 if(!read_little_endian_uint32(infile, &xx, false, encoder_wrapper.inbasefilename))
190 fprintf(stderr, "%s: ERROR: found non-standard 'fmt ' sub-chunk which has length = %u\n", encoder_wrapper.inbasefilename, (unsigned)xx);
193 else if(xx != 16 && xx != 18) {
194 fprintf(stderr, "%s: WARNING: found non-standard 'fmt ' sub-chunk which has length = %u\n", encoder_wrapper.inbasefilename, (unsigned)xx);
197 /* compression code */
198 if(!read_little_endian_uint16(infile, &x, false, encoder_wrapper.inbasefilename))
201 fprintf(stderr, "%s: ERROR: unsupported compression type %u\n", encoder_wrapper.inbasefilename, (unsigned)x);
204 /* number of channels */
205 if(!read_little_endian_uint16(infile, &x, false, encoder_wrapper.inbasefilename))
207 if(x == 0 || x > FLAC__MAX_CHANNELS) {
208 fprintf(stderr, "%s: ERROR: unsupported number channels %u\n", encoder_wrapper.inbasefilename, (unsigned)x);
211 else if(options.sector_align && x != 2) {
212 fprintf(stderr, "%s: ERROR: file has %u channels, must be 2 for --sector-align\n", encoder_wrapper.inbasefilename, (unsigned)x);
217 if(!read_little_endian_uint32(infile, &xx, false, encoder_wrapper.inbasefilename))
219 if(!FLAC__format_is_valid_sample_rate(xx)) {
220 fprintf(stderr, "%s: ERROR: unsupported sample rate %u\n", encoder_wrapper.inbasefilename, (unsigned)xx);
223 else if(options.sector_align && xx != 44100) {
224 fprintf(stderr, "%s: ERROR: file's sample rate is %u, must be 44100 for --sector-align\n", encoder_wrapper.inbasefilename, (unsigned)xx);
228 /* avg bytes per second (ignored) */
229 if(!read_little_endian_uint32(infile, &xx, false, encoder_wrapper.inbasefilename))
231 /* block align (ignored) */
232 if(!read_little_endian_uint16(infile, &x, false, encoder_wrapper.inbasefilename))
234 /* bits per sample */
235 if(!read_little_endian_uint16(infile, &x, false, encoder_wrapper.inbasefilename))
237 if(x != 8 && x != 16 && x != 24) {
238 fprintf(stderr, "%s: ERROR: unsupported bits per sample %u\n", encoder_wrapper.inbasefilename, (unsigned)x);
242 is_unsigned_samples = (x == 8);
244 /* skip any extra data in the fmt sub-chunk */
248 for(left = data_bytes; left > 0; ) {
249 need = min(left, CHUNK_OF_SAMPLES);
250 if(fread(ucbuffer, 1, need, infile) < need) {
251 fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_wrapper.inbasefilename);
258 got_fmt_chunk = true;
261 else if(xx == 0x61746164) { /* "data" */
263 fprintf(stderr, "%s: WARNING: skipping extra 'data' sub-chunk\n", encoder_wrapper.inbasefilename);
265 else if(!got_fmt_chunk) {
266 fprintf(stderr, "%s: ERROR: got 'data' sub-chunk before 'fmt' sub-chunk\n", encoder_wrapper.inbasefilename);
271 if(!read_little_endian_uint32(infile, &xx, false, encoder_wrapper.inbasefilename))
275 bytes_per_wide_sample = channels * (bps >> 3);
277 if(options.common.skip > 0) {
278 if(fseek(infile, bytes_per_wide_sample * (unsigned)options.common.skip, SEEK_CUR) < 0) {
279 /* can't seek input, read ahead manually... */
281 for(left = (unsigned)options.common.skip; left > 0; ) { /*@@@ WATCHOUT: 4GB limit */
282 need = min(left, CHUNK_OF_SAMPLES);
283 if(fread(ucbuffer, bytes_per_wide_sample, need, infile) < need) {
284 fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_wrapper.inbasefilename);
292 data_bytes -= (unsigned)options.common.skip * bytes_per_wide_sample; /*@@@ WATCHOUT: 4GB limit */
293 encoder_wrapper.total_samples_to_encode = data_bytes / bytes_per_wide_sample + *options.align_reservoir_samples;
294 if(options.sector_align) {
295 align_remainder = (unsigned)(encoder_wrapper.total_samples_to_encode % 588);
296 if(options.is_last_file)
297 encoder_wrapper.total_samples_to_encode += (588-align_remainder); /* will pad with zeroes */
299 encoder_wrapper.total_samples_to_encode -= align_remainder; /* will stop short and carry over to next file */
302 /* +44 for the size of the WAV headers; this is just an estimate for the progress indicator and doesn't need to be exact */
303 encoder_wrapper.unencoded_size = encoder_wrapper.total_samples_to_encode * bytes_per_wide_sample + 44;
305 if(!init_encoder(options.common, channels, bps, sample_rate, &encoder_wrapper))
308 encoder_wrapper.verify_fifo.into_frames = true;
311 * first do any samples in the reservoir
313 if(options.sector_align && *options.align_reservoir_samples > 0) {
314 /* NOTE: some versions of GCC can't figure out const-ness right and will give you an 'incompatible pointer type' warning on arg 2 here: */
315 append_to_verify_fifo(&encoder_wrapper, options.align_reservoir, channels, *options.align_reservoir_samples);
317 /* NOTE: some versions of GCC can't figure out const-ness right and will give you an 'incompatible pointer type' warning on arg 2 here: */
318 if(!FLAC__stream_encoder_process(encoder_wrapper.encoder, options.align_reservoir, *options.align_reservoir_samples)) {
319 fprintf(stderr, "%s: ERROR during encoding, state = %d:%s\n", encoder_wrapper.inbasefilename, FLAC__stream_encoder_get_state(encoder_wrapper.encoder), FLAC__StreamEncoderStateString[FLAC__stream_encoder_get_state(encoder_wrapper.encoder)]);
325 * decrement the data_bytes counter if we need to align the file
327 if(options.sector_align) {
328 if(options.is_last_file) {
329 *options.align_reservoir_samples = 0;
332 *options.align_reservoir_samples = align_remainder;
333 data_bytes -= (*options.align_reservoir_samples) * bytes_per_wide_sample;
338 * now do from the file
340 while(data_bytes > 0) {
341 bytes_read = fread(ucbuffer, sizeof(unsigned char), min(data_bytes, CHUNK_OF_SAMPLES * bytes_per_wide_sample), infile);
342 if(bytes_read == 0) {
344 fprintf(stderr, "%s: ERROR during read\n", encoder_wrapper.inbasefilename);
347 else if(feof(infile)) {
348 fprintf(stderr, "%s: WARNING: unexpected EOF; expected %u samples, got %u samples\n", encoder_wrapper.inbasefilename, (unsigned)encoder_wrapper.total_samples_to_encode, (unsigned)encoder_wrapper.samples_written);
353 if(bytes_read % bytes_per_wide_sample != 0) {
354 fprintf(stderr, "%s: ERROR: got partial sample\n", encoder_wrapper.inbasefilename);
358 unsigned wide_samples = bytes_read / bytes_per_wide_sample;
359 format_input(input, wide_samples, false, is_unsigned_samples, channels, bps, &encoder_wrapper);
361 /* NOTE: some versions of GCC can't figure out const-ness right and will give you an 'incompatible pointer type' warning on arg 2 here: */
362 if(!FLAC__stream_encoder_process(encoder_wrapper.encoder, input, wide_samples)) {
363 fprintf(stderr, "%s: ERROR during encoding, state = %d:%s\n", encoder_wrapper.inbasefilename, FLAC__stream_encoder_get_state(encoder_wrapper.encoder), FLAC__StreamEncoderStateString[FLAC__stream_encoder_get_state(encoder_wrapper.encoder)]);
366 data_bytes -= bytes_read;
372 * now read unaligned samples into reservoir or pad with zeroes if necessary
374 if(options.sector_align) {
375 if(options.is_last_file) {
376 unsigned wide_samples = 588 - align_remainder;
377 if(wide_samples < 588) {
380 info_align_zero = wide_samples;
381 data_bytes = wide_samples * bytes_per_wide_sample;
382 for(channel = 0; channel < channels; channel++)
383 memset(input[channel], 0, data_bytes);
384 /* NOTE: some versions of GCC can't figure out const-ness right and will give you an 'incompatible pointer type' warning on arg 2 here: */
385 append_to_verify_fifo(&encoder_wrapper, input, channels, wide_samples);
387 /* NOTE: some versions of GCC can't figure out const-ness right and will give you an 'incompatible pointer type' warning on arg 2 here: */
388 if(!FLAC__stream_encoder_process(encoder_wrapper.encoder, input, wide_samples)) {
389 fprintf(stderr, "%s: ERROR during encoding, state = %d:%s\n", encoder_wrapper.inbasefilename, FLAC__stream_encoder_get_state(encoder_wrapper.encoder), FLAC__StreamEncoderStateString[FLAC__stream_encoder_get_state(encoder_wrapper.encoder)]);
395 if(*options.align_reservoir_samples > 0) {
396 FLAC__ASSERT(CHUNK_OF_SAMPLES >= 588);
397 bytes_read = fread(ucbuffer, sizeof(unsigned char), (*options.align_reservoir_samples) * bytes_per_wide_sample, infile);
398 if(bytes_read == 0 && ferror(infile)) {
399 fprintf(stderr, "%s: ERROR during read\n", encoder_wrapper.inbasefilename);
402 else if(bytes_read != (*options.align_reservoir_samples) * bytes_per_wide_sample) {
403 fprintf(stderr, "%s: WARNING: unexpected EOF; read %u bytes; expected %u samples, got %u samples\n", encoder_wrapper.inbasefilename, (unsigned)bytes_read, (unsigned)encoder_wrapper.total_samples_to_encode, (unsigned)encoder_wrapper.samples_written);
407 info_align_carry = *options.align_reservoir_samples;
408 format_input(options.align_reservoir, *options.align_reservoir_samples, false, is_unsigned_samples, channels, bps, &encoder_wrapper);
414 got_data_chunk = true;
418 fprintf(stderr, "%s: WARNING: skipping unknown sub-chunk '%c%c%c%c'\n", encoder_wrapper.inbasefilename, (char)(xx&255), (char)((xx>>8)&255), (char)((xx>>16)&255), (char)(xx>>24));
420 if(!read_little_endian_uint32(infile, &xx, false, encoder_wrapper.inbasefilename))
422 if(fseek(infile, xx, SEEK_CUR) < 0) {
423 /* can't seek input, read ahead manually... */
425 const unsigned chunk = sizeof(ucbuffer);
426 for(left = xx; left > 0; ) {
427 need = min(left, chunk);
428 if(fread(ucbuffer, 1, need, infile) < need) {
429 fprintf(stderr, "%s: ERROR during read while skipping unsupported sub-chunk\n", encoder_wrapper.inbasefilename);
438 if(encoder_wrapper.encoder) {
439 FLAC__stream_encoder_finish(encoder_wrapper.encoder);
440 FLAC__stream_encoder_delete(encoder_wrapper.encoder);
442 if(encoder_wrapper.use_ogg)
443 ogg_stream_clear(&encoder_wrapper.ogg.os);
446 if(encoder_wrapper.verbose && encoder_wrapper.total_samples_to_encode > 0) {
447 print_stats(&encoder_wrapper);
448 fprintf(stderr, "\n");
450 if(0 != encoder_wrapper.seek_table.points)
451 free(encoder_wrapper.seek_table.points);
452 if(options.common.verify) {
453 FLAC__stream_decoder_finish(encoder_wrapper.verify_fifo.decoder);
454 FLAC__stream_decoder_delete(encoder_wrapper.verify_fifo.decoder);
455 if(encoder_wrapper.verify_fifo.result != FLAC__VERIFY_OK) {
456 fprintf(stderr, "Verify FAILED! (%s) Do not trust %s\n", verify_code_string[encoder_wrapper.verify_fifo.result], outfilename);
460 if(info_align_carry >= 0)
461 fprintf(stderr, "%s: INFO: sector alignment causing %d samples to be carried over\n", encoder_wrapper.inbasefilename, info_align_carry);
462 if(info_align_zero >= 0)
463 fprintf(stderr, "%s: INFO: sector alignment causing %d zero samples to be appended\n", encoder_wrapper.inbasefilename, info_align_zero);
468 if(encoder_wrapper.verbose && encoder_wrapper.total_samples_to_encode > 0)
469 fprintf(stderr, "\n");
470 if(encoder_wrapper.encoder) {
471 FLAC__stream_encoder_finish(encoder_wrapper.encoder);
472 FLAC__stream_encoder_delete(encoder_wrapper.encoder);
474 if(encoder_wrapper.use_ogg)
475 ogg_stream_clear(&encoder_wrapper.ogg.os);
478 if(0 != encoder_wrapper.seek_table.points)
479 free(encoder_wrapper.seek_table.points);
480 if(options.common.verify) {
481 FLAC__stream_decoder_finish(encoder_wrapper.verify_fifo.decoder);
482 FLAC__stream_decoder_delete(encoder_wrapper.verify_fifo.decoder);
483 if(encoder_wrapper.verify_fifo.result != FLAC__VERIFY_OK) {
484 fprintf(stderr, "Verify FAILED! (%s) Do not trust %s\n", verify_code_string[encoder_wrapper.verify_fifo.result], outfilename);
494 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)
496 encoder_wrapper_struct encoder_wrapper;
498 const size_t bytes_per_wide_sample = options.channels * (options.bps >> 3);
500 encoder_wrapper.encoder = 0;
501 encoder_wrapper.verify = options.common.verify;
502 encoder_wrapper.verbose = options.common.verbose;
503 encoder_wrapper.bytes_written = 0;
504 encoder_wrapper.samples_written = 0;
505 encoder_wrapper.stream_offset = 0;
506 encoder_wrapper.inbasefilename = flac__file_get_basename(infilename);
507 encoder_wrapper.outfilename = outfilename;
508 encoder_wrapper.seek_table.points = 0;
509 encoder_wrapper.first_seek_point_to_check = 0;
511 encoder_wrapper.use_ogg = options.common.use_ogg;
514 if(0 == strcmp(outfilename, "-")) {
515 encoder_wrapper.fout = file__get_binary_stdout();
518 if(0 == (encoder_wrapper.fout = fopen(outfilename, "wb"))) {
519 fprintf(stderr, "ERROR: can't open output file %s\n", outfilename);
526 if(!init(&encoder_wrapper))
529 /* get the file length */
531 encoder_wrapper.total_samples_to_encode = encoder_wrapper.unencoded_size = 0;
534 encoder_wrapper.total_samples_to_encode = (unsigned)infilesize / bytes_per_wide_sample - options.common.skip;
535 encoder_wrapper.unencoded_size = encoder_wrapper.total_samples_to_encode * bytes_per_wide_sample;
538 if(encoder_wrapper.verbose && encoder_wrapper.total_samples_to_encode <= 0)
539 fprintf(stderr, "(No runtime statistics possible; please wait for encoding to finish...)\n");
541 if(options.common.skip > 0) {
542 unsigned skip_bytes = bytes_per_wide_sample * (unsigned)options.common.skip;
543 if(skip_bytes > lookahead_length) {
544 skip_bytes -= lookahead_length;
545 lookahead_length = 0;
546 if(fseek(infile, (long)skip_bytes, SEEK_CUR) < 0) {
547 /* can't seek input, read ahead manually... */
549 const unsigned chunk = sizeof(ucbuffer);
550 for(left = skip_bytes; left > 0; ) {
551 need = min(left, chunk);
552 if(fread(ucbuffer, 1, need, infile) < need) {
553 fprintf(stderr, "%s: ERROR during read while skipping samples\n", encoder_wrapper.inbasefilename);
561 lookahead += skip_bytes;
562 lookahead_length -= skip_bytes;
566 if(!init_encoder(options.common, options.channels, options.bps, options.sample_rate, &encoder_wrapper))
569 encoder_wrapper.verify_fifo.into_frames = true;
571 while(!feof(infile)) {
572 if(lookahead_length > 0) {
573 FLAC__ASSERT(lookahead_length < CHUNK_OF_SAMPLES * bytes_per_wide_sample);
574 memcpy(ucbuffer, lookahead, lookahead_length);
575 bytes_read = fread(ucbuffer+lookahead_length, sizeof(unsigned char), CHUNK_OF_SAMPLES * bytes_per_wide_sample - lookahead_length, infile) + lookahead_length;
577 fprintf(stderr, "%s: ERROR during read\n", encoder_wrapper.inbasefilename);
580 lookahead_length = 0;
583 bytes_read = fread(ucbuffer, sizeof(unsigned char), CHUNK_OF_SAMPLES * bytes_per_wide_sample, infile);
585 if(bytes_read == 0) {
587 fprintf(stderr, "%s: ERROR during read\n", encoder_wrapper.inbasefilename);
591 else if(bytes_read % bytes_per_wide_sample != 0) {
592 fprintf(stderr, "%s: ERROR: got partial sample\n", encoder_wrapper.inbasefilename);
596 unsigned wide_samples = bytes_read / bytes_per_wide_sample;
597 format_input(input, wide_samples, options.is_big_endian, options.is_unsigned_samples, options.channels, options.bps, &encoder_wrapper);
599 /* NOTE: some versions of GCC can't figure out const-ness right and will give you an 'incompatible pointer type' warning on arg 2 here: */
600 if(!FLAC__stream_encoder_process(encoder_wrapper.encoder, input, wide_samples)) {
601 fprintf(stderr, "%s: ERROR during encoding, state = %d:%s\n", encoder_wrapper.inbasefilename, FLAC__stream_encoder_get_state(encoder_wrapper.encoder), FLAC__StreamEncoderStateString[FLAC__stream_encoder_get_state(encoder_wrapper.encoder)]);
607 if(encoder_wrapper.encoder) {
608 FLAC__stream_encoder_finish(encoder_wrapper.encoder);
609 FLAC__stream_encoder_delete(encoder_wrapper.encoder);
611 if(encoder_wrapper.use_ogg)
612 ogg_stream_clear(&encoder_wrapper.ogg.os);
615 if(encoder_wrapper.verbose && encoder_wrapper.total_samples_to_encode > 0) {
616 print_stats(&encoder_wrapper);
617 fprintf(stderr, "\n");
619 if(0 != encoder_wrapper.seek_table.points)
620 free(encoder_wrapper.seek_table.points);
621 if(options.common.verify) {
622 FLAC__stream_decoder_finish(encoder_wrapper.verify_fifo.decoder);
623 FLAC__stream_decoder_delete(encoder_wrapper.verify_fifo.decoder);
624 if(encoder_wrapper.verify_fifo.result != FLAC__VERIFY_OK) {
625 fprintf(stderr, "Verify FAILED! (%s) Do not trust %s\n", verify_code_string[encoder_wrapper.verify_fifo.result], outfilename);
633 if(encoder_wrapper.verbose && encoder_wrapper.total_samples_to_encode > 0)
634 fprintf(stderr, "\n");
635 if(encoder_wrapper.encoder) {
636 FLAC__stream_encoder_finish(encoder_wrapper.encoder);
637 FLAC__stream_encoder_delete(encoder_wrapper.encoder);
639 if(encoder_wrapper.use_ogg)
640 ogg_stream_clear(&encoder_wrapper.ogg.os);
643 if(0 != encoder_wrapper.seek_table.points)
644 free(encoder_wrapper.seek_table.points);
645 if(options.common.verify) {
646 FLAC__stream_decoder_finish(encoder_wrapper.verify_fifo.decoder);
647 FLAC__stream_decoder_delete(encoder_wrapper.verify_fifo.decoder);
648 if(encoder_wrapper.verify_fifo.result != FLAC__VERIFY_OK) {
649 fprintf(stderr, "Verify FAILED! (%s) Do not trust %s\n", verify_code_string[encoder_wrapper.verify_fifo.result], outfilename);
659 FLAC__bool init(encoder_wrapper_struct *encoder_wrapper)
662 FLAC__uint32 test = 1;
664 is_big_endian_host = (*((FLAC__byte*)(&test)))? false : true;
666 for(i = 0; i < FLAC__MAX_CHANNELS; i++)
667 input[i] = &(in[i][0]);
669 encoder_wrapper->encoder = FLAC__stream_encoder_new();
670 if(0 == encoder_wrapper->encoder) {
671 fprintf(stderr, "%s: ERROR creating the encoder instance\n", encoder_wrapper->inbasefilename);
676 if(encoder_wrapper->use_ogg) {
677 if(ogg_stream_init(&encoder_wrapper->ogg.os, 0) != 0) {
678 fprintf(stderr, "%s: ERROR initializing the Ogg stream\n", encoder_wrapper->inbasefilename);
679 FLAC__stream_encoder_delete(encoder_wrapper->encoder);
688 FLAC__bool init_encoder(encode_options_t options, unsigned channels, unsigned bps, unsigned sample_rate, encoder_wrapper_struct *encoder_wrapper)
693 options.do_mid_side = options.loose_mid_side = false;
695 if(encoder_wrapper->verify) {
696 /* set up the fifo which will hold the original signal to compare against */
697 encoder_wrapper->verify_fifo.size = options.blocksize + CHUNK_OF_SAMPLES;
698 for(i = 0; i < channels; i++) {
699 if(0 == (encoder_wrapper->verify_fifo.original[i] = (FLAC__int32*)malloc(sizeof(FLAC__int32) * encoder_wrapper->verify_fifo.size))) {
700 fprintf(stderr, "%s: ERROR allocating verify buffers\n", encoder_wrapper->inbasefilename);
704 encoder_wrapper->verify_fifo.tail = 0;
705 encoder_wrapper->verify_fifo.into_frames = false;
706 encoder_wrapper->verify_fifo.result = FLAC__VERIFY_OK;
708 /* set up a stream decoder for verification */
709 encoder_wrapper->verify_fifo.decoder = FLAC__stream_decoder_new();
710 if(0 == encoder_wrapper->verify_fifo.decoder) {
711 fprintf(stderr, "%s: ERROR creating the verify decoder instance\n", encoder_wrapper->inbasefilename);
714 FLAC__stream_decoder_set_read_callback(encoder_wrapper->verify_fifo.decoder, verify_read_callback);
715 FLAC__stream_decoder_set_write_callback(encoder_wrapper->verify_fifo.decoder, verify_write_callback);
716 FLAC__stream_decoder_set_metadata_callback(encoder_wrapper->verify_fifo.decoder, verify_metadata_callback);
717 FLAC__stream_decoder_set_error_callback(encoder_wrapper->verify_fifo.decoder, verify_error_callback);
718 FLAC__stream_decoder_set_client_data(encoder_wrapper->verify_fifo.decoder, encoder_wrapper);
719 if(FLAC__stream_decoder_init(encoder_wrapper->verify_fifo.decoder) != FLAC__STREAM_DECODER_SEARCH_FOR_METADATA) {
720 fprintf(stderr, "%s: ERROR initializing decoder, state = %d:%s\n", encoder_wrapper->inbasefilename, FLAC__stream_decoder_get_state(encoder_wrapper->verify_fifo.decoder), FLAC__StreamDecoderStateString[FLAC__stream_decoder_get_state(encoder_wrapper->verify_fifo.decoder)]);
725 if(!convert_to_seek_table(options.requested_seek_points, options.num_requested_seek_points, encoder_wrapper->total_samples_to_encode, options.blocksize, &encoder_wrapper->seek_table)) {
726 fprintf(stderr, "%s: ERROR allocating seek table\n", encoder_wrapper->inbasefilename);
730 FLAC__stream_encoder_set_streamable_subset(encoder_wrapper->encoder, !options.lax);
731 FLAC__stream_encoder_set_do_mid_side_stereo(encoder_wrapper->encoder, options.do_mid_side);
732 FLAC__stream_encoder_set_loose_mid_side_stereo(encoder_wrapper->encoder, options.loose_mid_side);
733 FLAC__stream_encoder_set_channels(encoder_wrapper->encoder, channels);
734 FLAC__stream_encoder_set_bits_per_sample(encoder_wrapper->encoder, bps);
735 FLAC__stream_encoder_set_sample_rate(encoder_wrapper->encoder, sample_rate);
736 FLAC__stream_encoder_set_blocksize(encoder_wrapper->encoder, options.blocksize);
737 FLAC__stream_encoder_set_max_lpc_order(encoder_wrapper->encoder, options.max_lpc_order);
738 FLAC__stream_encoder_set_qlp_coeff_precision(encoder_wrapper->encoder, options.qlp_coeff_precision);
739 FLAC__stream_encoder_set_do_qlp_coeff_prec_search(encoder_wrapper->encoder, options.do_qlp_coeff_prec_search);
740 FLAC__stream_encoder_set_do_escape_coding(encoder_wrapper->encoder, options.do_escape_coding);
741 FLAC__stream_encoder_set_do_exhaustive_model_search(encoder_wrapper->encoder, options.do_exhaustive_model_search);
742 FLAC__stream_encoder_set_min_residual_partition_order(encoder_wrapper->encoder, options.min_residual_partition_order);
743 FLAC__stream_encoder_set_max_residual_partition_order(encoder_wrapper->encoder, options.max_residual_partition_order);
744 FLAC__stream_encoder_set_rice_parameter_search_dist(encoder_wrapper->encoder, options.rice_parameter_search_dist);
745 FLAC__stream_encoder_set_total_samples_estimate(encoder_wrapper->encoder, encoder_wrapper->total_samples_to_encode);
746 FLAC__stream_encoder_set_seek_table(encoder_wrapper->encoder, (encoder_wrapper->seek_table.num_points > 0)? &encoder_wrapper->seek_table : 0);
747 FLAC__stream_encoder_set_padding(encoder_wrapper->encoder, options.padding);
748 FLAC__stream_encoder_set_last_metadata_is_last(encoder_wrapper->encoder, true);
749 FLAC__stream_encoder_set_write_callback(encoder_wrapper->encoder, write_callback);
750 FLAC__stream_encoder_set_metadata_callback(encoder_wrapper->encoder, metadata_callback);
751 FLAC__stream_encoder_set_client_data(encoder_wrapper->encoder, encoder_wrapper);
753 if(FLAC__stream_encoder_init(encoder_wrapper->encoder) != FLAC__STREAM_ENCODER_OK) {
754 fprintf(stderr, "%s: ERROR initializing encoder, state = %d:%s\n", encoder_wrapper->inbasefilename, FLAC__stream_encoder_get_state(encoder_wrapper->encoder), FLAC__StreamEncoderStateString[FLAC__stream_encoder_get_state(encoder_wrapper->encoder)]);
758 /* the above call writes all the metadata, so we save the stream offset now */
759 encoder_wrapper->stream_offset = encoder_wrapper->bytes_written;
764 FLAC__bool convert_to_seek_table(char *requested_seek_points, int num_requested_seek_points, FLAC__uint64 stream_samples, unsigned blocksize, FLAC__StreamMetaData_SeekTable *seek_table)
766 unsigned i, j, real_points, placeholders;
767 char *pt = requested_seek_points, *q;
770 seek_table->num_points = 0;
772 if(num_requested_seek_points == 0)
775 if(num_requested_seek_points < 0) {
776 strcpy(requested_seek_points, "100x<");
777 num_requested_seek_points = 1;
780 /* first count how many individual seek point we may need */
781 real_points = placeholders = 0;
782 for(i = 0; i < (unsigned)num_requested_seek_points; i++) {
784 FLAC__ASSERT(0 != q);
787 if(0 == strcmp(pt, "X")) { /* -S X */
790 else if(pt[strlen(pt)-1] == 'x') { /* -S #x */
791 if(stream_samples > 0) /* we can only do these if we know the number of samples to encode up front */
792 real_points += (unsigned)atoi(pt);
801 pt = requested_seek_points;
803 /* make some space */
804 if(0 == (seek_table->points = (FLAC__StreamMetaData_SeekPoint*)malloc(sizeof(FLAC__StreamMetaData_SeekPoint) * (real_points+placeholders))))
807 /* initialize the seek_table. we set frame_samples to zero to signify the points have not yet been hit by a frame write yet. */
808 for(i = 0; i < real_points+placeholders; i++) {
809 seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
810 seek_table->points[i].stream_offset = 0;
811 seek_table->points[i].frame_samples = 0;
814 for(i = 0; i < (unsigned)num_requested_seek_points; i++) {
816 FLAC__ASSERT(0 != q);
819 if(0 == strcmp(pt, "X")) { /* -S X */
820 ; /* we append placeholders later */
822 else if(pt[strlen(pt)-1] == 'x') { /* -S #x */
823 if(stream_samples > 0) { /* we can only do these if we know the number of samples to encode up front */
825 n = (unsigned)atoi(pt);
826 for(j = 0; j < n; j++)
827 append_point_to_seek_table(seek_table, stream_samples * (FLAC__uint64)j / (FLAC__uint64)n, stream_samples, blocksize);
831 append_point_to_seek_table(seek_table, (FLAC__uint64)atoi(pt), stream_samples, blocksize);
837 /* sort the seekpoints */
838 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetaData_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare);
840 /* uniqify the seekpoints */
842 for(i = j = 0; i < seek_table->num_points; i++) {
844 if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
848 seek_table->points[j++] = seek_table->points[i];
850 seek_table->num_points = j;
852 /* append placeholders */
853 for(i = 0, j = seek_table->num_points; i < placeholders; i++, j++)
854 seek_table->points[j].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
855 seek_table->num_points += placeholders;
860 void append_point_to_seek_table(FLAC__StreamMetaData_SeekTable *seek_table, FLAC__uint64 sample, FLAC__uint64 stream_samples, FLAC__uint64 blocksize)
862 const FLAC__uint64 target_sample = (sample / blocksize) * blocksize;
864 if(stream_samples == 0 || target_sample < stream_samples)
865 seek_table->points[seek_table->num_points++].sample_number = target_sample;
868 int seekpoint_compare(const FLAC__StreamMetaData_SeekPoint *l, const FLAC__StreamMetaData_SeekPoint *r)
870 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
871 if(l->sample_number == r->sample_number)
873 else if(l->sample_number < r->sample_number)
879 void format_input(FLAC__int32 *dest[], unsigned wide_samples, FLAC__bool is_big_endian, FLAC__bool is_unsigned_samples, unsigned channels, unsigned bps, encoder_wrapper_struct *encoder_wrapper)
881 unsigned wide_sample, sample, channel, byte;
884 if(is_unsigned_samples) {
885 for(sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
886 for(channel = 0; channel < channels; channel++, sample++)
887 dest[channel][wide_sample] = (FLAC__int32)ucbuffer[sample] - 0x80;
890 for(sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
891 for(channel = 0; channel < channels; channel++, sample++)
892 dest[channel][wide_sample] = (FLAC__int32)scbuffer[sample];
896 if(is_big_endian != is_big_endian_host) {
898 const unsigned bytes = wide_samples * channels * (bps >> 3);
899 for(byte = 0; byte < bytes; byte += 2) {
900 tmp = ucbuffer[byte];
901 ucbuffer[byte] = ucbuffer[byte+1];
902 ucbuffer[byte+1] = tmp;
905 if(is_unsigned_samples) {
906 for(sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
907 for(channel = 0; channel < channels; channel++, sample++)
908 dest[channel][wide_sample] = (FLAC__int32)usbuffer[sample] - 0x8000;
911 for(sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
912 for(channel = 0; channel < channels; channel++, sample++)
913 dest[channel][wide_sample] = (FLAC__int32)ssbuffer[sample];
919 const unsigned bytes = wide_samples * channels * (bps >> 3);
920 for(byte = 0; byte < bytes; byte += 3) {
921 tmp = ucbuffer[byte];
922 ucbuffer[byte] = ucbuffer[byte+2];
923 ucbuffer[byte+2] = tmp;
926 if(is_unsigned_samples) {
927 for(byte = sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
928 for(channel = 0; channel < channels; channel++, sample++) {
929 dest[channel][wide_sample] = ucbuffer[byte++]; dest[channel][wide_sample] <<= 8;
930 dest[channel][wide_sample] |= ucbuffer[byte++]; dest[channel][wide_sample] <<= 8;
931 dest[channel][wide_sample] |= ucbuffer[byte++];
932 dest[channel][wide_sample] -= 0x800000;
936 for(byte = sample = wide_sample = 0; wide_sample < wide_samples; wide_sample++)
937 for(channel = 0; channel < channels; channel++, sample++) {
938 dest[channel][wide_sample] = scbuffer[byte++]; dest[channel][wide_sample] <<= 8;
939 dest[channel][wide_sample] |= ucbuffer[byte++]; dest[channel][wide_sample] <<= 8;
940 dest[channel][wide_sample] |= ucbuffer[byte++];
948 /* NOTE: some versions of GCC can't figure out const-ness right and will give you an 'incompatible pointer type' warning on arg 2 here: */
949 append_to_verify_fifo(encoder_wrapper, dest, channels, wide_samples);
952 void append_to_verify_fifo(encoder_wrapper_struct *encoder_wrapper, const FLAC__int32 *src[], unsigned channels, unsigned wide_samples)
954 if(encoder_wrapper->verify) {
956 for(channel = 0; channel < channels; channel++)
957 memcpy(&encoder_wrapper->verify_fifo.original[channel][encoder_wrapper->verify_fifo.tail], src[channel], sizeof(FLAC__int32) * wide_samples);
958 encoder_wrapper->verify_fifo.tail += wide_samples;
959 FLAC__ASSERT(encoder_wrapper->verify_fifo.tail <= encoder_wrapper->verify_fifo.size);
963 FLAC__StreamEncoderWriteStatus write_callback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data)
965 encoder_wrapper_struct *encoder_wrapper = (encoder_wrapper_struct *)client_data;
966 const unsigned mask = (FLAC__stream_encoder_get_do_exhaustive_model_search(encoder) || FLAC__stream_encoder_get_do_qlp_coeff_prec_search(encoder))? 0x1f : 0x7f;
968 /* mark the current seek point if hit (if stream_offset == 0 that means we're still writing metadata and haven't hit the first frame yet) */
969 if(encoder_wrapper->stream_offset > 0 && encoder_wrapper->seek_table.num_points > 0) {
970 FLAC__uint64 current_sample = (FLAC__uint64)current_frame * (FLAC__uint64)FLAC__stream_encoder_get_blocksize(encoder), test_sample;
972 for(i = encoder_wrapper->first_seek_point_to_check; i < encoder_wrapper->seek_table.num_points; i++) {
973 test_sample = encoder_wrapper->seek_table.points[i].sample_number;
974 if(test_sample > current_sample) {
977 else if(test_sample == current_sample) {
978 encoder_wrapper->seek_table.points[i].stream_offset = encoder_wrapper->bytes_written - encoder_wrapper->stream_offset;
979 encoder_wrapper->seek_table.points[i].frame_samples = FLAC__stream_encoder_get_blocksize(encoder);
980 encoder_wrapper->first_seek_point_to_check++;
984 encoder_wrapper->first_seek_point_to_check++;
989 encoder_wrapper->bytes_written += bytes;
990 encoder_wrapper->samples_written += samples;
991 encoder_wrapper->current_frame = current_frame;
993 if(samples && encoder_wrapper->verbose && encoder_wrapper->total_samples_to_encode > 0 && !(current_frame & mask))
994 print_stats(encoder_wrapper);
996 if(encoder_wrapper->verify) {
997 encoder_wrapper->verify_fifo.encoded_signal = buffer;
998 encoder_wrapper->verify_fifo.encoded_bytes = bytes;
999 if(encoder_wrapper->verify_fifo.into_frames) {
1000 if(!FLAC__stream_decoder_process_one_frame(encoder_wrapper->verify_fifo.decoder)) {
1001 encoder_wrapper->verify_fifo.result = FLAC__VERIFY_FAILED_IN_FRAME;
1002 return FLAC__STREAM_ENCODER_WRITE_FATAL_ERROR;
1006 if(!FLAC__stream_decoder_process_metadata(encoder_wrapper->verify_fifo.decoder)) {
1007 encoder_wrapper->verify_fifo.result = FLAC__VERIFY_FAILED_IN_METADATA;
1008 return FLAC__STREAM_ENCODER_WRITE_FATAL_ERROR;
1013 #ifdef FLAC__HAS_OGG
1014 if(encoder_wrapper->use_ogg) {
1017 memset(&op, 0, sizeof(op));
1018 op.packet = (unsigned char *)buffer;
1019 op.granulepos = encoder_wrapper->samples_written - 1;
1021 * this depends on the behavior of libFLAC that we will get one
1022 * write_callback first with all the metadata (and 'samples'
1023 * will be 0), then one write_callback for each frame.
1025 op.packetno = (samples == 0? -1 : (int)encoder_wrapper->current_frame);
1028 if (encoder_wrapper->bytes_written == bytes)
1031 if (encoder_wrapper->total_samples_to_encode == encoder_wrapper->samples_written)
1034 ogg_stream_packetin(&encoder_wrapper->ogg.os, &op);
1036 while(ogg_stream_pageout(&encoder_wrapper->ogg.os, &encoder_wrapper->ogg.og) != 0) {
1038 written = fwrite(encoder_wrapper->ogg.og.header, 1, encoder_wrapper->ogg.og.header_len, encoder_wrapper->fout);
1039 if (written != encoder_wrapper->ogg.og.header_len)
1040 return FLAC__STREAM_ENCODER_WRITE_FATAL_ERROR;
1042 written = fwrite(encoder_wrapper->ogg.og.body, 1, encoder_wrapper->ogg.og.body_len, encoder_wrapper->fout);
1043 if (written != encoder_wrapper->ogg.og.body_len)
1044 return FLAC__STREAM_ENCODER_WRITE_FATAL_ERROR;
1047 return FLAC__STREAM_ENCODER_WRITE_OK;
1052 if(fwrite(buffer, sizeof(FLAC__byte), bytes, encoder_wrapper->fout) == bytes)
1053 return FLAC__STREAM_ENCODER_WRITE_OK;
1055 return FLAC__STREAM_ENCODER_WRITE_FATAL_ERROR;
1059 void metadata_callback(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetaData *metadata, void *client_data)
1061 encoder_wrapper_struct *encoder_wrapper = (encoder_wrapper_struct *)client_data;
1063 FILE *f = encoder_wrapper->fout;
1064 const FLAC__uint64 samples = metadata->data.stream_info.total_samples;
1065 const unsigned min_framesize = metadata->data.stream_info.min_framesize;
1066 const unsigned max_framesize = metadata->data.stream_info.max_framesize;
1068 FLAC__ASSERT(metadata->type == FLAC__METADATA_TYPE_STREAMINFO);
1071 * If we are writing to an ogg stream, there is no need to go back
1072 * and update the STREAMINFO or SEEKTABLE blocks; the values we would
1073 * update are not necessary with Ogg as the transport. We can't do
1074 * it reliably anyway without knowing the Ogg structure.
1076 #ifdef FLAC__HAS_OGG
1077 if(encoder_wrapper->use_ogg)
1082 * we get called by the encoder when the encoding process has
1083 * finished so that we can update the STREAMINFO and SEEKTABLE
1087 (void)encoder; /* silence compiler warning about unused parameter */
1090 fclose(encoder_wrapper->fout);
1091 if(0 == (f = fopen(encoder_wrapper->outfilename, "r+b")))
1095 /* all this is based on intimate knowledge of the stream header
1096 * layout, but a change to the header format that would break this
1097 * would also break all streams encoded in the previous format.
1100 if(-1 == fseek(f, 26, SEEK_SET)) goto end_;
1101 fwrite(metadata->data.stream_info.md5sum, 1, 16, f);
1104 /* if we get this far we know we can seek so no need to check the
1105 * return value from fseek()
1107 fseek(f, 21, SEEK_SET);
1108 if(fread(&b, 1, 1, f) != 1) goto framesize_;
1109 fseek(f, 21, SEEK_SET);
1110 b = (b & 0xf0) | (FLAC__byte)((samples >> 32) & 0x0F);
1111 if(fwrite(&b, 1, 1, f) != 1) goto framesize_;
1112 b = (FLAC__byte)((samples >> 24) & 0xFF);
1113 if(fwrite(&b, 1, 1, f) != 1) goto framesize_;
1114 b = (FLAC__byte)((samples >> 16) & 0xFF);
1115 if(fwrite(&b, 1, 1, f) != 1) goto framesize_;
1116 b = (FLAC__byte)((samples >> 8) & 0xFF);
1117 if(fwrite(&b, 1, 1, f) != 1) goto framesize_;
1118 b = (FLAC__byte)(samples & 0xFF);
1119 if(fwrite(&b, 1, 1, f) != 1) goto framesize_;
1122 fseek(f, 12, SEEK_SET);
1123 b = (FLAC__byte)((min_framesize >> 16) & 0xFF);
1124 if(fwrite(&b, 1, 1, f) != 1) goto seektable_;
1125 b = (FLAC__byte)((min_framesize >> 8) & 0xFF);
1126 if(fwrite(&b, 1, 1, f) != 1) goto seektable_;
1127 b = (FLAC__byte)(min_framesize & 0xFF);
1128 if(fwrite(&b, 1, 1, f) != 1) goto seektable_;
1129 b = (FLAC__byte)((max_framesize >> 16) & 0xFF);
1130 if(fwrite(&b, 1, 1, f) != 1) goto seektable_;
1131 b = (FLAC__byte)((max_framesize >> 8) & 0xFF);
1132 if(fwrite(&b, 1, 1, f) != 1) goto seektable_;
1133 b = (FLAC__byte)(max_framesize & 0xFF);
1134 if(fwrite(&b, 1, 1, f) != 1) goto seektable_;
1137 if(encoder_wrapper->seek_table.num_points > 0) {
1141 /* convert any unused seek points to placeholders */
1142 for(i = 0; i < encoder_wrapper->seek_table.num_points; i++) {
1143 if(encoder_wrapper->seek_table.points[i].sample_number == FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER)
1145 else if(encoder_wrapper->seek_table.points[i].frame_samples == 0)
1146 encoder_wrapper->seek_table.points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
1149 /* the offset of the seek table data 'pos' should be after then stream sync and STREAMINFO block and SEEKTABLE header */
1150 pos = (FLAC__STREAM_SYNC_LEN + FLAC__STREAM_METADATA_IS_LAST_LEN + FLAC__STREAM_METADATA_TYPE_LEN + FLAC__STREAM_METADATA_LENGTH_LEN) / 8;
1151 pos += metadata->length;
1152 pos += (FLAC__STREAM_METADATA_IS_LAST_LEN + FLAC__STREAM_METADATA_TYPE_LEN + FLAC__STREAM_METADATA_LENGTH_LEN) / 8;
1153 fseek(f, pos, SEEK_SET);
1154 for(i = 0; i < encoder_wrapper->seek_table.num_points; i++) {
1155 if(!write_big_endian_uint64(f, encoder_wrapper->seek_table.points[i].sample_number)) goto end_;
1156 if(!write_big_endian_uint64(f, encoder_wrapper->seek_table.points[i].stream_offset)) goto end_;
1157 if(!write_big_endian_uint16(f, (FLAC__uint16)encoder_wrapper->seek_table.points[i].frame_samples)) goto end_;
1166 FLAC__StreamDecoderReadStatus verify_read_callback(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data)
1168 encoder_wrapper_struct *encoder_wrapper = (encoder_wrapper_struct *)client_data;
1169 const unsigned encoded_bytes = encoder_wrapper->verify_fifo.encoded_bytes;
1172 if(encoded_bytes <= *bytes) {
1173 *bytes = encoded_bytes;
1174 memcpy(buffer, encoder_wrapper->verify_fifo.encoded_signal, *bytes);
1177 memcpy(buffer, encoder_wrapper->verify_fifo.encoded_signal, *bytes);
1178 encoder_wrapper->verify_fifo.encoded_signal += *bytes;
1179 encoder_wrapper->verify_fifo.encoded_bytes -= *bytes;
1182 return FLAC__STREAM_DECODER_READ_CONTINUE;
1185 FLAC__StreamDecoderWriteStatus verify_write_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *buffer[], void *client_data)
1187 encoder_wrapper_struct *encoder_wrapper = (encoder_wrapper_struct *)client_data;
1188 unsigned channel, l, r;
1189 const unsigned channels = FLAC__stream_decoder_get_channels(decoder);
1190 const unsigned bytes_per_block = sizeof(FLAC__int32) * FLAC__stream_decoder_get_blocksize(decoder);
1192 for(channel = 0; channel < channels; channel++) {
1193 if(0 != memcmp(buffer[channel], encoder_wrapper->verify_fifo.original[channel], bytes_per_block)) {
1194 unsigned sample = 0;
1195 int expect = 0, got = 0;
1196 fprintf(stderr, "\n%s: ERROR: mismatch in decoded data, verify FAILED!\n", encoder_wrapper->inbasefilename);
1197 fprintf(stderr, " Please submit a bug report to\n");
1198 fprintf(stderr, " http://sourceforge.net/bugs/?func=addbug&group_id=13478\n");
1199 fprintf(stderr, " Make sure to include an email contact in the comment and/or use the\n");
1200 fprintf(stderr, " \"Monitor\" feature to monitor the bug status.\n");
1201 for(l = 0, r = FLAC__stream_decoder_get_blocksize(decoder); l < r; l++) {
1202 if(buffer[channel][l] != encoder_wrapper->verify_fifo.original[channel][l]) {
1204 expect = (int)encoder_wrapper->verify_fifo.original[channel][l];
1205 got = (int)buffer[channel][l];
1209 FLAC__ASSERT(l < r);
1210 FLAC__ASSERT(frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER);
1211 fprintf(stderr, " Absolute sample=%u, frame=%u, channel=%u, sample=%u, expected %d, got %d\n", (unsigned)frame->header.number.sample_number + sample, (unsigned)frame->header.number.sample_number / FLAC__stream_decoder_get_blocksize(decoder), channel, sample, expect, got); /*@@@ WATCHOUT: 4GB limit */
1212 return FLAC__STREAM_DECODER_WRITE_ABORT;
1215 /* dequeue the frame from the fifo */
1216 for(channel = 0; channel < channels; channel++) {
1217 for(l = 0, r = frame->header.blocksize; r < encoder_wrapper->verify_fifo.tail; l++, r++) {
1218 encoder_wrapper->verify_fifo.original[channel][l] = encoder_wrapper->verify_fifo.original[channel][r];
1221 encoder_wrapper->verify_fifo.tail -= frame->header.blocksize;
1222 return FLAC__STREAM_DECODER_WRITE_CONTINUE;
1225 void verify_metadata_callback(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetaData *metadata, void *client_data)
1232 void verify_error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
1234 encoder_wrapper_struct *encoder_wrapper = (encoder_wrapper_struct *)client_data;
1236 fprintf(stderr, "\n%s: ERROR: verification decoder returned error %d:%s\n", encoder_wrapper->inbasefilename, status, FLAC__StreamDecoderErrorStatusString[status]);
1239 void print_stats(const encoder_wrapper_struct *encoder_wrapper)
1241 #if defined _MSC_VER || defined __MINGW32__
1242 /* with VC++ you have to spoon feed it the casting */
1243 const double progress = (double)(FLAC__int64)encoder_wrapper->samples_written / (double)(FLAC__int64)encoder_wrapper->total_samples_to_encode;
1244 const double ratio = (double)(FLAC__int64)encoder_wrapper->bytes_written / ((double)(FLAC__int64)encoder_wrapper->unencoded_size * progress);
1246 const double progress = (double)encoder_wrapper->samples_written / (double)encoder_wrapper->total_samples_to_encode;
1247 const double ratio = (double)encoder_wrapper->bytes_written / ((double)encoder_wrapper->unencoded_size * progress);
1250 if(encoder_wrapper->samples_written == encoder_wrapper->total_samples_to_encode) {
1251 fprintf(stderr, "\r%s:%s wrote %u bytes, ratio=%0.3f",
1252 encoder_wrapper->inbasefilename,
1253 encoder_wrapper->verify? (encoder_wrapper->verify_fifo.result == FLAC__VERIFY_OK? " Verify OK," : " Verify FAILED!") : "",
1254 (unsigned)encoder_wrapper->bytes_written,
1259 fprintf(stderr, "\r%s: %u%% complete, ratio=%0.3f", encoder_wrapper->inbasefilename, (unsigned)floor(progress * 100.0 + 0.5), ratio);
1263 FLAC__bool read_little_endian_uint16(FILE *f, FLAC__uint16 *val, FLAC__bool eof_ok, const char *fn)
1265 size_t bytes_read = fread(val, 1, 2, f);
1267 if(bytes_read == 0) {
1269 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1275 else if(bytes_read < 2) {
1276 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1280 if(is_big_endian_host) {
1281 FLAC__byte tmp, *b = (FLAC__byte*)val;
1282 tmp = b[1]; b[1] = b[0]; b[0] = tmp;
1288 FLAC__bool read_little_endian_uint32(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn)
1290 size_t bytes_read = fread(val, 1, 4, f);
1292 if(bytes_read == 0) {
1294 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1300 else if(bytes_read < 4) {
1301 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1305 if(is_big_endian_host) {
1306 FLAC__byte tmp, *b = (FLAC__byte*)val;
1307 tmp = b[3]; b[3] = b[0]; b[0] = tmp;
1308 tmp = b[2]; b[2] = b[1]; b[1] = tmp;
1314 FLAC__bool write_big_endian_uint16(FILE *f, FLAC__uint16 val)
1316 if(!is_big_endian_host) {
1317 FLAC__byte *b = (FLAC__byte *)&val, tmp;
1318 tmp = b[0]; b[0] = b[1]; b[1] = tmp;
1320 return fwrite(&val, 1, 2, f) == 2;
1323 FLAC__bool write_big_endian_uint64(FILE *f, FLAC__uint64 val)
1325 if(!is_big_endian_host) {
1326 FLAC__byte *b = (FLAC__byte *)&val, tmp;
1327 tmp = b[0]; b[0] = b[7]; b[7] = tmp;
1328 tmp = b[1]; b[1] = b[6]; b[6] = tmp;
1329 tmp = b[2]; b[2] = b[5]; b[5] = tmp;
1330 tmp = b[3]; b[3] = b[4]; b[4] = tmp;
1332 return fwrite(&val, 1, 8, f) == 8;