1 /* libFLAC - Free Lossless Audio Codec library
2 * Copyright (C) 2000,2001,2002 Josh Coalson
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library 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 GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 #include <stdlib.h> /* for malloc() */
22 #include <string.h> /* for memset/memcpy() */
23 #include "FLAC/assert.h"
24 #include "protected/stream_decoder.h"
25 #include "private/bitbuffer.h"
26 #include "private/cpu.h"
27 #include "private/crc.h"
28 #include "private/fixed.h"
29 #include "private/format.h"
30 #include "private/lpc.h"
35 #define max(a,b) ((a)>(b)?(a):(b))
37 /***********************************************************************
41 ***********************************************************************/
43 static FLAC__byte ID3V2_TAG_[3] = { 'I', 'D', '3' };
45 /***********************************************************************
47 * Private class method prototypes
49 ***********************************************************************/
51 static void set_defaults_(FLAC__StreamDecoder *decoder);
52 static FLAC__bool allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels);
53 static FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id);
54 static FLAC__bool find_metadata_(FLAC__StreamDecoder *decoder);
55 static FLAC__bool read_metadata_(FLAC__StreamDecoder *decoder);
56 static FLAC__bool skip_id3v2_tag_(FLAC__StreamDecoder *decoder);
57 static FLAC__bool frame_sync_(FLAC__StreamDecoder *decoder);
58 static FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame);
59 static FLAC__bool read_frame_header_(FLAC__StreamDecoder *decoder);
60 static FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
61 static FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
62 static FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order);
63 static FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order);
64 static FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
65 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);
66 static FLAC__bool read_zero_padding_(FLAC__StreamDecoder *decoder);
67 static FLAC__bool read_callback_(FLAC__byte buffer[], unsigned *bytes, void *client_data);
69 /***********************************************************************
73 ***********************************************************************/
75 typedef struct FLAC__StreamDecoderPrivate {
76 FLAC__StreamDecoderReadCallback read_callback;
77 FLAC__StreamDecoderWriteCallback write_callback;
78 FLAC__StreamDecoderMetadataCallback metadata_callback;
79 FLAC__StreamDecoderErrorCallback error_callback;
80 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[]);
81 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[]);
83 FLAC__BitBuffer *input;
84 FLAC__int32 *output[FLAC__MAX_CHANNELS];
85 FLAC__int32 *residual[FLAC__MAX_CHANNELS];
86 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents[FLAC__MAX_CHANNELS];
87 unsigned output_capacity, output_channels;
88 FLAC__uint32 last_frame_number;
89 FLAC__uint64 samples_decoded;
90 FLAC__bool has_stream_info, has_seek_table;
91 FLAC__StreamMetadata stream_info;
92 FLAC__StreamMetadata seek_table;
93 FLAC__bool metadata_filter[FLAC__METADATA_TYPE_VORBIS_COMMENT+1];
94 FLAC__byte *metadata_filter_ids;
95 unsigned metadata_filter_ids_count, metadata_filter_ids_capacity; /* units for both are IDs, not bytes */
97 FLAC__bool cached; /* true if there is a byte in lookahead */
98 FLAC__CPUInfo cpuinfo;
99 FLAC__byte header_warmup[2]; /* contains the sync code and reserved bits */
100 FLAC__byte lookahead; /* temp storage when we need to look ahead one byte in the stream */
101 } FLAC__StreamDecoderPrivate;
103 /***********************************************************************
105 * Public static class data
107 ***********************************************************************/
109 const char * const FLAC__StreamDecoderStateString[] = {
110 "FLAC__STREAM_DECODER_SEARCH_FOR_METADATA",
111 "FLAC__STREAM_DECODER_READ_METADATA",
112 "FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC",
113 "FLAC__STREAM_DECODER_READ_FRAME",
114 "FLAC__STREAM_DECODER_END_OF_STREAM",
115 "FLAC__STREAM_DECODER_ABORTED",
116 "FLAC__STREAM_DECODER_UNPARSEABLE_STREAM",
117 "FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR",
118 "FLAC__STREAM_DECODER_ALREADY_INITIALIZED",
119 "FLAC__STREAM_DECODER_INVALID_CALLBACK",
120 "FLAC__STREAM_DECODER_UNINITIALIZED"
123 const char * const FLAC__StreamDecoderReadStatusString[] = {
124 "FLAC__STREAM_DECODER_READ_STATUS_CONTINUE",
125 "FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM",
126 "FLAC__STREAM_DECODER_READ_STATUS_ABORT"
129 const char * const FLAC__StreamDecoderWriteStatusString[] = {
130 "FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE",
131 "FLAC__STREAM_DECODER_WRITE_STATUS_ABORT"
134 const char * const FLAC__StreamDecoderErrorStatusString[] = {
135 "FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC",
136 "FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER",
137 "FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH"
140 /***********************************************************************
142 * Class constructor/destructor
144 ***********************************************************************/
145 FLAC__StreamDecoder *FLAC__stream_decoder_new()
147 FLAC__StreamDecoder *decoder;
150 FLAC__ASSERT(sizeof(int) >= 4); /* we want to die right away if this is not true */
152 decoder = (FLAC__StreamDecoder*)malloc(sizeof(FLAC__StreamDecoder));
156 memset(decoder, 0, sizeof(FLAC__StreamDecoder));
158 decoder->protected_ = (FLAC__StreamDecoderProtected*)malloc(sizeof(FLAC__StreamDecoderProtected));
159 if(decoder->protected_ == 0) {
163 memset(decoder->protected_, 0, sizeof(FLAC__StreamDecoderProtected));
165 decoder->private_ = (FLAC__StreamDecoderPrivate*)malloc(sizeof(FLAC__StreamDecoderPrivate));
166 if(decoder->private_ == 0) {
167 free(decoder->protected_);
171 memset(decoder->private_, 0, sizeof(FLAC__StreamDecoderPrivate));
173 decoder->private_->input = FLAC__bitbuffer_new();
174 if(decoder->private_->input == 0) {
175 free(decoder->private_);
176 free(decoder->protected_);
181 decoder->private_->metadata_filter_ids_capacity = 16;
182 if(0 == (decoder->private_->metadata_filter_ids = malloc((FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8) * decoder->private_->metadata_filter_ids_capacity))) {
183 FLAC__bitbuffer_delete(decoder->private_->input);
184 free(decoder->private_);
185 free(decoder->protected_);
190 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
191 decoder->private_->output[i] = 0;
192 decoder->private_->residual[i] = 0;
195 decoder->private_->output_capacity = 0;
196 decoder->private_->output_channels = 0;
197 decoder->private_->has_seek_table = false;
199 for(i = 0; i < FLAC__MAX_CHANNELS; i++)
200 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&decoder->private_->partitioned_rice_contents[i]);
202 set_defaults_(decoder);
204 decoder->protected_->state = FLAC__STREAM_DECODER_UNINITIALIZED;
209 void FLAC__stream_decoder_delete(FLAC__StreamDecoder *decoder)
213 FLAC__ASSERT(0 != decoder);
214 FLAC__ASSERT(0 != decoder->protected_);
215 FLAC__ASSERT(0 != decoder->private_);
216 FLAC__ASSERT(0 != decoder->private_->input);
218 FLAC__stream_decoder_finish(decoder);
220 if(0 != decoder->private_->metadata_filter_ids)
221 free(decoder->private_->metadata_filter_ids);
223 FLAC__bitbuffer_delete(decoder->private_->input);
225 for(i = 0; i < FLAC__MAX_CHANNELS; i++)
226 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&decoder->private_->partitioned_rice_contents[i]);
228 free(decoder->private_);
229 free(decoder->protected_);
233 /***********************************************************************
235 * Public class methods
237 ***********************************************************************/
239 FLAC__StreamDecoderState FLAC__stream_decoder_init(FLAC__StreamDecoder *decoder)
241 FLAC__ASSERT(0 != decoder);
243 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
244 return decoder->protected_->state = FLAC__STREAM_DECODER_ALREADY_INITIALIZED;
246 if(0 == decoder->private_->read_callback || 0 == decoder->private_->write_callback || 0 == decoder->private_->metadata_callback || 0 == decoder->private_->error_callback)
247 return decoder->protected_->state = FLAC__STREAM_DECODER_INVALID_CALLBACK;
249 if(!FLAC__bitbuffer_init(decoder->private_->input))
250 return decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
252 decoder->private_->last_frame_number = 0;
253 decoder->private_->samples_decoded = 0;
254 decoder->private_->has_stream_info = false;
255 decoder->private_->cached = false;
258 * get the CPU info and set the function pointers
260 FLAC__cpu_info(&decoder->private_->cpuinfo);
261 /* first default to the non-asm routines */
262 decoder->private_->local_lpc_restore_signal = FLAC__lpc_restore_signal;
263 decoder->private_->local_lpc_restore_signal_16bit = FLAC__lpc_restore_signal;
264 /* now override with asm where appropriate */
266 if(decoder->private_->cpuinfo.use_asm) {
267 #ifdef FLAC__CPU_IA32
268 FLAC__ASSERT(decoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
269 #ifdef FLAC__HAS_NASM
270 if(decoder->private_->cpuinfo.data.ia32.mmx) {
271 decoder->private_->local_lpc_restore_signal = FLAC__lpc_restore_signal_asm_ia32;
272 decoder->private_->local_lpc_restore_signal_16bit = FLAC__lpc_restore_signal_asm_ia32_mmx;
275 decoder->private_->local_lpc_restore_signal = FLAC__lpc_restore_signal_asm_ia32;
276 decoder->private_->local_lpc_restore_signal_16bit = FLAC__lpc_restore_signal_asm_ia32;
283 if(!FLAC__stream_decoder_reset(decoder))
284 return decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
286 return decoder->protected_->state;
289 void FLAC__stream_decoder_finish(FLAC__StreamDecoder *decoder)
292 FLAC__ASSERT(0 != decoder);
293 if(decoder->protected_->state == FLAC__STREAM_DECODER_UNINITIALIZED)
295 if(decoder->private_->has_seek_table) {
296 FLAC__ASSERT(0 != decoder->private_->seek_table.data.seek_table.points);
297 free(decoder->private_->seek_table.data.seek_table.points);
298 decoder->private_->seek_table.data.seek_table.points = 0;
299 decoder->private_->has_seek_table = false;
301 FLAC__bitbuffer_free(decoder->private_->input);
302 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
304 * FLAC__lpc_restore_signal_asm_ia32_mmx() requires that the
305 * output arrays have a buffer of up to 3 zeroes in front
306 * (at negative indices) for alignment purposes; we use 4
307 * to keep the data well-aligned.
309 if(0 != decoder->private_->output[i]) {
310 free(decoder->private_->output[i]-4);
311 decoder->private_->output[i] = 0;
313 if(0 != decoder->private_->residual[i]) {
314 free(decoder->private_->residual[i]);
315 decoder->private_->residual[i] = 0;
318 decoder->private_->output_capacity = 0;
319 decoder->private_->output_channels = 0;
321 set_defaults_(decoder);
323 decoder->protected_->state = FLAC__STREAM_DECODER_UNINITIALIZED;
326 FLAC__bool FLAC__stream_decoder_set_read_callback(FLAC__StreamDecoder *decoder, FLAC__StreamDecoderReadCallback value)
328 FLAC__ASSERT(0 != decoder);
329 FLAC__ASSERT(0 != decoder->private_);
330 FLAC__ASSERT(0 != decoder->protected_);
331 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
333 decoder->private_->read_callback = value;
337 FLAC__bool FLAC__stream_decoder_set_write_callback(FLAC__StreamDecoder *decoder, FLAC__StreamDecoderWriteCallback value)
339 FLAC__ASSERT(0 != decoder);
340 FLAC__ASSERT(0 != decoder->private_);
341 FLAC__ASSERT(0 != decoder->protected_);
342 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
344 decoder->private_->write_callback = value;
348 FLAC__bool FLAC__stream_decoder_set_metadata_callback(FLAC__StreamDecoder *decoder, FLAC__StreamDecoderMetadataCallback value)
350 FLAC__ASSERT(0 != decoder);
351 FLAC__ASSERT(0 != decoder->private_);
352 FLAC__ASSERT(0 != decoder->protected_);
353 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
355 decoder->private_->metadata_callback = value;
359 FLAC__bool FLAC__stream_decoder_set_error_callback(FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorCallback value)
361 FLAC__ASSERT(0 != decoder);
362 FLAC__ASSERT(0 != decoder->private_);
363 FLAC__ASSERT(0 != decoder->protected_);
364 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
366 decoder->private_->error_callback = value;
370 FLAC__bool FLAC__stream_decoder_set_client_data(FLAC__StreamDecoder *decoder, void *value)
372 FLAC__ASSERT(0 != decoder);
373 FLAC__ASSERT(0 != decoder->private_);
374 FLAC__ASSERT(0 != decoder->protected_);
375 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
377 decoder->private_->client_data = value;
381 FLAC__bool FLAC__stream_decoder_set_metadata_respond(FLAC__StreamDecoder *decoder, FLAC__MetadataType type)
383 FLAC__ASSERT(0 != decoder);
384 FLAC__ASSERT(0 != decoder->private_);
385 FLAC__ASSERT(0 != decoder->protected_);
386 FLAC__ASSERT(type <= FLAC__METADATA_TYPE_VORBIS_COMMENT);
387 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
389 decoder->private_->metadata_filter[type] = true;
390 if(type == FLAC__METADATA_TYPE_APPLICATION)
391 decoder->private_->metadata_filter_ids_count = 0;
395 FLAC__bool FLAC__stream_decoder_set_metadata_respond_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4])
397 FLAC__ASSERT(0 != decoder);
398 FLAC__ASSERT(0 != decoder->private_);
399 FLAC__ASSERT(0 != decoder->protected_);
400 FLAC__ASSERT(0 != id);
401 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
404 if(decoder->private_->metadata_filter[FLAC__METADATA_TYPE_APPLICATION])
407 FLAC__ASSERT(0 != decoder->private_->metadata_filter_ids);
409 if(decoder->private_->metadata_filter_ids_count == decoder->private_->metadata_filter_ids_capacity) {
410 if(0 == (decoder->private_->metadata_filter_ids = realloc(decoder->private_->metadata_filter_ids, decoder->private_->metadata_filter_ids_capacity * 2)))
411 return decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
412 decoder->private_->metadata_filter_ids_capacity *= 2;
415 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));
416 decoder->private_->metadata_filter_ids_count++;
421 FLAC__bool FLAC__stream_decoder_set_metadata_respond_all(FLAC__StreamDecoder *decoder)
424 FLAC__ASSERT(0 != decoder);
425 FLAC__ASSERT(0 != decoder->private_);
426 FLAC__ASSERT(0 != decoder->protected_);
427 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
429 for(i = 0; i < sizeof(decoder->private_->metadata_filter) / sizeof(decoder->private_->metadata_filter[0]); i++)
430 decoder->private_->metadata_filter[i] = true;
431 decoder->private_->metadata_filter_ids_count = 0;
435 FLAC__bool FLAC__stream_decoder_set_metadata_ignore(FLAC__StreamDecoder *decoder, FLAC__MetadataType type)
437 FLAC__ASSERT(0 != decoder);
438 FLAC__ASSERT(0 != decoder->private_);
439 FLAC__ASSERT(0 != decoder->protected_);
440 FLAC__ASSERT(type <= FLAC__METADATA_TYPE_VORBIS_COMMENT);
441 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
443 decoder->private_->metadata_filter[type] = false;
444 if(type == FLAC__METADATA_TYPE_APPLICATION)
445 decoder->private_->metadata_filter_ids_count = 0;
449 FLAC__bool FLAC__stream_decoder_set_metadata_ignore_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4])
451 FLAC__ASSERT(0 != decoder);
452 FLAC__ASSERT(0 != decoder->private_);
453 FLAC__ASSERT(0 != decoder->protected_);
454 FLAC__ASSERT(0 != id);
455 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
458 if(!decoder->private_->metadata_filter[FLAC__METADATA_TYPE_APPLICATION])
461 FLAC__ASSERT(0 != decoder->private_->metadata_filter_ids);
463 if(decoder->private_->metadata_filter_ids_count == decoder->private_->metadata_filter_ids_capacity) {
464 if(0 == (decoder->private_->metadata_filter_ids = realloc(decoder->private_->metadata_filter_ids, decoder->private_->metadata_filter_ids_capacity * 2)))
465 return decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
466 decoder->private_->metadata_filter_ids_capacity *= 2;
469 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));
470 decoder->private_->metadata_filter_ids_count++;
475 FLAC__bool FLAC__stream_decoder_set_metadata_ignore_all(FLAC__StreamDecoder *decoder)
477 FLAC__ASSERT(0 != decoder);
478 FLAC__ASSERT(0 != decoder->private_);
479 FLAC__ASSERT(0 != decoder->protected_);
480 if(decoder->protected_->state != FLAC__STREAM_DECODER_UNINITIALIZED)
482 memset(decoder->private_->metadata_filter, 0, sizeof(decoder->private_->metadata_filter));
483 decoder->private_->metadata_filter_ids_count = 0;
487 FLAC__StreamDecoderState FLAC__stream_decoder_get_state(const FLAC__StreamDecoder *decoder)
489 FLAC__ASSERT(0 != decoder);
490 FLAC__ASSERT(0 != decoder->protected_);
491 return decoder->protected_->state;
494 unsigned FLAC__stream_decoder_get_channels(const FLAC__StreamDecoder *decoder)
496 FLAC__ASSERT(0 != decoder);
497 FLAC__ASSERT(0 != decoder->protected_);
498 return decoder->protected_->channels;
501 FLAC__ChannelAssignment FLAC__stream_decoder_get_channel_assignment(const FLAC__StreamDecoder *decoder)
503 FLAC__ASSERT(0 != decoder);
504 FLAC__ASSERT(0 != decoder->protected_);
505 return decoder->protected_->channel_assignment;
508 unsigned FLAC__stream_decoder_get_bits_per_sample(const FLAC__StreamDecoder *decoder)
510 FLAC__ASSERT(0 != decoder);
511 FLAC__ASSERT(0 != decoder->protected_);
512 return decoder->protected_->bits_per_sample;
515 unsigned FLAC__stream_decoder_get_sample_rate(const FLAC__StreamDecoder *decoder)
517 FLAC__ASSERT(0 != decoder);
518 FLAC__ASSERT(0 != decoder->protected_);
519 return decoder->protected_->sample_rate;
522 unsigned FLAC__stream_decoder_get_blocksize(const FLAC__StreamDecoder *decoder)
524 FLAC__ASSERT(0 != decoder);
525 FLAC__ASSERT(0 != decoder->protected_);
526 return decoder->protected_->blocksize;
529 FLAC__bool FLAC__stream_decoder_flush(FLAC__StreamDecoder *decoder)
531 FLAC__ASSERT(0 != decoder);
532 FLAC__ASSERT(0 != decoder->private_);
533 FLAC__ASSERT(0 != decoder->protected_);
535 if(!FLAC__bitbuffer_clear(decoder->private_->input)) {
536 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
539 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
544 FLAC__bool FLAC__stream_decoder_reset(FLAC__StreamDecoder *decoder)
546 FLAC__ASSERT(0 != decoder);
547 FLAC__ASSERT(0 != decoder->private_);
548 FLAC__ASSERT(0 != decoder->protected_);
550 if(!FLAC__stream_decoder_flush(decoder)) {
551 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
554 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_METADATA;
556 decoder->private_->samples_decoded = 0;
561 FLAC__bool FLAC__stream_decoder_process_single(FLAC__StreamDecoder *decoder)
563 FLAC__bool got_a_frame;
564 FLAC__ASSERT(0 != decoder);
565 FLAC__ASSERT(0 != decoder->protected_);
568 switch(decoder->protected_->state) {
569 case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
570 if(!find_metadata_(decoder))
571 return false; /* above function sets the status for us */
573 case FLAC__STREAM_DECODER_READ_METADATA:
574 if(!read_metadata_(decoder))
575 return false; /* above function sets the status for us */
578 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
579 if(!frame_sync_(decoder))
580 return true; /* above function sets the status for us */
582 case FLAC__STREAM_DECODER_READ_FRAME:
583 if(!read_frame_(decoder, &got_a_frame))
584 return false; /* above function sets the status for us */
586 return true; /* above function sets the status for us */
588 case FLAC__STREAM_DECODER_END_OF_STREAM:
589 case FLAC__STREAM_DECODER_ABORTED:
598 FLAC__bool FLAC__stream_decoder_process_until_end_of_metadata(FLAC__StreamDecoder *decoder)
600 FLAC__ASSERT(0 != decoder);
601 FLAC__ASSERT(0 != decoder->protected_);
604 switch(decoder->protected_->state) {
605 case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
606 if(!find_metadata_(decoder))
607 return false; /* above function sets the status for us */
609 case FLAC__STREAM_DECODER_READ_METADATA:
610 if(!read_metadata_(decoder))
611 return false; /* above function sets the status for us */
613 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
614 case FLAC__STREAM_DECODER_READ_FRAME:
615 case FLAC__STREAM_DECODER_END_OF_STREAM:
616 case FLAC__STREAM_DECODER_ABORTED:
625 FLAC__bool FLAC__stream_decoder_process_until_end_of_stream(FLAC__StreamDecoder *decoder)
628 FLAC__ASSERT(0 != decoder);
629 FLAC__ASSERT(0 != decoder->protected_);
632 switch(decoder->protected_->state) {
633 case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
634 if(!find_metadata_(decoder))
635 return false; /* above function sets the status for us */
637 case FLAC__STREAM_DECODER_READ_METADATA:
638 if(!read_metadata_(decoder))
639 return false; /* above function sets the status for us */
641 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
642 if(!frame_sync_(decoder))
643 return true; /* above function sets the status for us */
645 case FLAC__STREAM_DECODER_READ_FRAME:
646 if(!read_frame_(decoder, &dummy))
647 return false; /* above function sets the status for us */
649 case FLAC__STREAM_DECODER_END_OF_STREAM:
650 case FLAC__STREAM_DECODER_ABORTED:
659 /***********************************************************************
661 * Protected class methods
663 ***********************************************************************/
665 unsigned FLAC__stream_decoder_get_input_bytes_unconsumed(const FLAC__StreamDecoder *decoder)
667 FLAC__ASSERT(0 != decoder);
668 return FLAC__bitbuffer_get_input_bytes_unconsumed(decoder->private_->input);
671 /***********************************************************************
673 * Private class methods
675 ***********************************************************************/
677 void set_defaults_(FLAC__StreamDecoder *decoder)
679 decoder->private_->read_callback = 0;
680 decoder->private_->write_callback = 0;
681 decoder->private_->metadata_callback = 0;
682 decoder->private_->error_callback = 0;
683 decoder->private_->client_data = 0;
685 memset(decoder->private_->metadata_filter, 0, sizeof(decoder->private_->metadata_filter));
686 decoder->private_->metadata_filter[FLAC__METADATA_TYPE_STREAMINFO] = true;
687 decoder->private_->metadata_filter_ids_count = 0;
690 FLAC__bool allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels)
695 if(size <= decoder->private_->output_capacity && channels <= decoder->private_->output_channels)
698 /* @@@@ should change to use realloc() */
700 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
701 if(0 != decoder->private_->output[i]) {
702 free(decoder->private_->output[i]);
703 decoder->private_->output[i] = 0;
705 if(0 != decoder->private_->residual[i]) {
706 free(decoder->private_->residual[i]);
707 decoder->private_->residual[i] = 0;
711 for(i = 0; i < channels; i++) {
713 * FLAC__lpc_restore_signal_asm_ia32_mmx() requires that the
714 * output arrays have a buffer of up to 3 zeroes in front
715 * (at negative indices) for alignment purposes; we use 4
716 * to keep the data well-aligned.
718 tmp = (FLAC__int32*)malloc(sizeof(FLAC__int32)*(size+4));
720 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
723 memset(tmp, 0, sizeof(FLAC__int32)*4);
724 decoder->private_->output[i] = tmp + 4;
726 tmp = (FLAC__int32*)malloc(sizeof(FLAC__int32)*size);
728 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
731 decoder->private_->residual[i] = tmp;
734 decoder->private_->output_capacity = size;
735 decoder->private_->output_channels = channels;
740 FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id)
744 FLAC__ASSERT(0 != decoder);
745 FLAC__ASSERT(0 != decoder->private_);
747 for(i = 0; i < decoder->private_->metadata_filter_ids_count; i++)
748 if(0 == memcmp(decoder->private_->metadata_filter_ids + i * (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8), id, (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8)))
754 FLAC__bool find_metadata_(FLAC__StreamDecoder *decoder)
758 FLAC__bool first = true;
760 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
762 for(i = id = 0; i < 4; ) {
763 if(decoder->private_->cached) {
764 x = (FLAC__uint32)decoder->private_->lookahead;
765 decoder->private_->cached = false;
768 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
769 return false; /* the read_callback_ sets the state for us */
771 if(x == FLAC__STREAM_SYNC_STRING[i]) {
777 if(x == ID3V2_TAG_[id]) {
781 if(!skip_id3v2_tag_(decoder))
782 return false; /* the read_callback_ sets the state for us */
786 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
787 decoder->private_->header_warmup[0] = (FLAC__byte)x;
788 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
789 return false; /* the read_callback_ sets the state for us */
791 /* 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 */
792 /* else we have to check if the second byte is the end of a sync code */
793 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
794 decoder->private_->lookahead = (FLAC__byte)x;
795 decoder->private_->cached = true;
797 else if(x >> 2 == 0x3e) { /* MAGIC NUMBER for the last 6 sync bits */
798 decoder->private_->header_warmup[1] = (FLAC__byte)x;
799 decoder->protected_->state = FLAC__STREAM_DECODER_READ_FRAME;
805 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
810 decoder->protected_->state = FLAC__STREAM_DECODER_READ_METADATA;
814 FLAC__bool read_metadata_(FLAC__StreamDecoder *decoder)
816 FLAC__uint32 i, x, last_block, type, length;
819 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
821 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &last_block, FLAC__STREAM_METADATA_IS_LAST_LEN, read_callback_, decoder))
822 return false; /* the read_callback_ sets the state for us */
823 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &type, FLAC__STREAM_METADATA_TYPE_LEN, read_callback_, decoder))
824 return false; /* the read_callback_ sets the state for us */
825 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &length, FLAC__STREAM_METADATA_LENGTH_LEN, read_callback_, decoder))
826 return false; /* the read_callback_ sets the state for us */
827 if(type == FLAC__METADATA_TYPE_STREAMINFO) {
828 unsigned used_bits = 0;
829 decoder->private_->stream_info.type = type;
830 decoder->private_->stream_info.is_last = last_block;
831 decoder->private_->stream_info.length = length;
833 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN, read_callback_, decoder))
834 return false; /* the read_callback_ sets the state for us */
835 decoder->private_->stream_info.data.stream_info.min_blocksize = x;
836 used_bits += FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN;
838 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN, read_callback_, decoder))
839 return false; /* the read_callback_ sets the state for us */
840 decoder->private_->stream_info.data.stream_info.max_blocksize = x;
841 used_bits += FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN;
843 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN, read_callback_, decoder))
844 return false; /* the read_callback_ sets the state for us */
845 decoder->private_->stream_info.data.stream_info.min_framesize = x;
846 used_bits += FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN;
848 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN, read_callback_, decoder))
849 return false; /* the read_callback_ sets the state for us */
850 decoder->private_->stream_info.data.stream_info.max_framesize = x;
851 used_bits += FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN;
853 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN, read_callback_, decoder))
854 return false; /* the read_callback_ sets the state for us */
855 decoder->private_->stream_info.data.stream_info.sample_rate = x;
856 used_bits += FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN;
858 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN, read_callback_, decoder))
859 return false; /* the read_callback_ sets the state for us */
860 decoder->private_->stream_info.data.stream_info.channels = x+1;
861 used_bits += FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN;
863 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN, read_callback_, decoder))
864 return false; /* the read_callback_ sets the state for us */
865 decoder->private_->stream_info.data.stream_info.bits_per_sample = x+1;
866 used_bits += FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN;
868 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))
869 return false; /* the read_callback_ sets the state for us */
870 used_bits += FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN;
872 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, decoder->private_->stream_info.data.stream_info.md5sum, 16, read_callback_, decoder))
873 return false; /* the read_callback_ sets the state for us */
876 /* skip the rest of the block */
877 FLAC__ASSERT(used_bits % 8 == 0);
878 length -= (used_bits / 8);
879 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, 0, length, read_callback_, decoder))
880 return false; /* the read_callback_ sets the state for us */
882 decoder->private_->has_stream_info = true;
883 if(decoder->private_->metadata_filter[FLAC__METADATA_TYPE_STREAMINFO])
884 decoder->private_->metadata_callback(decoder, &decoder->private_->stream_info, decoder->private_->client_data);
886 else if(type == FLAC__METADATA_TYPE_SEEKTABLE) {
887 decoder->private_->seek_table.type = type;
888 decoder->private_->seek_table.is_last = last_block;
889 decoder->private_->seek_table.length = length;
891 decoder->private_->seek_table.data.seek_table.num_points = length / FLAC__STREAM_METADATA_SEEKPOINT_LENGTH;
893 if(0 == (decoder->private_->seek_table.data.seek_table.points = (FLAC__StreamMetadata_SeekPoint*)malloc(decoder->private_->seek_table.data.seek_table.num_points * sizeof(FLAC__StreamMetadata_SeekPoint)))) {
894 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
897 for(i = 0; i < decoder->private_->seek_table.data.seek_table.num_points; i++) {
898 if(!FLAC__bitbuffer_read_raw_uint64(decoder->private_->input, &xx, FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN, read_callback_, decoder))
899 return false; /* the read_callback_ sets the state for us */
900 decoder->private_->seek_table.data.seek_table.points[i].sample_number = xx;
902 if(!FLAC__bitbuffer_read_raw_uint64(decoder->private_->input, &xx, FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN, read_callback_, decoder))
903 return false; /* the read_callback_ sets the state for us */
904 decoder->private_->seek_table.data.seek_table.points[i].stream_offset = xx;
906 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN, read_callback_, decoder))
907 return false; /* the read_callback_ sets the state for us */
908 decoder->private_->seek_table.data.seek_table.points[i].frame_samples = x;
910 length -= (decoder->private_->seek_table.data.seek_table.num_points * FLAC__STREAM_METADATA_SEEKPOINT_LENGTH);
911 /* if there is a partial point left, skip over it */
913 /*@@@ do an error_callback() here? there's an argument for either way */
914 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, 0, length, read_callback_, decoder))
915 return false; /* the read_callback_ sets the state for us */
918 decoder->private_->has_seek_table = true;
919 if(decoder->private_->metadata_filter[FLAC__METADATA_TYPE_SEEKTABLE])
920 decoder->private_->metadata_callback(decoder, &decoder->private_->seek_table, decoder->private_->client_data);
923 FLAC__bool skip_it = !decoder->private_->metadata_filter[type];
924 unsigned real_length = length;
925 FLAC__StreamMetadata block;
927 block.is_last = last_block;
929 block.length = length;
931 if(type == FLAC__METADATA_TYPE_APPLICATION) {
932 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, block.data.application.id, FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8, read_callback_, decoder))
933 return false; /* the read_callback_ sets the state for us */
935 real_length -= FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8;
937 if(decoder->private_->metadata_filter_ids_count > 0 && has_id_filtered_(decoder, block.data.application.id))
942 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, 0, real_length, read_callback_, decoder))
943 return false; /* the read_callback_ sets the state for us */
947 case FLAC__METADATA_TYPE_PADDING:
948 /* skip the padding bytes */
949 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, 0, real_length, read_callback_, decoder))
950 return false; /* the read_callback_ sets the state for us */
952 case FLAC__METADATA_TYPE_APPLICATION:
953 /* remember, we read the ID already */
954 if(real_length > 0) {
955 if(0 == (block.data.application.data = malloc(real_length))) {
956 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
959 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, block.data.application.data, real_length, read_callback_, decoder))
960 return false; /* the read_callback_ sets the state for us */
963 block.data.application.data = 0;
965 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
966 /* read vendor string */
967 FLAC__ASSERT(FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN == 32);
968 if(!FLAC__bitbuffer_read_raw_uint32_little_endian(decoder->private_->input, &block.data.vorbis_comment.vendor_string.length, read_callback_, decoder))
969 return false; /* the read_callback_ sets the state for us */
970 if(block.data.vorbis_comment.vendor_string.length > 0) {
971 if(0 == (block.data.vorbis_comment.vendor_string.entry = malloc(block.data.vorbis_comment.vendor_string.length))) {
972 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
975 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, block.data.vorbis_comment.vendor_string.entry, block.data.vorbis_comment.vendor_string.length, read_callback_, decoder))
976 return false; /* the read_callback_ sets the state for us */
979 block.data.vorbis_comment.vendor_string.entry = 0;
981 /* read num comments */
982 FLAC__ASSERT(FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN == 32);
983 if(!FLAC__bitbuffer_read_raw_uint32_little_endian(decoder->private_->input, &block.data.vorbis_comment.num_comments, read_callback_, decoder))
984 return false; /* the read_callback_ sets the state for us */
987 if(block.data.vorbis_comment.num_comments > 0) {
988 if(0 == (block.data.vorbis_comment.comments = malloc(block.data.vorbis_comment.num_comments * sizeof(FLAC__StreamMetadata_VorbisComment_Entry)))) {
989 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
992 for(i = 0; i < block.data.vorbis_comment.num_comments; i++) {
993 FLAC__ASSERT(FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN == 32);
994 if(!FLAC__bitbuffer_read_raw_uint32_little_endian(decoder->private_->input, &block.data.vorbis_comment.comments[i].length, read_callback_, decoder))
995 return false; /* the read_callback_ sets the state for us */
996 if(block.data.vorbis_comment.comments[i].length > 0) {
997 if(0 == (block.data.vorbis_comment.comments[i].entry = malloc(block.data.vorbis_comment.comments[i].length))) {
998 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1001 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, block.data.vorbis_comment.comments[i].entry, block.data.vorbis_comment.comments[i].length, read_callback_, decoder))
1002 return false; /* the read_callback_ sets the state for us */
1005 block.data.vorbis_comment.comments[i].entry = 0;
1009 block.data.vorbis_comment.comments = 0;
1012 case FLAC__METADATA_TYPE_STREAMINFO:
1013 case FLAC__METADATA_TYPE_SEEKTABLE:
1017 decoder->private_->metadata_callback(decoder, &block, decoder->private_->client_data);
1019 /* now we have to free any malloc'ed data in the block */
1021 case FLAC__METADATA_TYPE_PADDING:
1023 case FLAC__METADATA_TYPE_APPLICATION:
1024 if(0 != block.data.application.data)
1025 free(block.data.application.data);
1027 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
1028 if(0 != block.data.vorbis_comment.vendor_string.entry)
1029 free(block.data.vorbis_comment.vendor_string.entry);
1030 if(block.data.vorbis_comment.num_comments > 0)
1031 for(i = 0; i < block.data.vorbis_comment.num_comments; i++)
1032 if(0 != block.data.vorbis_comment.comments[i].entry)
1033 free(block.data.vorbis_comment.comments[i].entry);
1034 if(0 != block.data.vorbis_comment.comments)
1035 free(block.data.vorbis_comment.comments);
1037 case FLAC__METADATA_TYPE_STREAMINFO:
1038 case FLAC__METADATA_TYPE_SEEKTABLE:
1046 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1051 FLAC__bool skip_id3v2_tag_(FLAC__StreamDecoder *decoder)
1056 /* skip the version and flags bytes */
1057 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 24, read_callback_, decoder))
1058 return false; /* the read_callback_ sets the state for us */
1059 /* get the size (in bytes) to skip */
1061 for(i = 0; i < 4; i++) {
1062 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1063 return false; /* the read_callback_ sets the state for us */
1067 /* skip the rest of the tag */
1068 if(!FLAC__bitbuffer_read_byte_block_aligned(decoder->private_->input, 0, skip, read_callback_, decoder))
1069 return false; /* the read_callback_ sets the state for us */
1073 FLAC__bool frame_sync_(FLAC__StreamDecoder *decoder)
1076 FLAC__bool first = true;
1078 /* If we know the total number of samples in the stream, stop if we've read that many. */
1079 /* This will stop us, for example, from wasting time trying to sync on an ID3V1 tag. */
1080 if(decoder->private_->has_stream_info && decoder->private_->stream_info.data.stream_info.total_samples) {
1081 if(decoder->private_->samples_decoded >= decoder->private_->stream_info.data.stream_info.total_samples) {
1082 decoder->protected_->state = FLAC__STREAM_DECODER_END_OF_STREAM;
1087 /* make sure we're byte aligned */
1088 if(!FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input)) {
1089 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__bitbuffer_bits_left_for_byte_alignment(decoder->private_->input), read_callback_, decoder))
1090 return false; /* the read_callback_ sets the state for us */
1094 if(decoder->private_->cached) {
1095 x = (FLAC__uint32)decoder->private_->lookahead;
1096 decoder->private_->cached = false;
1099 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1100 return false; /* the read_callback_ sets the state for us */
1102 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
1103 decoder->private_->header_warmup[0] = (FLAC__byte)x;
1104 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1105 return false; /* the read_callback_ sets the state for us */
1107 /* 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 */
1108 /* else we have to check if the second byte is the end of a sync code */
1109 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
1110 decoder->private_->lookahead = (FLAC__byte)x;
1111 decoder->private_->cached = true;
1113 else if(x >> 2 == 0x3e) { /* MAGIC NUMBER for the last 6 sync bits */
1114 decoder->private_->header_warmup[1] = (FLAC__byte)x;
1115 decoder->protected_->state = FLAC__STREAM_DECODER_READ_FRAME;
1120 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
1128 FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame)
1132 FLAC__int32 mid, side, left, right;
1133 FLAC__uint16 frame_crc; /* the one we calculate from the input stream */
1136 *got_a_frame = false;
1140 FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc);
1141 FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc);
1142 FLAC__bitbuffer_reset_read_crc16(decoder->private_->input, frame_crc);
1144 if(!read_frame_header_(decoder))
1146 if(decoder->protected_->state == FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC)
1148 if(!allocate_output_(decoder, decoder->private_->frame.header.blocksize, decoder->private_->frame.header.channels))
1150 for(channel = 0; channel < decoder->private_->frame.header.channels; channel++) {
1152 * first figure the correct bits-per-sample of the subframe
1154 unsigned bps = decoder->private_->frame.header.bits_per_sample;
1155 switch(decoder->private_->frame.header.channel_assignment) {
1156 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
1157 /* no adjustment needed */
1159 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
1160 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1164 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
1165 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1169 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
1170 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1180 if(!read_subframe_(decoder, channel, bps))
1182 if(decoder->protected_->state != FLAC__STREAM_DECODER_READ_FRAME) {
1183 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1187 if(!read_zero_padding_(decoder))
1191 * Read the frame CRC-16 from the footer and check
1193 frame_crc = FLAC__bitbuffer_get_read_crc16(decoder->private_->input);
1194 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, FLAC__FRAME_FOOTER_CRC_LEN, read_callback_, decoder))
1195 return false; /* the read_callback_ sets the state for us */
1196 if(frame_crc == (FLAC__uint16)x) {
1197 /* Undo any special channel coding */
1198 switch(decoder->private_->frame.header.channel_assignment) {
1199 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
1202 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
1203 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1204 for(i = 0; i < decoder->private_->frame.header.blocksize; i++)
1205 decoder->private_->output[1][i] = decoder->private_->output[0][i] - decoder->private_->output[1][i];
1207 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
1208 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1209 for(i = 0; i < decoder->private_->frame.header.blocksize; i++)
1210 decoder->private_->output[0][i] += decoder->private_->output[1][i];
1212 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
1213 FLAC__ASSERT(decoder->private_->frame.header.channels == 2);
1214 for(i = 0; i < decoder->private_->frame.header.blocksize; i++) {
1215 mid = decoder->private_->output[0][i];
1216 side = decoder->private_->output[1][i];
1218 if(side & 1) /* i.e. if 'side' is odd... */
1222 decoder->private_->output[0][i] = left >> 1;
1223 decoder->private_->output[1][i] = right >> 1;
1232 /* Bad frame, emit error and zero the output signal */
1233 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH, decoder->private_->client_data);
1234 for(channel = 0; channel < decoder->private_->frame.header.channels; channel++) {
1235 memset(decoder->private_->output[channel], 0, sizeof(FLAC__int32) * decoder->private_->frame.header.blocksize);
1239 *got_a_frame = true;
1241 /* put the latest values into the public section of the decoder instance */
1242 decoder->protected_->channels = decoder->private_->frame.header.channels;
1243 decoder->protected_->channel_assignment = decoder->private_->frame.header.channel_assignment;
1244 decoder->protected_->bits_per_sample = decoder->private_->frame.header.bits_per_sample;
1245 decoder->protected_->sample_rate = decoder->private_->frame.header.sample_rate;
1246 decoder->protected_->blocksize = decoder->private_->frame.header.blocksize;
1248 FLAC__ASSERT(decoder->private_->frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER);
1249 decoder->private_->samples_decoded = decoder->private_->frame.header.number.sample_number + decoder->private_->frame.header.blocksize;
1252 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)
1255 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1259 FLAC__bool read_frame_header_(FLAC__StreamDecoder *decoder)
1263 unsigned i, blocksize_hint = 0, sample_rate_hint = 0;
1264 FLAC__byte crc8, raw_header[16]; /* MAGIC NUMBER based on the maximum frame header size, including CRC */
1265 unsigned raw_header_len;
1266 FLAC__bool is_unparseable = false;
1267 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);
1268 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);
1270 FLAC__ASSERT(FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input));
1272 /* init the raw header with the saved bits from synchronization */
1273 raw_header[0] = decoder->private_->header_warmup[0];
1274 raw_header[1] = decoder->private_->header_warmup[1];
1278 * check to make sure that the reserved bits are 0
1280 if(raw_header[1] & 0x03) { /* MAGIC NUMBER */
1281 is_unparseable = true;
1285 * Note that along the way as we read the header, we look for a sync
1286 * code inside. If we find one it would indicate that our original
1287 * sync was bad since there cannot be a sync code in a valid header.
1291 * read in the raw header as bytes so we can CRC it, and parse it on the way
1293 for(i = 0; i < 2; i++) {
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 */
1296 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
1297 /* if we get here it means our original sync was erroneous since the sync code cannot appear in the header */
1298 decoder->private_->lookahead = (FLAC__byte)x;
1299 decoder->private_->cached = true;
1300 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1301 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1304 raw_header[raw_header_len++] = (FLAC__byte)x;
1307 switch(x = raw_header[2] >> 4) {
1309 if(is_known_fixed_blocksize_stream)
1310 decoder->private_->frame.header.blocksize = decoder->private_->stream_info.data.stream_info.min_blocksize;
1312 is_unparseable = true;
1315 decoder->private_->frame.header.blocksize = 192;
1321 decoder->private_->frame.header.blocksize = 576 << (x-2);
1335 decoder->private_->frame.header.blocksize = 256 << (x-8);
1342 switch(x = raw_header[2] & 0x0f) {
1344 if(decoder->private_->has_stream_info)
1345 decoder->private_->frame.header.sample_rate = decoder->private_->stream_info.data.stream_info.sample_rate;
1347 is_unparseable = true;
1352 is_unparseable = true;
1355 decoder->private_->frame.header.sample_rate = 8000;
1358 decoder->private_->frame.header.sample_rate = 16000;
1361 decoder->private_->frame.header.sample_rate = 22050;
1364 decoder->private_->frame.header.sample_rate = 24000;
1367 decoder->private_->frame.header.sample_rate = 32000;
1370 decoder->private_->frame.header.sample_rate = 44100;
1373 decoder->private_->frame.header.sample_rate = 48000;
1376 decoder->private_->frame.header.sample_rate = 96000;
1381 sample_rate_hint = x;
1384 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1385 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1391 x = (unsigned)(raw_header[3] >> 4);
1393 decoder->private_->frame.header.channels = 2;
1396 decoder->private_->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE;
1399 decoder->private_->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE;
1402 decoder->private_->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_MID_SIDE;
1405 is_unparseable = true;
1410 decoder->private_->frame.header.channels = (unsigned)x + 1;
1411 decoder->private_->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT;
1414 switch(x = (unsigned)(raw_header[3] & 0x0e) >> 1) {
1416 if(decoder->private_->has_stream_info)
1417 decoder->private_->frame.header.bits_per_sample = decoder->private_->stream_info.data.stream_info.bits_per_sample;
1419 is_unparseable = true;
1422 decoder->private_->frame.header.bits_per_sample = 8;
1425 decoder->private_->frame.header.bits_per_sample = 12;
1428 decoder->private_->frame.header.bits_per_sample = 16;
1431 decoder->private_->frame.header.bits_per_sample = 20;
1434 decoder->private_->frame.header.bits_per_sample = 24;
1438 is_unparseable = true;
1445 if(raw_header[3] & 0x01) { /* this should be a zero padding bit */
1446 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1447 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1451 if(blocksize_hint && is_known_variable_blocksize_stream) {
1452 if(!FLAC__bitbuffer_read_utf8_uint64(decoder->private_->input, &xx, read_callback_, decoder, raw_header, &raw_header_len))
1453 return false; /* the read_callback_ sets the state for us */
1454 if(xx == 0xffffffffffffffff) { /* i.e. non-UTF8 code... */
1455 decoder->private_->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
1456 decoder->private_->cached = true;
1457 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1458 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1461 decoder->private_->frame.header.number_type = FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER;
1462 decoder->private_->frame.header.number.sample_number = xx;
1465 if(!FLAC__bitbuffer_read_utf8_uint32(decoder->private_->input, &x, read_callback_, decoder, raw_header, &raw_header_len))
1466 return false; /* the read_callback_ sets the state for us */
1467 if(x == 0xffffffff) { /* i.e. non-UTF8 code... */
1468 decoder->private_->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
1469 decoder->private_->cached = true;
1470 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1471 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1474 decoder->private_->last_frame_number = x;
1475 if(decoder->private_->has_stream_info) {
1476 decoder->private_->frame.header.number_type = FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER;
1477 decoder->private_->frame.header.number.sample_number = (FLAC__int64)decoder->private_->stream_info.data.stream_info.min_blocksize * (FLAC__int64)x;
1480 is_unparseable = true;
1484 if(blocksize_hint) {
1485 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1486 return false; /* the read_callback_ sets the state for us */
1487 raw_header[raw_header_len++] = (FLAC__byte)x;
1488 if(blocksize_hint == 7) {
1490 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &_x, 8, read_callback_, decoder))
1491 return false; /* the read_callback_ sets the state for us */
1492 raw_header[raw_header_len++] = (FLAC__byte)_x;
1495 decoder->private_->frame.header.blocksize = x+1;
1498 if(sample_rate_hint) {
1499 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1500 return false; /* the read_callback_ sets the state for us */
1501 raw_header[raw_header_len++] = (FLAC__byte)x;
1502 if(sample_rate_hint != 12) {
1504 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &_x, 8, read_callback_, decoder))
1505 return false; /* the read_callback_ sets the state for us */
1506 raw_header[raw_header_len++] = (FLAC__byte)_x;
1509 if(sample_rate_hint == 12)
1510 decoder->private_->frame.header.sample_rate = x*1000;
1511 else if(sample_rate_hint == 13)
1512 decoder->private_->frame.header.sample_rate = x;
1514 decoder->private_->frame.header.sample_rate = x*10;
1517 /* read the CRC-8 byte */
1518 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder))
1519 return false; /* the read_callback_ sets the state for us */
1520 crc8 = (FLAC__byte)x;
1522 if(FLAC__crc8(raw_header, raw_header_len) != crc8) {
1523 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, decoder->private_->client_data);
1524 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1528 if(is_unparseable) {
1529 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1536 FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1539 FLAC__bool wasted_bits;
1541 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x, 8, read_callback_, decoder)) /* MAGIC NUMBER */
1542 return false; /* the read_callback_ sets the state for us */
1544 wasted_bits = (x & 1);
1549 if(!FLAC__bitbuffer_read_unary_unsigned(decoder->private_->input, &u, read_callback_, decoder))
1550 return false; /* the read_callback_ sets the state for us */
1551 decoder->private_->frame.subframes[channel].wasted_bits = u+1;
1552 bps -= decoder->private_->frame.subframes[channel].wasted_bits;
1555 decoder->private_->frame.subframes[channel].wasted_bits = 0;
1558 * Lots of magic numbers here
1561 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
1562 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1566 if(!read_subframe_constant_(decoder, channel, bps))
1570 if(!read_subframe_verbatim_(decoder, channel, bps))
1574 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1578 if(!read_subframe_fixed_(decoder, channel, bps, (x>>1)&7))
1582 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1586 if(!read_subframe_lpc_(decoder, channel, bps, ((x>>1)&31)+1))
1592 x = decoder->private_->frame.subframes[channel].wasted_bits;
1593 for(i = 0; i < decoder->private_->frame.header.blocksize; i++)
1594 decoder->private_->output[channel][i] <<= x;
1600 FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1602 FLAC__Subframe_Constant *subframe = &decoder->private_->frame.subframes[channel].data.constant;
1605 FLAC__int32 *output = decoder->private_->output[channel];
1607 decoder->private_->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_CONSTANT;
1609 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &x, bps, read_callback_, decoder))
1610 return false; /* the read_callback_ sets the state for us */
1612 subframe->value = x;
1614 /* decode the subframe */
1615 for(i = 0; i < decoder->private_->frame.header.blocksize; i++)
1621 FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order)
1623 FLAC__Subframe_Fixed *subframe = &decoder->private_->frame.subframes[channel].data.fixed;
1628 decoder->private_->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_FIXED;
1630 subframe->residual = decoder->private_->residual[channel];
1631 subframe->order = order;
1633 /* read warm-up samples */
1634 for(u = 0; u < order; u++) {
1635 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i32, bps, read_callback_, decoder))
1636 return false; /* the read_callback_ sets the state for us */
1637 subframe->warmup[u] = i32;
1640 /* read entropy coding method info */
1641 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__ENTROPY_CODING_METHOD_TYPE_LEN, read_callback_, decoder))
1642 return false; /* the read_callback_ sets the state for us */
1643 subframe->entropy_coding_method.type = u32;
1644 switch(subframe->entropy_coding_method.type) {
1645 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1646 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN, read_callback_, decoder))
1647 return false; /* the read_callback_ sets the state for us */
1648 subframe->entropy_coding_method.data.partitioned_rice.order = u32;
1649 subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_rice_contents[channel];
1652 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1657 switch(subframe->entropy_coding_method.type) {
1658 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1659 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]))
1666 /* decode the subframe */
1667 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order);
1668 FLAC__fixed_restore_signal(decoder->private_->residual[channel], decoder->private_->frame.header.blocksize-order, order, decoder->private_->output[channel]+order);
1673 FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order)
1675 FLAC__Subframe_LPC *subframe = &decoder->private_->frame.subframes[channel].data.lpc;
1680 decoder->private_->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_LPC;
1682 subframe->residual = decoder->private_->residual[channel];
1683 subframe->order = order;
1685 /* read warm-up samples */
1686 for(u = 0; u < order; u++) {
1687 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i32, bps, read_callback_, decoder))
1688 return false; /* the read_callback_ sets the state for us */
1689 subframe->warmup[u] = i32;
1692 /* read qlp coeff precision */
1693 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN, read_callback_, decoder))
1694 return false; /* the read_callback_ sets the state for us */
1695 if(u32 == (1u << FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN) - 1) {
1696 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
1697 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1700 subframe->qlp_coeff_precision = u32+1;
1702 /* read qlp shift */
1703 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i32, FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN, read_callback_, decoder))
1704 return false; /* the read_callback_ sets the state for us */
1705 subframe->quantization_level = i32;
1707 /* read quantized lp coefficiencts */
1708 for(u = 0; u < order; u++) {
1709 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i32, subframe->qlp_coeff_precision, read_callback_, decoder))
1710 return false; /* the read_callback_ sets the state for us */
1711 subframe->qlp_coeff[u] = i32;
1714 /* read entropy coding method info */
1715 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__ENTROPY_CODING_METHOD_TYPE_LEN, read_callback_, decoder))
1716 return false; /* the read_callback_ sets the state for us */
1717 subframe->entropy_coding_method.type = u32;
1718 switch(subframe->entropy_coding_method.type) {
1719 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1720 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &u32, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN, read_callback_, decoder))
1721 return false; /* the read_callback_ sets the state for us */
1722 subframe->entropy_coding_method.data.partitioned_rice.order = u32;
1723 subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_rice_contents[channel];
1726 decoder->protected_->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1731 switch(subframe->entropy_coding_method.type) {
1732 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1733 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]))
1740 /* decode the subframe */
1741 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order);
1742 if(bps <= 16 && subframe->qlp_coeff_precision <= 16)
1743 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);
1745 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);
1750 FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1752 FLAC__Subframe_Verbatim *subframe = &decoder->private_->frame.subframes[channel].data.verbatim;
1753 FLAC__int32 x, *residual = decoder->private_->residual[channel];
1756 decoder->private_->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_VERBATIM;
1758 subframe->data = residual;
1760 for(i = 0; i < decoder->private_->frame.header.blocksize; i++) {
1761 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &x, bps, read_callback_, decoder))
1762 return false; /* the read_callback_ sets the state for us */
1766 /* decode the subframe */
1767 memcpy(decoder->private_->output[channel], subframe->data, sizeof(FLAC__int32) * decoder->private_->frame.header.blocksize);
1772 FLAC__bool read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, unsigned partition_order, FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents, FLAC__int32 *residual)
1774 FLAC__uint32 rice_parameter;
1776 unsigned partition, sample, u;
1777 const unsigned partitions = 1u << partition_order;
1778 const unsigned partition_samples = partition_order > 0? decoder->private_->frame.header.blocksize >> partition_order : decoder->private_->frame.header.blocksize - predictor_order;
1780 if(!FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order))) {
1781 decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
1786 for(partition = 0; partition < partitions; partition++) {
1787 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN, read_callback_, decoder))
1788 return false; /* the read_callback_ sets the state for us */
1789 partitioned_rice_contents->parameters[partition] = rice_parameter;
1790 if(rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
1791 #ifdef FLAC__SYMMETRIC_RICE
1792 for(u = (partition_order == 0 || partition > 0)? 0 : predictor_order; u < partition_samples; u++, sample++) {
1793 if(!FLAC__bitbuffer_read_symmetric_rice_signed(decoder->private_->input, &i, rice_parameter, read_callback_, decoder))
1794 return false; /* the read_callback_ sets the state for us */
1795 residual[sample] = i;
1798 u = (partition_order == 0 || partition > 0)? partition_samples : partition_samples - predictor_order;
1799 if(!FLAC__bitbuffer_read_rice_signed_block(decoder->private_->input, residual + sample, u, rice_parameter, read_callback_, decoder))
1800 return false; /* the read_callback_ sets the state for us */
1805 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN, read_callback_, decoder))
1806 return false; /* the read_callback_ sets the state for us */
1807 partitioned_rice_contents->raw_bits[partition] = rice_parameter;
1808 for(u = (partition_order == 0 || partition > 0)? 0 : predictor_order; u < partition_samples; u++, sample++) {
1809 if(!FLAC__bitbuffer_read_raw_int32(decoder->private_->input, &i, rice_parameter, read_callback_, decoder))
1810 return false; /* the read_callback_ sets the state for us */
1811 residual[sample] = i;
1819 FLAC__bool read_zero_padding_(FLAC__StreamDecoder *decoder)
1821 if(!FLAC__bitbuffer_is_consumed_byte_aligned(decoder->private_->input)) {
1822 FLAC__uint32 zero = 0;
1823 if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &zero, FLAC__bitbuffer_bits_left_for_byte_alignment(decoder->private_->input), read_callback_, decoder))
1824 return false; /* the read_callback_ sets the state for us */
1826 decoder->private_->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, decoder->private_->client_data);
1827 decoder->protected_->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1833 FLAC__bool read_callback_(FLAC__byte buffer[], unsigned *bytes, void *client_data)
1835 FLAC__StreamDecoder *decoder = (FLAC__StreamDecoder *)client_data;
1836 FLAC__StreamDecoderReadStatus status;
1838 status = decoder->private_->read_callback(decoder, buffer, bytes, decoder->private_->client_data);
1839 if(status == FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM)
1840 decoder->protected_->state = FLAC__STREAM_DECODER_END_OF_STREAM;
1841 else if(status == FLAC__STREAM_DECODER_READ_STATUS_ABORT)
1842 decoder->protected_->state = FLAC__STREAM_DECODER_ABORTED;
1843 return status == FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;