1 /* libFLAC - Free Lossless Audio Codec library
2 * Copyright (C) 2000,2001,2002,2003 Josh Coalson
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * - Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * - Neither the name of the Xiph.org Foundation nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #include <stdlib.h> /* for malloc() */
34 #include <string.h> /* for memset/memcpy() */
35 #include "FLAC/assert.h"
36 #include "protected/stream_decoder.h"
37 #include "private/bitbuffer.h"
38 #include "private/bitmath.h"
39 #include "private/cpu.h"
40 #include "private/crc.h"
41 #include "private/fixed.h"
42 #include "private/format.h"
43 #include "private/lpc.h"
52 #define max(a,b) ((a)>(b)?(a):(b))
54 /***********************************************************************
58 ***********************************************************************/
60 static FLAC__byte ID3V2_TAG_[3] = { 'I', 'D', '3' };
62 /***********************************************************************
64 * Private class method prototypes
66 ***********************************************************************/
68 static void set_defaults_(FLAC__StreamDecoder *decoder);
69 static FLAC__bool allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels);
70 static FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id);
71 static FLAC__bool find_metadata_(FLAC__StreamDecoder *decoder);
72 static FLAC__bool read_metadata_(FLAC__StreamDecoder *decoder);
73 static FLAC__bool read_metadata_streaminfo_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsigned length);
74 static FLAC__bool read_metadata_seektable_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsigned length);
75 static FLAC__bool read_metadata_vorbiscomment_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_VorbisComment *obj);
76 static FLAC__bool read_metadata_cuesheet_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_CueSheet *obj);
77 static FLAC__bool skip_id3v2_tag_(FLAC__StreamDecoder *decoder);
78 static FLAC__bool frame_sync_(FLAC__StreamDecoder *decoder);
79 static FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame);
80 static FLAC__bool read_frame_header_(FLAC__StreamDecoder *decoder);
81 static FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
82 static FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
83 static FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order);
84 static FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order);
85 static FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
86 static FLAC__bool read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, unsigned partition_order, FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents, FLAC__int32 *residual);
87 static FLAC__bool read_zero_padding_(FLAC__StreamDecoder *decoder);
88 static FLAC__bool read_callback_(FLAC__byte buffer[], unsigned *bytes, void *client_data);
90 /***********************************************************************
94 ***********************************************************************/
96 typedef struct FLAC__StreamDecoderPrivate {
97 FLAC__StreamDecoderReadCallback read_callback;
98 FLAC__StreamDecoderWriteCallback write_callback;
99 FLAC__StreamDecoderMetadataCallback metadata_callback;
100 FLAC__StreamDecoderErrorCallback error_callback;
101 void (*local_lpc_restore_signal)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
102 void (*local_lpc_restore_signal_64bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
103 void (*local_lpc_restore_signal_16bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
105 FLAC__BitBuffer *input;
106 FLAC__int32 *output[FLAC__MAX_CHANNELS];
107 FLAC__int32 *residual[FLAC__MAX_CHANNELS];
108 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents[FLAC__MAX_CHANNELS];
109 unsigned output_capacity, output_channels;
110 FLAC__uint32 last_frame_number;
111 FLAC__uint64 samples_decoded;
112 FLAC__bool has_stream_info, has_seek_table;
113 FLAC__StreamMetadata stream_info;
114 FLAC__StreamMetadata seek_table;
115 FLAC__bool metadata_filter[128]; /* MAGIC number 128 == total number of metadata block types == 1 << 7 */
116 FLAC__byte *metadata_filter_ids;
117 unsigned metadata_filter_ids_count, metadata_filter_ids_capacity; /* units for both are IDs, not bytes */
119 FLAC__bool cached; /* true if there is a byte in lookahead */
120 FLAC__CPUInfo cpuinfo;
121 FLAC__byte header_warmup[2]; /* contains the sync code and reserved bits */
122 FLAC__byte lookahead; /* temp storage when we need to look ahead one byte in the stream */
123 } FLAC__StreamDecoderPrivate;
125 /***********************************************************************
127 * Public static class data
129 ***********************************************************************/
131 FLAC_API const char * const FLAC__StreamDecoderStateString[] = {
132 "FLAC__STREAM_DECODER_SEARCH_FOR_METADATA",
133 "FLAC__STREAM_DECODER_READ_METADATA",
134 "FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC",
135 "FLAC__STREAM_DECODER_READ_FRAME",
136 "FLAC__STREAM_DECODER_END_OF_STREAM",
137 "FLAC__STREAM_DECODER_ABORTED",
138 "FLAC__STREAM_DECODER_UNPARSEABLE_STREAM",
139 "FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR",
140 "FLAC__STREAM_DECODER_ALREADY_INITIALIZED",
141 "FLAC__STREAM_DECODER_INVALID_CALLBACK",
142 "FLAC__STREAM_DECODER_UNINITIALIZED"
145 FLAC_API const char * const FLAC__StreamDecoderReadStatusString[] = {
146 "FLAC__STREAM_DECODER_READ_STATUS_CONTINUE",
147 "FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM",
148 "FLAC__STREAM_DECODER_READ_STATUS_ABORT"
151 FLAC_API const char * const FLAC__StreamDecoderWriteStatusString[] = {
152 "FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE",
153 "FLAC__STREAM_DECODER_WRITE_STATUS_ABORT"
156 FLAC_API const char * const FLAC__StreamDecoderErrorStatusString[] = {
157 "FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC",
158 "FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER",
159 "FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH"
162 /***********************************************************************
164 * Class constructor/destructor
166 ***********************************************************************/
167 FLAC_API FLAC__StreamDecoder *FLAC__stream_decoder_new()
169 FLAC__StreamDecoder *decoder;
172 FLAC__ASSERT(sizeof(int) >= 4); /* we want to die right away if this is not true */
174 decoder = (FLAC__StreamDecoder*)calloc(1, sizeof(FLAC__StreamDecoder));
179 decoder->protected_ = (FLAC__StreamDecoderProtected*)calloc(1, sizeof(FLAC__StreamDecoderProtected));
180 if(decoder->protected_ == 0) {
185 decoder->private_ = (FLAC__StreamDecoderPrivate*)calloc(1, sizeof(FLAC__StreamDecoderPrivate));
186 if(decoder->private_ == 0) {
187 free(decoder->protected_);
192 decoder->private_->input = FLAC__bitbuffer_new();
193 if(decoder->private_->input == 0) {
194 free(decoder->private_);
195 free(decoder->protected_);
200 decoder->private_->metadata_filter_ids_capacity = 16;
201 if(0 == (decoder->private_->metadata_filter_ids = (FLAC__byte*)malloc((FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8) * decoder->private_->metadata_filter_ids_capacity))) {
202 FLAC__bitbuffer_delete(decoder->private_->input);
203 free(decoder->private_);
204 free(decoder->protected_);
209 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
210 decoder->private_->output[i] = 0;
211 decoder->private_->residual[i] = 0;
214 decoder->private_->output_capacity = 0;
215 decoder->private_->output_channels = 0;
216 decoder->private_->has_seek_table = false;
218 for(i = 0; i < FLAC__MAX_CHANNELS; i++)
219 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&decoder->private_->partitioned_rice_contents[i]);
221 set_defaults_(decoder);
223 decoder->protected_->state = FLAC__STREAM_DECODER_UNINITIALIZED;
228 FLAC_API void FLAC__stream_decoder_delete(FLAC__StreamDecoder *decoder)
232 FLAC__ASSERT(0 != decoder);
233 FLAC__ASSERT(0 != decoder->protected_);
234 FLAC__ASSERT(0 != decoder->private_);
235 FLAC__ASSERT(0 != decoder->private_->input);
237 FLAC__stream_decoder_finish(decoder);
239 if(0 != decoder->private_->metadata_filter_ids)
240 free(decoder->private_->metadata_filter_ids);
242 FLAC__bitbuffer_delete(decoder->private_->input);
244 for(i = 0; i < FLAC__MAX_CHANNELS; i++)
245 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&decoder->private_->partitioned_rice_contents[i]);
247 free(decoder->private_);
248 free(decoder->protected_);
252 /***********************************************************************
254 * Public class methods
256 ***********************************************************************/
258 FLAC_API FLAC__StreamDecoderState FLAC__stream_decoder_init(FLAC__StreamDecoder *decoder)
260 FLAC__ASSERT(0 != decoder);
262 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
263 return decoder->protected_->state = FLAC__STREAM_DECODER_ALREADY_INITIALIZED;
265 if(0 == decoder->private_->read_callback || 0 == decoder->private_->write_callback || 0 == decoder->private_->metadata_callback || 0 == decoder->private_->error_callback)
266 return decoder->protected_->state = FLAC__STREAM_DECODER_INVALID_CALLBACK;
268 if(!FLAC__bitbuffer_init(decoder->private_->input))
269 return decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
271 decoder->private_->last_frame_number = 0;
272 decoder->private_->samples_decoded = 0;
273 decoder->private_->has_stream_info = false;
274 decoder->private_->cached = false;
277 * get the CPU info and set the function pointers
279 FLAC__cpu_info(&decoder->private_->cpuinfo);
280 /* first default to the non-asm routines */
281 decoder->private_->local_lpc_restore_signal = FLAC__lpc_restore_signal;
282 decoder->private_->local_lpc_restore_signal_64bit = FLAC__lpc_restore_signal_wide;
283 decoder->private_->local_lpc_restore_signal_16bit = FLAC__lpc_restore_signal;
284 /* now override with asm where appropriate */
286 if(decoder->private_->cpuinfo.use_asm) {
287 #ifdef FLAC__CPU_IA32
288 FLAC__ASSERT(decoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
289 #ifdef FLAC__HAS_NASM
290 if(decoder->private_->cpuinfo.data.ia32.mmx) {
291 decoder->private_->local_lpc_restore_signal = FLAC__lpc_restore_signal_asm_ia32;
292 decoder->private_->local_lpc_restore_signal_16bit = FLAC__lpc_restore_signal_asm_ia32_mmx;
295 decoder->private_->local_lpc_restore_signal = FLAC__lpc_restore_signal_asm_ia32;
296 decoder->private_->local_lpc_restore_signal_16bit = FLAC__lpc_restore_signal_asm_ia32;
303 if(!FLAC__stream_decoder_reset(decoder))
304 return decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
306 return decoder->protected_->state;
309 FLAC_API void FLAC__stream_decoder_finish(FLAC__StreamDecoder *decoder)
312 FLAC__ASSERT(0 != decoder);
313 if(decoder->protected_->state == FLAC__STREAM_DECODER_UNINITIALIZED)
315 if(0 != decoder->private_->seek_table.data.seek_table.points) {
316 free(decoder->private_->seek_table.data.seek_table.points);
317 decoder->private_->seek_table.data.seek_table.points = 0;
318 decoder->private_->has_seek_table = false;
320 FLAC__bitbuffer_free(decoder->private_->input);
321 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
323 * FLAC__lpc_restore_signal_asm_ia32_mmx() requires that the
324 * output arrays have a buffer of up to 3 zeroes in front
325 * (at negative indices) for alignment purposes; we use 4
326 * to keep the data well-aligned.
328 if(0 != decoder->private_->output[i]) {
329 free(decoder->private_->output[i]-4);
330 decoder->private_->output[i] = 0;
332 if(0 != decoder->private_->residual[i]) {
333 free(decoder->private_->residual[i]);
334 decoder->private_->residual[i] = 0;
337 decoder->private_->output_capacity = 0;
338 decoder->private_->output_channels = 0;
340 set_defaults_(decoder);
342 decoder->protected_->state = FLAC__STREAM_DECODER_UNINITIALIZED;
345 FLAC_API FLAC__bool FLAC__stream_decoder_set_read_callback(FLAC__StreamDecoder *decoder, FLAC__StreamDecoderReadCallback value)
347 FLAC__ASSERT(0 != decoder);
348 FLAC__ASSERT(0 != decoder->private_);
349 FLAC__ASSERT(0 != decoder->protected_);
350 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
352 decoder->private_->read_callback = value;
356 FLAC_API FLAC__bool FLAC__stream_decoder_set_write_callback(FLAC__StreamDecoder *decoder, FLAC__StreamDecoderWriteCallback value)
358 FLAC__ASSERT(0 != decoder);
359 FLAC__ASSERT(0 != decoder->private_);
360 FLAC__ASSERT(0 != decoder->protected_);
361 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
363 decoder->private_->write_callback = value;
367 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_callback(FLAC__StreamDecoder *decoder, FLAC__StreamDecoderMetadataCallback value)
369 FLAC__ASSERT(0 != decoder);
370 FLAC__ASSERT(0 != decoder->private_);
371 FLAC__ASSERT(0 != decoder->protected_);
372 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
374 decoder->private_->metadata_callback = value;
378 FLAC_API FLAC__bool FLAC__stream_decoder_set_error_callback(FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorCallback value)
380 FLAC__ASSERT(0 != decoder);
381 FLAC__ASSERT(0 != decoder->private_);
382 FLAC__ASSERT(0 != decoder->protected_);
383 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
385 decoder->private_->error_callback = value;
389 FLAC_API FLAC__bool FLAC__stream_decoder_set_client_data(FLAC__StreamDecoder *decoder, void *value)
391 FLAC__ASSERT(0 != decoder);
392 FLAC__ASSERT(0 != decoder->private_);
393 FLAC__ASSERT(0 != decoder->protected_);
394 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
396 decoder->private_->client_data = value;
400 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond(FLAC__StreamDecoder *decoder, FLAC__MetadataType type)
402 FLAC__ASSERT(0 != decoder);
403 FLAC__ASSERT(0 != decoder->private_);
404 FLAC__ASSERT(0 != decoder->protected_);
405 FLAC__ASSERT((unsigned)type < (1u << FLAC__STREAM_METADATA_TYPE_LEN));
406 /* double protection */
407 if((unsigned)type >= (1u << FLAC__STREAM_METADATA_TYPE_LEN))
409 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
411 decoder->private_->metadata_filter[type] = true;
412 if(type == FLAC__METADATA_TYPE_APPLICATION)
413 decoder->private_->metadata_filter_ids_count = 0;
417 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4])
419 FLAC__ASSERT(0 != decoder);
420 FLAC__ASSERT(0 != decoder->private_);
421 FLAC__ASSERT(0 != decoder->protected_);
422 FLAC__ASSERT(0 != id);
423 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
426 if(decoder->private_->metadata_filter[FLAC__METADATA_TYPE_APPLICATION])
429 FLAC__ASSERT(0 != decoder->private_->metadata_filter_ids);
431 if(decoder->private_->metadata_filter_ids_count == decoder->private_->metadata_filter_ids_capacity) {
432 if(0 == (decoder->private_->metadata_filter_ids = (FLAC__byte*)realloc(decoder->private_->metadata_filter_ids, decoder->private_->metadata_filter_ids_capacity * 2)))
433 return decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
434 decoder->private_->metadata_filter_ids_capacity *= 2;
437 memcpy(decoder->private_->metadata_filter_ids + decoder->private_->metadata_filter_ids_count * (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8), id, (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8));
438 decoder->private_->metadata_filter_ids_count++;
443 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond_all(FLAC__StreamDecoder *decoder)
446 FLAC__ASSERT(0 != decoder);
447 FLAC__ASSERT(0 != decoder->private_);
448 FLAC__ASSERT(0 != decoder->protected_);
449 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
451 for(i = 0; i < sizeof(decoder->private_->metadata_filter) / sizeof(decoder->private_->metadata_filter[0]); i++)
452 decoder->private_->metadata_filter[i] = true;
453 decoder->private_->metadata_filter_ids_count = 0;
457 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore(FLAC__StreamDecoder *decoder, FLAC__MetadataType type)
459 FLAC__ASSERT(0 != decoder);
460 FLAC__ASSERT(0 != decoder->private_);
461 FLAC__ASSERT(0 != decoder->protected_);
462 FLAC__ASSERT((unsigned)type < (1u << FLAC__STREAM_METADATA_TYPE_LEN));
463 /* double protection */
464 if((unsigned)type >= (1u << FLAC__STREAM_METADATA_TYPE_LEN))
466 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
468 decoder->private_->metadata_filter[type] = false;
469 if(type == FLAC__METADATA_TYPE_APPLICATION)
470 decoder->private_->metadata_filter_ids_count = 0;
474 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4])
476 FLAC__ASSERT(0 != decoder);
477 FLAC__ASSERT(0 != decoder->private_);
478 FLAC__ASSERT(0 != decoder->protected_);
479 FLAC__ASSERT(0 != id);
480 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
483 if(!decoder->private_->metadata_filter[FLAC__METADATA_TYPE_APPLICATION])
486 FLAC__ASSERT(0 != decoder->private_->metadata_filter_ids);
488 if(decoder->private_->metadata_filter_ids_count == decoder->private_->metadata_filter_ids_capacity) {
489 if(0 == (decoder->private_->metadata_filter_ids = (FLAC__byte*)realloc(decoder->private_->metadata_filter_ids, decoder->private_->metadata_filter_ids_capacity * 2)))
490 return decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
491 decoder->private_->metadata_filter_ids_capacity *= 2;
494 memcpy(decoder->private_->metadata_filter_ids + decoder->private_->metadata_filter_ids_count * (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8), id, (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8));
495 decoder->private_->metadata_filter_ids_count++;
500 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore_all(FLAC__StreamDecoder *decoder)
502 FLAC__ASSERT(0 != decoder);
503 FLAC__ASSERT(0 != decoder->private_);
504 FLAC__ASSERT(0 != decoder->protected_);
505 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
507 memset(decoder->private_->metadata_filter, 0, sizeof(decoder->private_->metadata_filter));
508 decoder->private_->metadata_filter_ids_count = 0;
512 FLAC_API FLAC__StreamDecoderState FLAC__stream_decoder_get_state(const FLAC__StreamDecoder *decoder)
514 FLAC__ASSERT(0 != decoder);
515 FLAC__ASSERT(0 != decoder->protected_);
516 return decoder->protected_->state;
519 FLAC_API const char *FLAC__stream_decoder_get_resolved_state_string(const FLAC__StreamDecoder *decoder)
521 return FLAC__StreamDecoderStateString[decoder->protected_->state];
524 FLAC_API unsigned FLAC__stream_decoder_get_channels(const FLAC__StreamDecoder *decoder)
526 FLAC__ASSERT(0 != decoder);
527 FLAC__ASSERT(0 != decoder->protected_);
528 return decoder->protected_->channels;
531 FLAC_API FLAC__ChannelAssignment FLAC__stream_decoder_get_channel_assignment(const FLAC__StreamDecoder *decoder)
533 FLAC__ASSERT(0 != decoder);
534 FLAC__ASSERT(0 != decoder->protected_);
535 return decoder->protected_->channel_assignment;
538 FLAC_API unsigned FLAC__stream_decoder_get_bits_per_sample(const FLAC__StreamDecoder *decoder)
540 FLAC__ASSERT(0 != decoder);
541 FLAC__ASSERT(0 != decoder->protected_);
542 return decoder->protected_->bits_per_sample;
545 FLAC_API unsigned FLAC__stream_decoder_get_sample_rate(const FLAC__StreamDecoder *decoder)
547 FLAC__ASSERT(0 != decoder);
548 FLAC__ASSERT(0 != decoder->protected_);
549 return decoder->protected_->sample_rate;
552 FLAC_API unsigned FLAC__stream_decoder_get_blocksize(const FLAC__StreamDecoder *decoder)
554 FLAC__ASSERT(0 != decoder);
555 FLAC__ASSERT(0 != decoder->protected_);
556 return decoder->protected_->blocksize;
559 FLAC_API FLAC__bool FLAC__stream_decoder_flush(FLAC__StreamDecoder *decoder)
561 FLAC__ASSERT(0 != decoder);
562 FLAC__ASSERT(0 != decoder->private_);
563 FLAC__ASSERT(0 != decoder->protected_);
565 if(!FLAC__bitbuffer_clear(decoder->private_->input)) {
566 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
569 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
574 FLAC_API FLAC__bool FLAC__stream_decoder_reset(FLAC__StreamDecoder *decoder)
576 FLAC__ASSERT(0 != decoder);
577 FLAC__ASSERT(0 != decoder->private_);
578 FLAC__ASSERT(0 != decoder->protected_);
580 if(!FLAC__stream_decoder_flush(decoder)) {
581 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
584 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_METADATA;
586 decoder->private_->samples_decoded = 0;
591 FLAC_API FLAC__bool FLAC__stream_decoder_process_single(FLAC__StreamDecoder *decoder)
593 FLAC__bool got_a_frame;
594 FLAC__ASSERT(0 != decoder);
595 FLAC__ASSERT(0 != decoder->protected_);
598 switch(decoder->protected_->state) {
599 case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
600 if(!find_metadata_(decoder))
601 return false; /* above function sets the status for us */
603 case FLAC__STREAM_DECODER_READ_METADATA:
604 if(!read_metadata_(decoder))
605 return false; /* above function sets the status for us */
608 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
609 if(!frame_sync_(decoder))
610 return true; /* above function sets the status for us */
612 case FLAC__STREAM_DECODER_READ_FRAME:
613 if(!read_frame_(decoder, &got_a_frame))
614 return false; /* above function sets the status for us */
616 return true; /* above function sets the status for us */
618 case FLAC__STREAM_DECODER_END_OF_STREAM:
619 case FLAC__STREAM_DECODER_ABORTED:
628 FLAC_API FLAC__bool FLAC__stream_decoder_process_until_end_of_metadata(FLAC__StreamDecoder *decoder)
630 FLAC__ASSERT(0 != decoder);
631 FLAC__ASSERT(0 != decoder->protected_);
634 switch(decoder->protected_->state) {
635 case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
636 if(!find_metadata_(decoder))
637 return false; /* above function sets the status for us */
639 case FLAC__STREAM_DECODER_READ_METADATA:
640 if(!read_metadata_(decoder))
641 return false; /* above function sets the status for us */
643 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
644 case FLAC__STREAM_DECODER_READ_FRAME:
645 case FLAC__STREAM_DECODER_END_OF_STREAM:
646 case FLAC__STREAM_DECODER_ABORTED:
655 FLAC_API FLAC__bool FLAC__stream_decoder_process_until_end_of_stream(FLAC__StreamDecoder *decoder)
658 FLAC__ASSERT(0 != decoder);
659 FLAC__ASSERT(0 != decoder->protected_);
662 switch(decoder->protected_->state) {
663 case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
664 if(!find_metadata_(decoder))
665 return false; /* above function sets the status for us */
667 case FLAC__STREAM_DECODER_READ_METADATA:
668 if(!read_metadata_(decoder))
669 return false; /* above function sets the status for us */
671 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
672 if(!frame_sync_(decoder))
673 return true; /* above function sets the status for us */
675 case FLAC__STREAM_DECODER_READ_FRAME:
676 if(!read_frame_(decoder, &dummy))
677 return false; /* above function sets the status for us */
679 case FLAC__STREAM_DECODER_END_OF_STREAM:
680 case FLAC__STREAM_DECODER_ABORTED:
689 /***********************************************************************
691 * Protected class methods
693 ***********************************************************************/
695 unsigned FLAC__stream_decoder_get_input_bytes_unconsumed(const FLAC__StreamDecoder *decoder)
697 FLAC__ASSERT(0 != decoder);
698 return FLAC__bitbuffer_get_input_bytes_unconsumed(decoder->private_->input);
701 /***********************************************************************
703 * Private class methods
705 ***********************************************************************/
707 void set_defaults_(FLAC__StreamDecoder *decoder)
709 decoder->private_->read_callback = 0;
710 decoder->private_->write_callback = 0;
711 decoder->private_->metadata_callback = 0;
712 decoder->private_->error_callback = 0;
713 decoder->private_->client_data = 0;
715 memset(decoder->private_->metadata_filter, 0, sizeof(decoder->private_->metadata_filter));
716 decoder->private_->metadata_filter[FLAC__METADATA_TYPE_STREAMINFO] = true;
717 decoder->private_->metadata_filter_ids_count = 0;
720 FLAC__bool allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels)
725 if(size <= decoder->private_->output_capacity && channels <= decoder->private_->output_channels)
728 /* simply using realloc() is not practical because the number of channels may change mid-stream */
730 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
731 if(0 != decoder->private_->output[i]) {
732 free(decoder->private_->output[i]-4);
733 decoder->private_->output[i] = 0;
735 if(0 != decoder->private_->residual[i]) {
736 free(decoder->private_->residual[i]);
737 decoder->private_->residual[i] = 0;
741 for(i = 0; i < channels; i++) {
743 * FLAC__lpc_restore_signal_asm_ia32_mmx() requires that the
744 * output arrays have a buffer of up to 3 zeroes in front
745 * (at negative indices) for alignment purposes; we use 4
746 * to keep the data well-aligned.
748 tmp = (FLAC__int32*)malloc(sizeof(FLAC__int32)*(size+4));
750 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
753 memset(tmp, 0, sizeof(FLAC__int32)*4);
754 decoder->private_->output[i] = tmp + 4;
756 tmp = (FLAC__int32*)malloc(sizeof(FLAC__int32)*size);
758 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
761 decoder->private_->residual[i] = tmp;
764 decoder->private_->output_capacity = size;
765 decoder->private_->output_channels = channels;
770 FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id)
774 FLAC__ASSERT(0 != decoder);
775 FLAC__ASSERT(0 != decoder->private_);
777 for(i = 0; i < decoder->private_->metadata_filter_ids_count; i++)
778 if(0 == memcmp(decoder->private_->metadata_filter_ids + i * (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8), id, (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8)))
784 FLAC__bool find_metadata_(FLAC__StreamDecoder *decoder)
788 FLAC__bool first = true;
790 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
792 for(i = id = 0; i < 4; ) {
793 if(decoder->private_->cached) {
794 x = (FLAC__uint32)decoder->private_->lookahead;
795 decoder->private_->cached = false;
798 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
799 return false; /* the read_callback_ sets the state for us */
801 if(x == FLAC__STREAM_SYNC_STRING[i]) {
807 if(x == ID3V2_TAG_[id]) {
811 if(!skip_id3v2_tag_(decoder))
812 return false; /* the read_callback_ sets the state for us */
816 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
817 decoder->private_->header_warmup[0] = (FLAC__byte)x;
818 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
819 return false; /* the read_callback_ sets the state for us */
821 /* we have to check if we just read two 0xff's in a row; the second may actually be the beginning of the sync code */
822 /* else we have to check if the second byte is the end of a sync code */
823 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
824 decoder->private_->lookahead = (FLAC__byte)x;
825 decoder->private_->cached = true;
827 else if(x >> 2 == 0x3e) { /* MAGIC NUMBER for the last 6 sync bits */
828 decoder->private_->header_warmup[1] = (FLAC__byte)x;
829 decoder->protected_->state = FLAC__STREAM_DECODER_READ_FRAME;
835 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
840 decoder->protected_->state = FLAC__STREAM_DECODER_READ_METADATA;
844 FLAC__bool read_metadata_(FLAC__StreamDecoder *decoder)
847 FLAC__uint32 i, x, type, length;
849 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
851 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_IS_LAST_LEN, read_callback_, decoder))
852 return false; /* the read_callback_ sets the state for us */
853 is_last = x? true : false;
855 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &type, FLAC__STREAM_METADATA_TYPE_LEN, read_callback_, decoder))
856 return false; /* the read_callback_ sets the state for us */
858 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &length, FLAC__STREAM_METADATA_LENGTH_LEN, read_callback_, decoder))
859 return false; /* the read_callback_ sets the state for us */
861 if(type == FLAC__METADATA_TYPE_STREAMINFO) {
862 if(!read_metadata_streaminfo_(decoder, is_last, length))
865 decoder->private_->has_stream_info = true;
866 if(decoder->private_->metadata_filter[FLAC__METADATA_TYPE_STREAMINFO])
867 decoder->private_->metadata_callback(decoder, &decoder->private_->stream_info, decoder->private_->client_data);
869 else if(type == FLAC__METADATA_TYPE_SEEKTABLE) {
870 if(!read_metadata_seektable_(decoder, is_last, length))
873 decoder->private_->has_seek_table = true;
874 if(decoder->private_->metadata_filter[FLAC__METADATA_TYPE_SEEKTABLE])
875 decoder->private_->metadata_callback(decoder, &decoder->private_->seek_table, decoder->private_->client_data);
878 FLAC__bool skip_it = !decoder->private_->metadata_filter[type];
879 unsigned real_length = length;
880 FLAC__StreamMetadata block;
882 block.is_last = is_last;
883 block.type = (FLAC__MetadataType)type;
884 block.length = length;
886 if(type == FLAC__METADATA_TYPE_APPLICATION) {
887 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, block.data.application.id, FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8, read_callback_, decoder))
888 return false; /* the read_callback_ sets the state for us */
890 real_length -= FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8;
892 if(decoder->private_->metadata_filter_ids_count > 0 && has_id_filtered_(decoder, block.data.application.id))
897 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, 0, real_length, read_callback_, decoder))
898 return false; /* the read_callback_ sets the state for us */
902 case FLAC__METADATA_TYPE_PADDING:
903 /* skip the padding bytes */
904 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, 0, real_length, read_callback_, decoder))
905 return false; /* the read_callback_ sets the state for us */
907 case FLAC__METADATA_TYPE_APPLICATION:
908 /* remember, we read the ID already */
909 if(real_length > 0) {
910 if(0 == (block.data.application.data = (FLAC__byte*)malloc(real_length))) {
911 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
914 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, block.data.application.data, real_length, read_callback_, decoder))
915 return false; /* the read_callback_ sets the state for us */
918 block.data.application.data = 0;
920 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
921 if(!read_metadata_vorbiscomment_(decoder, &block.data.vorbis_comment))
924 case FLAC__METADATA_TYPE_CUESHEET:
925 if(!read_metadata_cuesheet_(decoder, &block.data.cue_sheet))
928 case FLAC__METADATA_TYPE_STREAMINFO:
929 case FLAC__METADATA_TYPE_SEEKTABLE:
933 if(real_length > 0) {
934 if(0 == (block.data.unknown.data = (FLAC__byte*)malloc(real_length))) {
935 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
938 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, block.data.unknown.data, real_length, read_callback_, decoder))
939 return false; /* the read_callback_ sets the state for us */
942 block.data.unknown.data = 0;
945 decoder->private_->metadata_callback(decoder, &block, decoder->private_->client_data);
947 /* now we have to free any malloc'ed data in the block */
949 case FLAC__METADATA_TYPE_PADDING:
951 case FLAC__METADATA_TYPE_APPLICATION:
952 if(0 != block.data.application.data)
953 free(block.data.application.data);
955 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
956 if(0 != block.data.vorbis_comment.vendor_string.entry)
957 free(block.data.vorbis_comment.vendor_string.entry);
958 if(block.data.vorbis_comment.num_comments > 0)
959 for(i = 0; i < block.data.vorbis_comment.num_comments; i++)
960 if(0 != block.data.vorbis_comment.comments[i].entry)
961 free(block.data.vorbis_comment.comments[i].entry);
962 if(0 != block.data.vorbis_comment.comments)
963 free(block.data.vorbis_comment.comments);
965 case FLAC__METADATA_TYPE_CUESHEET:
966 if(block.data.cue_sheet.num_tracks > 0)
967 for(i = 0; i < block.data.cue_sheet.num_tracks; i++)
968 if(0 != block.data.cue_sheet.tracks[i].indices)
969 free(block.data.cue_sheet.tracks[i].indices);
970 if(0 != block.data.cue_sheet.tracks)
971 free(block.data.cue_sheet.tracks);
973 case FLAC__METADATA_TYPE_STREAMINFO:
974 case FLAC__METADATA_TYPE_SEEKTABLE:
977 if(0 != block.data.unknown.data)
978 free(block.data.unknown.data);
985 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
990 FLAC__bool read_metadata_streaminfo_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsigned length)
993 unsigned bits, used_bits = 0;
995 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
997 decoder->private_->stream_info.type = FLAC__METADATA_TYPE_STREAMINFO;
998 decoder->private_->stream_info.is_last = is_last;
999 decoder->private_->stream_info.length = length;
1001 bits = FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN;
1002 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, bits, read_callback_, decoder))
1003 return false; /* the read_callback_ sets the state for us */
1004 decoder->private_->stream_info.data.stream_info.min_blocksize = x;
1007 bits = FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN;
1008 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN, read_callback_, decoder))
1009 return false; /* the read_callback_ sets the state for us */
1010 decoder->private_->stream_info.data.stream_info.max_blocksize = x;
1013 bits = FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN;
1014 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN, read_callback_, decoder))
1015 return false; /* the read_callback_ sets the state for us */
1016 decoder->private_->stream_info.data.stream_info.min_framesize = x;
1019 bits = FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN;
1020 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN, read_callback_, decoder))
1021 return false; /* the read_callback_ sets the state for us */
1022 decoder->private_->stream_info.data.stream_info.max_framesize = x;
1025 bits = FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN;
1026 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN, read_callback_, decoder))
1027 return false; /* the read_callback_ sets the state for us */
1028 decoder->private_->stream_info.data.stream_info.sample_rate = x;
1031 bits = FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN;
1032 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN, read_callback_, decoder))
1033 return false; /* the read_callback_ sets the state for us */
1034 decoder->private_->stream_info.data.stream_info.channels = x+1;
1037 bits = FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN;
1038 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN, read_callback_, decoder))
1039 return false; /* the read_callback_ sets the state for us */
1040 decoder->private_->stream_info.data.stream_info.bits_per_sample = x+1;
1043 bits = FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN;
1044 if(!FLAC__bitbuffer_read_raw_uint64(decoder->private_->input, &decoder->private_->stream_info.data.stream_info.total_samples, FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN, read_callback_, decoder))
1045 return false; /* the read_callback_ sets the state for us */
1048 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, decoder->private_->stream_info.data.stream_info.md5sum, 16, read_callback_, decoder))
1049 return false; /* the read_callback_ sets the state for us */
1052 /* skip the rest of the block */
1053 FLAC__ASSERT(used_bits % 8 == 0);
1054 length -= (used_bits / 8);
1055 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, 0, length, read_callback_, decoder))
1056 return false; /* the read_callback_ sets the state for us */
1061 FLAC__bool read_metadata_seektable_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsigned length)
1066 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
1068 decoder->private_->seek_table.type = FLAC__METADATA_TYPE_SEEKTABLE;
1069 decoder->private_->seek_table.is_last = is_last;
1070 decoder->private_->seek_table.length = length;
1072 decoder->private_->seek_table.data.seek_table.num_points = length / FLAC__STREAM_METADATA_SEEKPOINT_LENGTH;
1074 /* use realloc since we may pass through here several times (e.g. after seeking) */
1075 if(0 == (decoder->private_->seek_table.data.seek_table.points = (FLAC__StreamMetadata_SeekPoint*)realloc(decoder->private_->seek_table.data.seek_table.points, decoder->private_->seek_table.data.seek_table.num_points * sizeof(FLAC__StreamMetadata_SeekPoint)))) {
1076 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1079 for(i = 0; i < decoder->private_->seek_table.data.seek_table.num_points; i++) {
1080 if(!FLAC__bitbuffer_read_raw_uint64(decoder->private_->input, &xx, FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN, read_callback_, decoder))
1081 return false; /* the read_callback_ sets the state for us */
1082 decoder->private_->seek_table.data.seek_table.points[i].sample_number = xx;
1084 if(!FLAC__bitbuffer_read_raw_uint64(decoder->private_->input, &xx, FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN, read_callback_, decoder))
1085 return false; /* the read_callback_ sets the state for us */
1086 decoder->private_->seek_table.data.seek_table.points[i].stream_offset = xx;
1088 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN, read_callback_, decoder))
1089 return false; /* the read_callback_ sets the state for us */
1090 decoder->private_->seek_table.data.seek_table.points[i].frame_samples = x;
1092 length -= (decoder->private_->seek_table.data.seek_table.num_points * FLAC__STREAM_METADATA_SEEKPOINT_LENGTH);
1093 /* if there is a partial point left, skip over it */
1095 /*@@@ do an error_callback() here? there's an argument for either way */
1096 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, 0, length, read_callback_, decoder))
1097 return false; /* the read_callback_ sets the state for us */
1103 FLAC__bool read_metadata_vorbiscomment_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_VorbisComment *obj)
1107 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
1109 /* read vendor string */
1110 FLAC__ASSERT(FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN == 32);
1111 if(!FLAC__bitbuffer_read_raw_uint32_little_endian(decoder->private_->input, &obj->vendor_string.length, read_callback_, decoder))
1112 return false; /* the read_callback_ sets the state for us */
1113 if(obj->vendor_string.length > 0) {
1114 if(0 == (obj->vendor_string.entry = (FLAC__byte*)malloc(obj->vendor_string.length))) {
1115 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1118 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, obj->vendor_string.entry, obj->vendor_string.length, read_callback_, decoder))
1119 return false; /* the read_callback_ sets the state for us */
1122 obj->vendor_string.entry = 0;
1124 /* read num comments */
1125 FLAC__ASSERT(FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN == 32);
1126 if(!FLAC__bitbuffer_read_raw_uint32_little_endian(decoder->private_->input, &obj->num_comments, read_callback_, decoder))
1127 return false; /* the read_callback_ sets the state for us */
1130 if(obj->num_comments > 0) {
1131 if(0 == (obj->comments = (FLAC__StreamMetadata_VorbisComment_Entry*)malloc(obj->num_comments * sizeof(FLAC__StreamMetadata_VorbisComment_Entry)))) {
1132 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1135 for(i = 0; i < obj->num_comments; i++) {
1136 FLAC__ASSERT(FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN == 32);
1137 if(!FLAC__bitbuffer_read_raw_uint32_little_endian(decoder->private_->input, &obj->comments[i].length, read_callback_, decoder))
1138 return false; /* the read_callback_ sets the state for us */
1139 if(obj->comments[i].length > 0) {
1140 if(0 == (obj->comments[i].entry = (FLAC__byte*)malloc(obj->comments[i].length))) {
1141 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1144 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, obj->comments[i].entry, obj->comments[i].length, read_callback_, decoder))
1145 return false; /* the read_callback_ sets the state for us */
1148 obj->comments[i].entry = 0;
1158 FLAC__bool read_metadata_cuesheet_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_CueSheet *obj)
1160 FLAC__uint32 i, j, x;
1162 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
1164 memset(obj, 0, sizeof(FLAC__StreamMetadata_CueSheet));
1166 FLAC__ASSERT(FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN % 8 == 0);
1167 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)obj->media_catalog_number, FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN/8, read_callback_, decoder))
1168 return false; /* the read_callback_ sets the state for us */
1170 if(!FLAC__bitbuffer_read_raw_uint64(decoder->private_->input, &obj->lead_in, FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN, read_callback_, decoder))
1171 return false; /* the read_callback_ sets the state for us */
1173 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN, read_callback_, decoder))
1174 return false; /* the read_callback_ sets the state for us */
1175 obj->is_cd = x? true : false;
1177 if(!FLAC__bitbuffer_skip_bits_no_crc(decoder->private_->input, FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN, read_callback_, decoder))
1178 return false; /* the read_callback_ sets the state for us */
1180 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN, read_callback_, decoder))
1181 return false; /* the read_callback_ sets the state for us */
1182 obj->num_tracks = x;
1184 if(obj->num_tracks > 0) {
1185 if(0 == (obj->tracks = (FLAC__StreamMetadata_CueSheet_Track*)calloc(obj->num_tracks, sizeof(FLAC__StreamMetadata_CueSheet_Track)))) {
1186 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1189 for(i = 0; i < obj->num_tracks; i++) {
1190 FLAC__StreamMetadata_CueSheet_Track *track = &obj->tracks[i];
1191 if(!FLAC__bitbuffer_read_raw_uint64(decoder->private_->input, &track->offset, FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN, read_callback_, decoder))
1192 return false; /* the read_callback_ sets the state for us */
1194 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN, read_callback_, decoder))
1195 return false; /* the read_callback_ sets the state for us */
1196 track->number = (FLAC__byte)x;
1198 FLAC__ASSERT(FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN % 8 == 0);
1199 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)track->isrc, FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN/8, read_callback_, decoder))
1200 return false; /* the read_callback_ sets the state for us */
1202 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN, read_callback_, decoder))
1203 return false; /* the read_callback_ sets the state for us */
1206 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN, read_callback_, decoder))
1207 return false; /* the read_callback_ sets the state for us */
1208 track->pre_emphasis = x;
1210 if(!FLAC__bitbuffer_skip_bits_no_crc(decoder->private_->input, FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN, read_callback_, decoder))
1211 return false; /* the read_callback_ sets the state for us */
1213 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN, read_callback_, decoder))
1214 return false; /* the read_callback_ sets the state for us */
1215 track->num_indices = (FLAC__byte)x;
1217 if(track->num_indices > 0) {
1218 if(0 == (track->indices = (FLAC__StreamMetadata_CueSheet_Index*)calloc(track->num_indices, sizeof(FLAC__StreamMetadata_CueSheet_Index)))) {
1219 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1222 for(j = 0; j < track->num_indices; j++) {
1223 FLAC__StreamMetadata_CueSheet_Index *index = &track->indices[j];
1224 if(!FLAC__bitbuffer_read_raw_uint64(decoder->private_->input, &index->offset, FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN, read_callback_, decoder))
1225 return false; /* the read_callback_ sets the state for us */
1227 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN, read_callback_, decoder))
1228 return false; /* the read_callback_ sets the state for us */
1229 index->number = (FLAC__byte)x;
1231 if(!FLAC__bitbuffer_skip_bits_no_crc(decoder->private_->input, FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN, read_callback_, decoder))
1232 return false; /* the read_callback_ sets the state for us */
1241 FLAC__bool skip_id3v2_tag_(FLAC__StreamDecoder *decoder)
1246 /* skip the version and flags bytes */
1247 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 24, read_callback_, decoder))
1248 return false; /* the read_callback_ sets the state for us */
1249 /* get the size (in bytes) to skip */
1251 for(i = 0; i < 4; i++) {
1252 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1253 return false; /* the read_callback_ sets the state for us */
1257 /* skip the rest of the tag */
1258 if(!FLAC__bitbuffer_read_byte_block_aligned_no_crc(decoder->private_->input, 0, skip, read_callback_, decoder))
1259 return false; /* the read_callback_ sets the state for us */
1263 FLAC__bool frame_sync_(FLAC__StreamDecoder *decoder)
1266 FLAC__bool first = true;
1268 /* If we know the total number of samples in the stream, stop if we've read that many. */
1269 /* This will stop us, for example, from wasting time trying to sync on an ID3V1 tag. */
1270 if(decoder->private_->has_stream_info && decoder->private_->stream_info.data.stream_info.total_samples) {
1271 if(decoder->private_->samples_decoded >= decoder->private_->stream_info.data.stream_info.total_samples) {
1272 decoder->protected_->state = FLAC__STREAM_DECODER_END_OF_STREAM;
1277 /* make sure we're byte aligned */
1278 if(!FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input)) {
1279 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__bitbuffer_bits_left_for_byte_alignment(decoder->private_->input), read_callback_, decoder))
1280 return false; /* the read_callback_ sets the state for us */
1284 if(decoder->private_->cached) {
1285 x = (FLAC__uint32)decoder->private_->lookahead;
1286 decoder->private_->cached = false;
1289 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1290 return false; /* the read_callback_ sets the state for us */
1292 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
1293 decoder->private_->header_warmup[0] = (FLAC__byte)x;
1294 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1295 return false; /* the read_callback_ sets the state for us */
1297 /* we have to check if we just read two 0xff's in a row; the second may actually be the beginning of the sync code */
1298 /* else we have to check if the second byte is the end of a sync code */
1299 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
1300 decoder->private_->lookahead = (FLAC__byte)x;
1301 decoder->private_->cached = true;
1303 else if(x >> 2 == 0x3e) { /* MAGIC NUMBER for the last 6 sync bits */
1304 decoder->private_->header_warmup[1] = (FLAC__byte)x;
1305 decoder->protected_->state = FLAC__STREAM_DECODER_READ_FRAME;
1310 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
1318 FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame)
1322 FLAC__int32 mid, side, left, right;
1323 FLAC__uint16 frame_crc; /* the one we calculate from the input stream */
1326 *got_a_frame = false;
1330 FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc);
1331 FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc);
1332 FLAC__bitbuffer_reset_read_crc16(decoder->private_->input, frame_crc);
1334 if(!read_frame_header_(decoder))
1336 if(decoder->protected_->state == FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC)
1338 if(!allocate_output_(decoder, decoder->private_->frame.header.blocksize, decoder->private_->frame.header.channels))
1340 for(channel = 0; channel < decoder->private_->frame.header.channels; channel++) {
1342 * first figure the correct bits-per-sample of the subframe
1344 unsigned bps = decoder->private_->frame.header.bits_per_sample;
1345 switch(decoder->private_->frame.header.channel_assignment) {
1346 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
1347 /* no adjustment needed */
1349 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
1350 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1354 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
1355 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1359 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
1360 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1370 if(!read_subframe_(decoder, channel, bps))
1372 if(decoder->protected_->state != FLAC__STREAM_DECODER_READ_FRAME) {
1373 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1377 if(!read_zero_padding_(decoder))
1381 * Read the frame CRC-16 from the footer and check
1383 frame_crc = FLAC__bitbuffer_get_read_crc16(decoder->private_->input);
1384 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__FRAME_FOOTER_CRC_LEN, read_callback_, decoder))
1385 return false; /* the read_callback_ sets the state for us */
1386 if(frame_crc == (FLAC__uint16)x) {
1387 /* Undo any special channel coding */
1388 switch(decoder->private_->frame.header.channel_assignment) {
1389 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
1392 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
1393 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1394 for(i = 0; i < decoder->private_->frame.header.blocksize; i++)
1395 decoder->private_->output[1][i] = decoder->private_->output[0][i] - decoder->private_->output[1][i];
1397 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
1398 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1399 for(i = 0; i < decoder->private_->frame.header.blocksize; i++)
1400 decoder->private_->output[0][i] += decoder->private_->output[1][i];
1402 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
1403 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1404 for(i = 0; i < decoder->private_->frame.header.blocksize; i++) {
1405 mid = decoder->private_->output[0][i];
1406 side = decoder->private_->output[1][i];
1408 if(side & 1) /* i.e. if 'side' is odd... */
1412 decoder->private_->output[0][i] = left >> 1;
1413 decoder->private_->output[1][i] = right >> 1;
1422 /* Bad frame, emit error and zero the output signal */
1423 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH, decoder->private_->client_data);
1424 for(channel = 0; channel < decoder->private_->frame.header.channels; channel++) {
1425 memset(decoder->private_->output[channel], 0, sizeof(FLAC__int32) * decoder->private_->frame.header.blocksize);
1429 *got_a_frame = true;
1431 /* put the latest values into the public section of the decoder instance */
1432 decoder->protected_->channels = decoder->private_->frame.header.channels;
1433 decoder->protected_->channel_assignment = decoder->private_->frame.header.channel_assignment;
1434 decoder->protected_->bits_per_sample = decoder->private_->frame.header.bits_per_sample;
1435 decoder->protected_->sample_rate = decoder->private_->frame.header.sample_rate;
1436 decoder->protected_->blocksize = decoder->private_->frame.header.blocksize;
1438 FLAC__ASSERT(decoder->private_->frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER);
1439 decoder->private_->samples_decoded = decoder->private_->frame.header.number.sample_number + decoder->private_->frame.header.blocksize;
1442 if(decoder->private_->write_callback(decoder, &decoder->private_->frame, (const FLAC__int32 * const *)decoder->private_->output, decoder->private_->client_data) != FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE)
1445 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1449 FLAC__bool read_frame_header_(FLAC__StreamDecoder *decoder)
1453 unsigned i, blocksize_hint = 0, sample_rate_hint = 0;
1454 FLAC__byte crc8, raw_header[16]; /* MAGIC NUMBER based on the maximum frame header size, including CRC */
1455 unsigned raw_header_len;
1456 FLAC__bool is_unparseable = false;
1457 const FLAC__bool is_known_variable_blocksize_stream = (decoder->private_->has_stream_info && decoder->private_->stream_info.data.stream_info.min_blocksize != decoder->private_->stream_info.data.stream_info.max_blocksize);
1458 const FLAC__bool is_known_fixed_blocksize_stream = (decoder->private_->has_stream_info && decoder->private_->stream_info.data.stream_info.min_blocksize == decoder->private_->stream_info.data.stream_info.max_blocksize);
1460 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
1462 /* init the raw header with the saved bits from synchronization */
1463 raw_header[0] = decoder->private_->header_warmup[0];
1464 raw_header[1] = decoder->private_->header_warmup[1];
1468 * check to make sure that the reserved bits are 0
1470 if(raw_header[1] & 0x03) { /* MAGIC NUMBER */
1471 is_unparseable = true;
1475 * Note that along the way as we read the header, we look for a sync
1476 * code inside. If we find one it would indicate that our original
1477 * sync was bad since there cannot be a sync code in a valid header.
1481 * read in the raw header as bytes so we can CRC it, and parse it on the way
1483 for(i = 0; i < 2; i++) {
1484 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1485 return false; /* the read_callback_ sets the state for us */
1486 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
1487 /* if we get here it means our original sync was erroneous since the sync code cannot appear in the header */
1488 decoder->private_->lookahead = (FLAC__byte)x;
1489 decoder->private_->cached = true;
1490 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1491 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1494 raw_header[raw_header_len++] = (FLAC__byte)x;
1497 switch(x = raw_header[2] >> 4) {
1499 if(is_known_fixed_blocksize_stream)
1500 decoder->private_->frame.header.blocksize = decoder->private_->stream_info.data.stream_info.min_blocksize;
1502 is_unparseable = true;
1505 decoder->private_->frame.header.blocksize = 192;
1511 decoder->private_->frame.header.blocksize = 576 << (x-2);
1525 decoder->private_->frame.header.blocksize = 256 << (x-8);
1532 switch(x = raw_header[2] & 0x0f) {
1534 if(decoder->private_->has_stream_info)
1535 decoder->private_->frame.header.sample_rate = decoder->private_->stream_info.data.stream_info.sample_rate;
1537 is_unparseable = true;
1542 is_unparseable = true;
1545 decoder->private_->frame.header.sample_rate = 8000;
1548 decoder->private_->frame.header.sample_rate = 16000;
1551 decoder->private_->frame.header.sample_rate = 22050;
1554 decoder->private_->frame.header.sample_rate = 24000;
1557 decoder->private_->frame.header.sample_rate = 32000;
1560 decoder->private_->frame.header.sample_rate = 44100;
1563 decoder->private_->frame.header.sample_rate = 48000;
1566 decoder->private_->frame.header.sample_rate = 96000;
1571 sample_rate_hint = x;
1574 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1575 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1581 x = (unsigned)(raw_header[3] >> 4);
1583 decoder->private_->frame.header.channels = 2;
1586 decoder->private_->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE;
1589 decoder->private_->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE;
1592 decoder->private_->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_MID_SIDE;
1595 is_unparseable = true;
1600 decoder->private_->frame.header.channels = (unsigned)x + 1;
1601 decoder->private_->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT;
1604 switch(x = (unsigned)(raw_header[3] & 0x0e) >> 1) {
1606 if(decoder->private_->has_stream_info)
1607 decoder->private_->frame.header.bits_per_sample = decoder->private_->stream_info.data.stream_info.bits_per_sample;
1609 is_unparseable = true;
1612 decoder->private_->frame.header.bits_per_sample = 8;
1615 decoder->private_->frame.header.bits_per_sample = 12;
1618 decoder->private_->frame.header.bits_per_sample = 16;
1621 decoder->private_->frame.header.bits_per_sample = 20;
1624 decoder->private_->frame.header.bits_per_sample = 24;
1628 is_unparseable = true;
1635 if(raw_header[3] & 0x01) { /* this should be a zero padding bit */
1636 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1637 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1641 if(blocksize_hint && is_known_variable_blocksize_stream) {
1642 if(!FLAC__bitbuffer_read_utf8_uint64(decoder->private_->input, &xx, read_callback_, decoder, raw_header, &raw_header_len))
1643 return false; /* the read_callback_ sets the state for us */
1644 if(xx == 0xffffffffffffffff) { /* i.e. non-UTF8 code... */
1645 decoder->private_->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
1646 decoder->private_->cached = true;
1647 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1648 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1651 decoder->private_->frame.header.number_type = FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER;
1652 decoder->private_->frame.header.number.sample_number = xx;
1655 if(!FLAC__bitbuffer_read_utf8_uint32(decoder->private_->input, &x, read_callback_, decoder, raw_header, &raw_header_len))
1656 return false; /* the read_callback_ sets the state for us */
1657 if(x == 0xffffffff) { /* i.e. non-UTF8 code... */
1658 decoder->private_->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
1659 decoder->private_->cached = true;
1660 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1661 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1664 decoder->private_->last_frame_number = x;
1665 decoder->private_->frame.header.number_type = FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER;
1666 if(blocksize_hint) {
1667 if(decoder->private_->has_stream_info)
1668 decoder->private_->frame.header.number.sample_number = (FLAC__int64)decoder->private_->stream_info.data.stream_info.min_blocksize * (FLAC__int64)x;
1670 is_unparseable = true;
1673 decoder->private_->frame.header.number.sample_number = (FLAC__int64)decoder->private_->frame.header.blocksize * (FLAC__int64)x;
1676 if(blocksize_hint) {
1677 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1678 return false; /* the read_callback_ sets the state for us */
1679 raw_header[raw_header_len++] = (FLAC__byte)x;
1680 if(blocksize_hint == 7) {
1682 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &_x, 8, read_callback_, decoder))
1683 return false; /* the read_callback_ sets the state for us */
1684 raw_header[raw_header_len++] = (FLAC__byte)_x;
1687 decoder->private_->frame.header.blocksize = x+1;
1690 if(sample_rate_hint) {
1691 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1692 return false; /* the read_callback_ sets the state for us */
1693 raw_header[raw_header_len++] = (FLAC__byte)x;
1694 if(sample_rate_hint != 12) {
1696 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &_x, 8, read_callback_, decoder))
1697 return false; /* the read_callback_ sets the state for us */
1698 raw_header[raw_header_len++] = (FLAC__byte)_x;
1701 if(sample_rate_hint == 12)
1702 decoder->private_->frame.header.sample_rate = x*1000;
1703 else if(sample_rate_hint == 13)
1704 decoder->private_->frame.header.sample_rate = x;
1706 decoder->private_->frame.header.sample_rate = x*10;
1709 /* read the CRC-8 byte */
1710 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1711 return false; /* the read_callback_ sets the state for us */
1712 crc8 = (FLAC__byte)x;
1714 if(FLAC__crc8(raw_header, raw_header_len) != crc8) {
1715 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1716 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1720 if(is_unparseable) {
1721 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1728 FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1731 FLAC__bool wasted_bits;
1733 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder)) /* MAGIC NUMBER */
1734 return false; /* the read_callback_ sets the state for us */
1736 wasted_bits = (x & 1);
1741 if(!FLAC__bitbuffer_read_unary_unsigned(decoder->private_->input, &u, read_callback_, decoder))
1742 return false; /* the read_callback_ sets the state for us */
1743 decoder->private_->frame.subframes[channel].wasted_bits = u+1;
1744 bps -= decoder->private_->frame.subframes[channel].wasted_bits;
1747 decoder->private_->frame.subframes[channel].wasted_bits = 0;
1750 * Lots of magic numbers here
1753 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
1754 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1758 if(!read_subframe_constant_(decoder, channel, bps))
1762 if(!read_subframe_verbatim_(decoder, channel, bps))
1766 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1770 if(!read_subframe_fixed_(decoder, channel, bps, (x>>1)&7))
1774 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1778 if(!read_subframe_lpc_(decoder, channel, bps, ((x>>1)&31)+1))
1784 x = decoder->private_->frame.subframes[channel].wasted_bits;
1785 for(i = 0; i < decoder->private_->frame.header.blocksize; i++)
1786 decoder->private_->output[channel][i] <<= x;
1792 FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1794 FLAC__Subframe_Constant *subframe = &decoder->private_->frame.subframes[channel].data.constant;
1797 FLAC__int32 *output = decoder->private_->output[channel];
1799 decoder->private_->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_CONSTANT;
1801 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &x, bps, read_callback_, decoder))
1802 return false; /* the read_callback_ sets the state for us */
1804 subframe->value = x;
1806 /* decode the subframe */
1807 for(i = 0; i < decoder->private_->frame.header.blocksize; i++)
1813 FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order)
1815 FLAC__Subframe_Fixed *subframe = &decoder->private_->frame.subframes[channel].data.fixed;
1820 decoder->private_->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_FIXED;
1822 subframe->residual = decoder->private_->residual[channel];
1823 subframe->order = order;
1825 /* read warm-up samples */
1826 for(u = 0; u < order; u++) {
1827 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i32, bps, read_callback_, decoder))
1828 return false; /* the read_callback_ sets the state for us */
1829 subframe->warmup[u] = i32;
1832 /* read entropy coding method info */
1833 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__ENTROPY_CODING_METHOD_TYPE_LEN, read_callback_, decoder))
1834 return false; /* the read_callback_ sets the state for us */
1835 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32;
1836 switch(subframe->entropy_coding_method.type) {
1837 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1838 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN, read_callback_, decoder))
1839 return false; /* the read_callback_ sets the state for us */
1840 subframe->entropy_coding_method.data.partitioned_rice.order = u32;
1841 subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_rice_contents[channel];
1844 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1849 switch(subframe->entropy_coding_method.type) {
1850 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1851 if(!read_residual_partitioned_rice_(decoder, order, subframe->entropy_coding_method.data.partitioned_rice.order, &decoder->private_->partitioned_rice_contents[channel], decoder->private_->residual[channel]))
1858 /* decode the subframe */
1859 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order);
1860 FLAC__fixed_restore_signal(decoder->private_->residual[channel], decoder->private_->frame.header.blocksize-order, order, decoder->private_->output[channel]+order);
1865 FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order)
1867 FLAC__Subframe_LPC *subframe = &decoder->private_->frame.subframes[channel].data.lpc;
1872 decoder->private_->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_LPC;
1874 subframe->residual = decoder->private_->residual[channel];
1875 subframe->order = order;
1877 /* read warm-up samples */
1878 for(u = 0; u < order; u++) {
1879 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i32, bps, read_callback_, decoder))
1880 return false; /* the read_callback_ sets the state for us */
1881 subframe->warmup[u] = i32;
1884 /* read qlp coeff precision */
1885 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN, read_callback_, decoder))
1886 return false; /* the read_callback_ sets the state for us */
1887 if(u32 == (1u << FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN) - 1) {
1888 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
1889 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1892 subframe->qlp_coeff_precision = u32+1;
1894 /* read qlp shift */
1895 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i32, FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN, read_callback_, decoder))
1896 return false; /* the read_callback_ sets the state for us */
1897 subframe->quantization_level = i32;
1899 /* read quantized lp coefficiencts */
1900 for(u = 0; u < order; u++) {
1901 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i32, subframe->qlp_coeff_precision, read_callback_, decoder))
1902 return false; /* the read_callback_ sets the state for us */
1903 subframe->qlp_coeff[u] = i32;
1906 /* read entropy coding method info */
1907 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__ENTROPY_CODING_METHOD_TYPE_LEN, read_callback_, decoder))
1908 return false; /* the read_callback_ sets the state for us */
1909 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32;
1910 switch(subframe->entropy_coding_method.type) {
1911 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1912 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN, read_callback_, decoder))
1913 return false; /* the read_callback_ sets the state for us */
1914 subframe->entropy_coding_method.data.partitioned_rice.order = u32;
1915 subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_rice_contents[channel];
1918 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1923 switch(subframe->entropy_coding_method.type) {
1924 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1925 if(!read_residual_partitioned_rice_(decoder, order, subframe->entropy_coding_method.data.partitioned_rice.order, &decoder->private_->partitioned_rice_contents[channel], decoder->private_->residual[channel]))
1932 /* decode the subframe */
1933 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order);
1934 if(bps + subframe->qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32)
1935 if(bps <= 16 && subframe->qlp_coeff_precision <= 16)
1936 decoder->private_->local_lpc_restore_signal_16bit(decoder->private_->residual[channel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->quantization_level, decoder->private_->output[channel]+order);
1938 decoder->private_->local_lpc_restore_signal(decoder->private_->residual[channel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->quantization_level, decoder->private_->output[channel]+order);
1940 decoder->private_->local_lpc_restore_signal_64bit(decoder->private_->residual[channel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->quantization_level, decoder->private_->output[channel]+order);
1945 FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1947 FLAC__Subframe_Verbatim *subframe = &decoder->private_->frame.subframes[channel].data.verbatim;
1948 FLAC__int32 x, *residual = decoder->private_->residual[channel];
1951 decoder->private_->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_VERBATIM;
1953 subframe->data = residual;
1955 for(i = 0; i < decoder->private_->frame.header.blocksize; i++) {
1956 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &x, bps, read_callback_, decoder))
1957 return false; /* the read_callback_ sets the state for us */
1961 /* decode the subframe */
1962 memcpy(decoder->private_->output[channel], subframe->data, sizeof(FLAC__int32) * decoder->private_->frame.header.blocksize);
1967 FLAC__bool read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, unsigned partition_order, FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents, FLAC__int32 *residual)
1969 FLAC__uint32 rice_parameter;
1971 unsigned partition, sample, u;
1972 const unsigned partitions = 1u << partition_order;
1973 const unsigned partition_samples = partition_order > 0? decoder->private_->frame.header.blocksize >> partition_order : decoder->private_->frame.header.blocksize - predictor_order;
1975 if(!FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order))) {
1976 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1981 for(partition = 0; partition < partitions; partition++) {
1982 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN, read_callback_, decoder))
1983 return false; /* the read_callback_ sets the state for us */
1984 partitioned_rice_contents->parameters[partition] = rice_parameter;
1985 if(rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
1986 #ifdef FLAC__SYMMETRIC_RICE
1987 for(u = (partition_order == 0 || partition > 0)? 0 : predictor_order; u < partition_samples; u++, sample++) {
1988 if(!FLAC__bitbuffer_read_symmetric_rice_signed(decoder->private_->input, &i, rice_parameter, read_callback_, decoder))
1989 return false; /* the read_callback_ sets the state for us */
1990 residual[sample] = i;
1993 u = (partition_order == 0 || partition > 0)? partition_samples : partition_samples - predictor_order;
1994 if(!FLAC__bitbuffer_read_rice_signed_block(decoder->private_->input, residual + sample, u, rice_parameter, read_callback_, decoder))
1995 return false; /* the read_callback_ sets the state for us */
2000 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN, read_callback_, decoder))
2001 return false; /* the read_callback_ sets the state for us */
2002 partitioned_rice_contents->raw_bits[partition] = rice_parameter;
2003 for(u = (partition_order == 0 || partition > 0)? 0 : predictor_order; u < partition_samples; u++, sample++) {
2004 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i, rice_parameter, read_callback_, decoder))
2005 return false; /* the read_callback_ sets the state for us */
2006 residual[sample] = i;
2014 FLAC__bool read_zero_padding_(FLAC__StreamDecoder *decoder)
2016 if(!FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input)) {
2017 FLAC__uint32 zero = 0;
2018 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &zero, FLAC__bitbuffer_bits_left_for_byte_alignment(decoder->private_->input), read_callback_, decoder))
2019 return false; /* the read_callback_ sets the state for us */
2021 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
2022 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
2028 FLAC__bool read_callback_(FLAC__byte buffer[], unsigned *bytes, void *client_data)
2030 FLAC__StreamDecoder *decoder = (FLAC__StreamDecoder *)client_data;
2031 FLAC__StreamDecoderReadStatus status;
2033 status = decoder->private_->read_callback(decoder, buffer, bytes, decoder->private_->client_data);
2034 if(status == FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM)
2035 decoder->protected_->state = FLAC__STREAM_DECODER_END_OF_STREAM;
2036 else if(status == FLAC__STREAM_DECODER_READ_STATUS_ABORT)
2037 decoder->protected_->state = FLAC__STREAM_DECODER_ABORTED;
2038 return status == FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;