1 /* flac - Command-line FLAC encoder/decoder
2 * Copyright (C) 2000,2001,2002,2003 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 <limits.h> /* for LONG_MAX */
26 #include <math.h> /* for floor() */
28 #include <stdio.h> /* for FILE etc. */
29 #include <stdlib.h> /* for malloc */
30 #include <string.h> /* for strcmp() */
32 #include "share/grabbag.h"
40 #include "OggFLAC/stream_encoder.h"
46 #define min(x,y) ((x)<(y)?(x):(y))
48 /* this MUST be >= 588 so that sector aligning can take place with one read */
49 #define CHUNK_OF_SAMPLES 2048
58 const char *inbasefilename;
59 const char *outfilename;
62 FLAC__uint64 until; /* a value of 0 mean end-of-stream (i.e. --until=-0) */
63 FLAC__bool replay_gain;
65 unsigned bits_per_sample;
67 FLAC__uint64 unencoded_size;
68 FLAC__uint64 total_samples_to_encode;
69 FLAC__uint64 bytes_written;
70 FLAC__uint64 samples_written;
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
81 FLAC__StreamEncoder *stream;
82 FLAC__FileEncoder *file;
86 OggFLAC__StreamEncoder *stream;
93 FLAC__StreamMetadata *seek_table_template;
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];
109 * unpublished debug routines from the FLAC libs
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);
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);
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);
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);
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);
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)
158 EncoderSession encoder_session;
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;
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 */
170 EncoderSession_construct(
173 options.common.use_ogg,
177 options.common.verify,
178 options.common.verbose,
186 /* lookahead[] already has "FORMxxxxAIFF", do sub-chunks */
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)))
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);
200 if(got_comm_chunk==false && !strncmp(chunk_id, "COMM", 4)) { /* common chunk */
203 /* COMM chunk size */
204 if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
205 return EncoderSession_finish_error(&encoder_session);
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);
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);
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);
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);
227 /* number of sample frames */
228 if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
229 return EncoderSession_finish_error(&encoder_session);
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);
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);
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);
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);
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);
270 * now that we know the sample rate, canonicalize the
271 * --skip string to a number of samples:
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);
278 got_comm_chunk= true;
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;
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);
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);
299 pad= (data_bytes & 1U) ? true : false;
300 data_bytes-= 8U; /* discount the offset and block size fields */
303 if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
304 return EncoderSession_finish_error(&encoder_session);
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);
312 if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
313 return EncoderSession_finish_error(&encoder_session);
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);
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;
325 * now that we know the input size, canonicalize the
326 * --until string to an absolute sample number:
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);
333 if(encoder_session.skip>0U) {
334 FLAC__uint64 remaining= encoder_session.skip*bytes_per_frame;
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 */
340 unsigned long skip= (unsigned long)(remaining % (1U<<30));
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);
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;
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 */
370 encoder_session.total_samples_to_encode-= align_remainder; /* will stop short and carry over to next file */
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;
376 if(!EncoderSession_init_encoder(&encoder_session, options.common, channels, bps, sample_rate))
377 return EncoderSession_finish_error(&encoder_session);
379 /* first do any samples in the reservoir */
380 if(options.common.sector_align && *options.common.align_reservoir_samples>0U) {
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);
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;
393 *options.common.align_reservoir_samples= align_remainder;
394 data_bytes-= (*options.common.align_reservoir_samples)*bytes_per_frame;
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);
404 fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
405 return EncoderSession_finish_error(&encoder_session);
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);
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);
418 unsigned int frames= bytes_read/bytes_per_frame;
419 format_input(input_, frames, true, false, channels, bps);
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);
426 data_bytes-= bytes_read;
432 FLAC__uint64 remaining= (unsigned int)trim*bytes_per_frame;
434 FLAC__ASSERT(!options.common.sector_align);
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 */
440 unsigned long skip= (unsigned long)(remaining % (1U<<30));
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);
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;
461 if(pad_frames<588U) {
464 info_align_zero= pad_frames;
465 for(i= 0U; i<channels; ++i)
466 memset(input_[i], 0, pad_frames*(bps>>3));
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);
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);
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);
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);
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);
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);
502 got_ssnd_chunk= true;
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);
510 fprintf(stderr, "%s: WARNING: skipping unknown chunk '%s'\n", encoder_session.inbasefilename, chunk_id);
513 if(!read_big_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
514 return EncoderSession_finish_error(&encoder_session);
516 unsigned long skip= xx+(xx & 1U);
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);
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);
536 return EncoderSession_finish_ok(&encoder_session, info_align_carry, info_align_zero);
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)
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;
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;
553 (void)lookahead_length;
556 EncoderSession_construct(
559 options.common.use_ogg,
563 options.common.verify,
564 options.common.verbose,
573 * lookahead[] already has "RIFFxxxxWAVE", do sub-chunks
575 while(!feof(infile)) {
576 if(!read_little_endian_uint32(infile, &xx, true, encoder_session.inbasefilename))
577 return EncoderSession_finish_error(&encoder_session);
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);
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);
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);
592 /* compression code */
593 if(!read_little_endian_uint16(infile, &x, false, encoder_session.inbasefilename))
594 return EncoderSession_finish_error(&encoder_session);
596 fprintf(stderr, "%s: ERROR: unsupported compression type %u\n", encoder_session.inbasefilename, (unsigned)x);
597 return EncoderSession_finish_error(&encoder_session);
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);
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);
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);
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);
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);
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);
641 is_unsigned_samples = (x == 8);
643 /* skip any extra data in the fmt sub-chunk */
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);
658 * now that we know the sample rate, canonicalize the
659 * --skip string to a number of samples:
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);
666 got_fmt_chunk = true;
668 else if(xx == 0x61746164 && !got_data_chunk && got_fmt_chunk) { /* "data" */
669 FLAC__uint64 total_samples_in_input, trim = 0;
672 if(!read_little_endian_uint32(infile, &xx, false, encoder_session.inbasefilename))
673 return EncoderSession_finish_error(&encoder_session);
676 bytes_per_wide_sample = channels * (bps >> 3);
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;
683 * now that we know the input size, canonicalize the
684 * --until string to an absolute sample number:
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);
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... */
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);
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;
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 */
720 encoder_session.total_samples_to_encode -= align_remainder; /* will stop short and carry over to next file */
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;
726 if(!EncoderSession_init_encoder(&encoder_session, options.common, channels, bps, sample_rate))
727 return EncoderSession_finish_error(&encoder_session);
730 * first do any samples in the reservoir
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);
740 * decrement the data_bytes counter if we need to align the file
742 if(options.common.sector_align) {
743 if(options.common.is_last_file) {
744 *options.common.align_reservoir_samples = 0;
747 *options.common.align_reservoir_samples = align_remainder;
748 data_bytes -= (*options.common.align_reservoir_samples) * bytes_per_wide_sample;
753 * now do from the file
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) {
759 fprintf(stderr, "%s: ERROR during read\n", encoder_session.inbasefilename);
760 return EncoderSession_finish_error(&encoder_session);
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);
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);
773 unsigned wide_samples = bytes_read / bytes_per_wide_sample;
774 format_input(input_, wide_samples, false, is_unsigned_samples, channels, bps);
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);
780 data_bytes -= bytes_read;
786 if(fseek(infile, bytes_per_wide_sample * (unsigned)trim, SEEK_CUR) < 0) {
787 /* can't seek input, read ahead manually... */
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);
801 * now read unaligned samples into reservoir or pad with zeroes if necessary
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) {
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);
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);
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);
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);
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);
840 got_data_chunk = true;
843 if(xx == 0x20746d66 && got_fmt_chunk) { /* "fmt " */
844 fprintf(stderr, "%s: WARNING: skipping extra 'fmt ' sub-chunk\n", encoder_session.inbasefilename);
846 else if(xx == 0x61746164) { /* "data" */
848 fprintf(stderr, "%s: WARNING: skipping extra 'data' sub-chunk\n", encoder_session.inbasefilename);
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);
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));
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... */
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);
880 return EncoderSession_finish_ok(&encoder_session, info_align_carry, info_align_zero);
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)
885 EncoderSession encoder_session;
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;;
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));
900 EncoderSession_construct(
903 options.common.use_ogg,
907 options.common.verify,
908 options.common.verbose,
917 * now that we know the sample rate, canonicalize the
918 * --skip string to a number of samples:
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);
926 total_samples_in_input = 0;
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;
934 * now that we know the input size, canonicalize the
935 * --until strings to a number of samples:
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);
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;
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 */
955 encoder_session.total_samples_to_encode -= align_remainder; /* will stop short and carry over to next file */
957 encoder_session.unencoded_size = encoder_session.total_samples_to_encode * bytes_per_wide_sample;
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");
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... */
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);
982 lookahead += skip_bytes;
983 lookahead_length -= skip_bytes;
987 if(!EncoderSession_init_encoder(&encoder_session, options.common, options.channels, options.bps, options.sample_rate))
988 return EncoderSession_finish_error(&encoder_session);
991 * first do any samples in the reservoir
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);
1001 * decrement infilesize if we need to align the file
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;
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);
1016 * now do from the file
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);
1028 lookahead_length = 0;
1031 bytes_read = fread(ucbuffer_, sizeof(unsigned char), CHUNK_OF_SAMPLES * bytes_per_wide_sample, infile);
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);
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);
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);
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);
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) {
1059 size_t wanted = (CHUNK_OF_SAMPLES * bytes_per_wide_sample);
1060 wanted = min(wanted, (size_t)(max_input_bytes - total_input_bytes_read));
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;
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);
1074 lookahead_length = 0;
1077 bytes_read = fread(ucbuffer_, sizeof(unsigned char), wanted, infile);
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);
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;
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);
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);
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);
1103 total_input_bytes_read += bytes_read;
1110 * now read unaligned samples into reservoir or pad with zeroes if necessary
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;
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);
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);
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);
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);
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);
1148 return EncoderSession_finish_ok(&encoder_session, info_align_carry, info_align_zero);
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)
1154 FLAC__uint32 test = 1;
1157 * initialize globals
1160 is_big_endian_host_ = (*((FLAC__byte*)(&test)))? false : true;
1162 for(i = 0; i < FLAC__MAX_CHANNELS; i++)
1163 input_[i] = &(in_[i][0]);
1167 * initialize instance
1170 #ifdef FLAC__HAS_OGG
1171 e->use_ogg = use_ogg;
1176 e->verbose = verbose;
1178 e->is_stdout = (0 == strcmp(outfilename, "-"));
1180 e->inbasefilename = grabbag__file_get_basename(infilename);
1181 e->outfilename = outfilename;
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;
1191 e->encoder.flac.stream = 0;
1192 e->encoder.flac.file = 0;
1193 #ifdef FLAC__HAS_OGG
1194 e->encoder.ogg.stream = 0;
1199 e->seek_table_template = 0;
1202 e->fout = grabbag__file_get_binary_stdout();
1204 #ifdef FLAC__HAS_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);
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);
1221 #ifdef FLAC__HAS_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);
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);
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);
1252 void EncoderSession_destroy(EncoderSession *e)
1256 if(0 != e->fout && e->fout != stdout)
1259 #ifdef FLAC__HAS_OGG
1261 if(0 != e->encoder.ogg.stream) {
1262 OggFLAC__stream_encoder_delete(e->encoder.ogg.stream);
1263 e->encoder.ogg.stream = 0;
1269 if(0 != e->encoder.flac.stream) {
1270 FLAC__stream_encoder_delete(e->encoder.flac.stream);
1271 e->encoder.flac.stream = 0;
1275 if(0 != e->encoder.flac.file) {
1276 FLAC__file_encoder_delete(e->encoder.flac.file);
1277 e->encoder.flac.file = 0;
1281 if(0 != e->seek_table_template) {
1282 FLAC__metadata_object_delete(e->seek_table_template);
1283 e->seek_table_template = 0;
1287 int EncoderSession_finish_ok(EncoderSession *e, int info_align_carry, int info_align_zero)
1289 FLAC__StreamEncoderState fse_state = FLAC__STREAM_ENCODER_OK;
1292 #ifdef FLAC__HAS_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);
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);
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);
1314 if(e->verbose && e->total_samples_to_encode > 0) {
1316 fprintf(stderr, "\n");
1319 if(fse_state == FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA) {
1320 print_verify_error(e);
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);
1330 EncoderSession_destroy(e);
1335 int EncoderSession_finish_error(EncoderSession *e)
1337 FLAC__StreamEncoderState fse_state;
1339 if(e->verbose && e->total_samples_to_encode > 0)
1340 fprintf(stderr, "\n");
1342 #ifdef FLAC__HAS_OGG
1344 fse_state = OggFLAC__stream_encoder_get_FLAC_stream_encoder_state(e->encoder.ogg.stream);
1349 fse_state = FLAC__stream_encoder_get_state(e->encoder.flac.stream);
1352 fse_state = FLAC__file_encoder_get_stream_encoder_state(e->encoder.flac.file);
1355 if(fse_state == FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA)
1356 print_verify_error(e);
1358 unlink(e->outfilename);
1360 EncoderSession_destroy(e);
1365 FLAC__bool EncoderSession_init_encoder(EncoderSession *e, encode_options_t options, unsigned channels, unsigned bps, unsigned sample_rate)
1367 unsigned num_metadata;
1368 FLAC__StreamMetadata padding, *cuesheet = 0;
1369 FLAC__StreamMetadata *metadata[4];
1371 e->replay_gain = options.replay_gain;
1372 e->channels = channels;
1373 e->bits_per_sample = bps;
1374 e->sample_rate = sample_rate;
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);
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);
1385 if(options.is_first_file) {
1386 if(!grabbag__replaygain_init(sample_rate)) {
1387 fprintf(stderr, "%s: ERROR initializing ReplayGain stage\n", e->inbasefilename);
1394 options.do_mid_side = options.loose_mid_side = false;
1396 if(!parse_cuesheet_(&cuesheet, options.cuesheet_filename, e->inbasefilename, e->total_samples_to_encode))
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);
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;
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;
1421 e->blocksize = options.blocksize;
1422 e->stats_mask = (options.do_exhaustive_model_search || options.do_qlp_coeff_prec_search)? 0x0f : 0x3f;
1424 #ifdef FLAC__HAS_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);
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);
1453 if(OggFLAC__stream_encoder_init(e->encoder.ogg.stream) != FLAC__STREAM_ENCODER_OK) {
1454 print_error_with_state(e, "ERROR initializing encoder");
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);
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);
1489 if(FLAC__stream_encoder_init(e->encoder.flac.stream) != FLAC__STREAM_ENCODER_OK) {
1490 print_error_with_state(e, "ERROR initializing encoder");
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);
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);
1523 if(FLAC__file_encoder_init(e->encoder.flac.file) != FLAC__FILE_ENCODER_OK) {
1524 print_error_with_state(e, "ERROR initializing encoder");
1537 FLAC__bool EncoderSession_process(EncoderSession *e, const FLAC__int32 * const buffer[], unsigned samples)
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);
1544 #ifdef FLAC__HAS_OGG
1546 return OggFLAC__stream_encoder_process(e->encoder.ogg.stream, buffer, samples);
1551 return FLAC__stream_encoder_process(e->encoder.flac.stream, buffer, samples);
1554 return FLAC__file_encoder_process(e->encoder.flac.file, buffer, samples);
1558 FLAC__bool convert_to_seek_table_template(const char *requested_seek_points, int num_requested_seek_points, FLAC__StreamMetadata *cuesheet, EncoderSession *e)
1560 FLAC__bool only_placeholders;
1561 FLAC__bool has_real_points;
1563 if(num_requested_seek_points == 0 && 0 == cuesheet)
1566 if(num_requested_seek_points < 0) {
1567 requested_seek_points = "10s;";
1568 num_requested_seek_points = 1;
1572 only_placeholders = true;
1573 #ifdef FLAC__HAS_OGG
1575 only_placeholders = true;
1578 only_placeholders = false;
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))
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))
1593 has_real_points = true;
1597 if(!FLAC__metadata_object_seektable_template_sort(e->seek_table_template, /*compact=*/true))
1601 if(has_real_points) {
1603 fprintf(stderr, "%s: WARNING, cannot write back seekpoints when encoding to stdout\n", e->inbasefilename);
1604 #ifdef FLAC__HAS_OGG
1606 fprintf(stderr, "%s: WARNING, cannot write back seekpoints when encoding to Ogg yet\n", e->inbasefilename);
1613 FLAC__bool canonicalize_until_specification(utils__SkipUntilSpecification *spec, const char *inbasefilename, unsigned sample_rate, FLAC__uint64 skip, FLAC__uint64 total_samples_in_input)
1615 /* convert from mm:ss.sss to sample number if necessary */
1616 flac__utils_canonicalize_skip_until_specification(spec, sample_rate);
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;
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);
1630 FLAC__ASSERT(spec->value_is_samples);
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;
1637 spec->value.samples += skip;
1638 spec->is_relative = false;
1642 if(spec->value.samples < 0) {
1643 fprintf(stderr, "%s: ERROR, --until value is before beginning of input\n", inbasefilename);
1646 if((FLAC__uint64)spec->value.samples <= skip) {
1647 fprintf(stderr, "%s: ERROR, --until value is before --skip point\n", inbasefilename);
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);
1658 void format_input(FLAC__int32 *dest[], unsigned wide_samples, FLAC__bool is_big_endian, FLAC__bool is_unsigned_samples, unsigned channels, unsigned bps)
1660 unsigned wide_sample, sample, channel, byte;
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;
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];
1674 else if(bps == 16) {
1675 if(is_big_endian != is_big_endian_host_) {
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;
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;
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];
1695 else if(bps == 24) {
1696 if(!is_big_endian) {
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;
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;
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++];
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)
1731 EncoderSession *encoder_session = (EncoderSession*)client_data;
1735 encoder_session->bytes_written += bytes;
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.
1743 encoder_session->samples_written = (current_frame+1) * encoder_session->blocksize;
1745 if(encoder_session->verbose && encoder_session->total_samples_to_encode > 0 && !(current_frame & encoder_session->stats_mask))
1746 print_stats(encoder_session);
1748 if(flac__utils_fwrite(buffer, sizeof(FLAC__byte), bytes, encoder_session->fout) == bytes)
1749 return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
1751 return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
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)
1757 EncoderSession *encoder_session = (EncoderSession*)client_data;
1761 encoder_session->bytes_written += bytes;
1762 encoder_session->samples_written += samples;
1764 if(samples && encoder_session->verbose && encoder_session->total_samples_to_encode > 0 && !(current_frame & encoder_session->stats_mask))
1765 print_stats(encoder_session);
1767 if(flac__utils_fwrite(buffer, sizeof(FLAC__byte), bytes, encoder_session->fout) == bytes)
1768 return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
1770 return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
1773 void flac_stream_encoder_metadata_callback(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data)
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.
1779 (void)encoder, (void)metadata, (void)client_data;
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)
1784 EncoderSession *encoder_session = (EncoderSession*)client_data;
1786 (void)encoder, (void)total_frames_estimate;
1788 encoder_session->bytes_written = bytes_written;
1789 encoder_session->samples_written = samples_written;
1791 if(encoder_session->verbose && encoder_session->total_samples_to_encode > 0 && !((frames_written-1) & encoder_session->stats_mask))
1792 print_stats(encoder_session);
1795 FLAC__bool parse_cuesheet_(FLAC__StreamMetadata **cuesheet, const char *cuesheet_filename, const char *inbasefilename, FLAC__uint64 lead_out_offset)
1798 unsigned last_line_read;
1799 const char *error_message;
1801 if(0 == cuesheet_filename)
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);
1809 if(0 == (f = fopen(cuesheet_filename, "r"))) {
1810 fprintf(stderr, "%s: ERROR opening cuesheet \"%s\" for reading\n", inbasefilename, cuesheet_filename);
1814 *cuesheet = grabbag__cuesheet_parse(f, &error_message, &last_line_read, /*@@@@is_cdda=*/true, lead_out_offset);
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);
1826 void print_stats(const EncoderSession *encoder_session)
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);
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);
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,
1847 fprintf(stderr, "\r%s: %u%% complete, ratio=%0.3f", encoder_session->inbasefilename, (unsigned)floor(progress * 100.0 + 0.5), ratio);
1851 void print_error_with_state(const EncoderSession *e, const char *message)
1853 const int ilen = strlen(e->inbasefilename) + 1;
1855 fprintf(stderr, "\n%s: %s\n", e->inbasefilename, message);
1857 #ifdef FLAC__HAS_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]);
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]);
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]);
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]);
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]);
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]);
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]);
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]);
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]);
1910 void print_verify_error(EncoderSession *e)
1912 FLAC__uint64 absolute_sample;
1913 unsigned frame_number;
1916 FLAC__int32 expected;
1919 #ifdef FLAC__HAS_OGG
1921 OggFLAC__stream_encoder_get_verify_decoder_error_stats(e->encoder.ogg.stream, &absolute_sample, &frame_number, &channel, &sample, &expected, &got);
1926 FLAC__stream_encoder_get_verify_decoder_error_stats(e->encoder.flac.stream, &absolute_sample, &frame_number, &channel, &sample, &expected, &got);
1929 FLAC__file_encoder_get_verify_decoder_error_stats(e->encoder.flac.file, &absolute_sample, &frame_number, &channel, &sample, &expected, &got);
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);
1941 FLAC__bool read_little_endian_uint16(FILE *f, FLAC__uint16 *val, FLAC__bool eof_ok, const char *fn)
1943 size_t bytes_read = fread(val, 1, 2, f);
1945 if(bytes_read == 0) {
1947 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1953 else if(bytes_read < 2) {
1954 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
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;
1966 FLAC__bool read_little_endian_uint32(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn)
1968 size_t bytes_read = fread(val, 1, 4, f);
1970 if(bytes_read == 0) {
1972 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
1978 else if(bytes_read < 4) {
1979 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
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;
1993 read_big_endian_uint16(FILE *f, FLAC__uint16 *val, FLAC__bool eof_ok, const char *fn)
1995 unsigned char buf[4];
1996 size_t bytes_read= fread(buf, 1, 2, f);
1998 if(bytes_read==0U && eof_ok)
2000 else if(bytes_read<2U) {
2001 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
2005 /* this is independent of host endianness */
2006 *val= (FLAC__uint16)(buf[0])<<8 | buf[1];
2012 read_big_endian_uint32(FILE *f, FLAC__uint32 *val, FLAC__bool eof_ok, const char *fn)
2014 unsigned char buf[4];
2015 size_t bytes_read= fread(buf, 1, 4, f);
2017 if(bytes_read==0U && eof_ok)
2019 else if(bytes_read<4U) {
2020 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
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];
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.
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;
2047 if(bytes_read==0U && eof_ok)
2049 else if(bytes_read<10U) {
2050 fprintf(stderr, "%s: ERROR: unexpected EOF\n", fn);
2053 else if((buf[0]>>7)==1U || e<0 || e>63) {
2054 fprintf(stderr, "%s: ERROR: invalid floating-point value\n", fn);
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));