1 /* libFLAC - Free Lossless Audio Codec library
2 * Copyright (C) 2000,2001 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.
22 #include <stdlib.h> /* for malloc() */
23 #include <string.h> /* for memset/memcpy() */
24 #include "FLAC/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/lpc.h"
31 typedef struct FLAC__StreamDecoderPrivate {
32 FLAC__StreamDecoderReadStatus (*read_callback)(const FLAC__StreamDecoder *decoder, byte buffer[], unsigned *bytes, void *client_data);
33 FLAC__StreamDecoderWriteStatus (*write_callback)(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const int32 *buffer[], void *client_data);
34 void (*metadata_callback)(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetaData *metadata, void *client_data);
35 void (*error_callback)(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
36 void (*local_lpc_restore_signal)(const int32 residual[], unsigned data_len, const int32 qlp_coeff[], unsigned order, int lp_quantization, int32 data[]);
38 FLAC__BitBuffer input;
39 int32 *output[FLAC__MAX_CHANNELS];
40 int32 *residual[FLAC__MAX_CHANNELS];
41 unsigned output_capacity, output_channels;
42 uint32 last_frame_number;
43 uint64 samples_decoded;
44 bool has_stream_info, has_seek_table;
45 FLAC__StreamMetaData stream_info;
46 FLAC__StreamMetaData seek_table;
48 bool cached; /* true if there is a byte in lookahead */
49 FLAC__CPUInfo cpuinfo;
50 byte header_warmup[2]; /* contains the sync code and reserved bits */
51 byte lookahead; /* temp storage when we need to look ahead one byte in the stream */
52 } FLAC__StreamDecoderPrivate;
54 static byte ID3V2_TAG_[3] = { 'I', 'D', '3' };
56 static bool stream_decoder_allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels);
57 static bool stream_decoder_find_metadata_(FLAC__StreamDecoder *decoder);
58 static bool stream_decoder_read_metadata_(FLAC__StreamDecoder *decoder);
59 static bool stream_decoder_skip_id3v2_tag_(FLAC__StreamDecoder *decoder);
60 static bool stream_decoder_frame_sync_(FLAC__StreamDecoder *decoder);
61 static bool stream_decoder_read_frame_(FLAC__StreamDecoder *decoder, bool *got_a_frame);
62 static bool stream_decoder_read_frame_header_(FLAC__StreamDecoder *decoder);
63 static bool stream_decoder_read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
64 static bool stream_decoder_read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
65 static bool stream_decoder_read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order);
66 static bool stream_decoder_read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order);
67 static bool stream_decoder_read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps);
68 static bool stream_decoder_read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, unsigned partition_order, int32 *residual);
69 static bool stream_decoder_read_zero_padding_(FLAC__StreamDecoder *decoder);
70 static bool read_callback_(byte buffer[], unsigned *bytes, void *client_data);
72 const char *FLAC__StreamDecoderStateString[] = {
73 "FLAC__STREAM_DECODER_SEARCH_FOR_METADATA",
74 "FLAC__STREAM_DECODER_READ_METADATA",
75 "FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC",
76 "FLAC__STREAM_DECODER_READ_FRAME",
77 "FLAC__STREAM_DECODER_END_OF_STREAM",
78 "FLAC__STREAM_DECODER_ABORTED",
79 "FLAC__STREAM_DECODER_UNPARSEABLE_STREAM",
80 "FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR",
81 "FLAC__STREAM_DECODER_UNINITIALIZED"
84 const char *FLAC__StreamDecoderReadStatusString[] = {
85 "FLAC__STREAM_DECODER_READ_CONTINUE",
86 "FLAC__STREAM_DECODER_READ_END_OF_STREAM",
87 "FLAC__STREAM_DECODER_READ_ABORT"
90 const char *FLAC__StreamDecoderWriteStatusString[] = {
91 "FLAC__STREAM_DECODER_WRITE_CONTINUE",
92 "FLAC__STREAM_DECODER_WRITE_ABORT"
95 const char *FLAC__StreamDecoderErrorStatusString[] = {
96 "FLAC__STREAM_DECODER_ERROR_LOST_SYNC",
97 "FLAC__STREAM_DECODER_ERROR_BAD_HEADER",
98 "FLAC__STREAM_DECODER_ERROR_FRAME_CRC_MISMATCH"
101 FLAC__StreamDecoder *FLAC__stream_decoder_get_new_instance()
103 FLAC__StreamDecoder *decoder = (FLAC__StreamDecoder*)malloc(sizeof(FLAC__StreamDecoder));
105 decoder->state = FLAC__STREAM_DECODER_UNINITIALIZED;
111 void FLAC__stream_decoder_free_instance(FLAC__StreamDecoder *decoder)
116 FLAC__StreamDecoderState FLAC__stream_decoder_init(
117 FLAC__StreamDecoder *decoder,
118 FLAC__StreamDecoderReadStatus (*read_callback)(const FLAC__StreamDecoder *decoder, byte buffer[], unsigned *bytes, void *client_data),
119 FLAC__StreamDecoderWriteStatus (*write_callback)(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const int32 *buffer[], void *client_data),
120 void (*metadata_callback)(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetaData *metadata, void *client_data),
121 void (*error_callback)(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data),
127 assert(sizeof(int) >= 4); /* we want to die right away if this is not true */
128 assert(decoder != 0);
129 assert(read_callback != 0);
130 assert(write_callback != 0);
131 assert(metadata_callback != 0);
132 assert(error_callback != 0);
133 assert(decoder->state == FLAC__STREAM_DECODER_UNINITIALIZED);
134 assert(decoder->guts == 0);
136 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_METADATA;
138 decoder->guts = (FLAC__StreamDecoderPrivate*)malloc(sizeof(FLAC__StreamDecoderPrivate));
139 if(decoder->guts == 0)
140 return decoder->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
142 decoder->guts->read_callback = read_callback;
143 decoder->guts->write_callback = write_callback;
144 decoder->guts->metadata_callback = metadata_callback;
145 decoder->guts->error_callback = error_callback;
146 decoder->guts->client_data = client_data;
148 FLAC__bitbuffer_init(&decoder->guts->input);
150 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
151 decoder->guts->output[i] = 0;
152 decoder->guts->residual[i] = 0;
155 decoder->guts->output_capacity = 0;
156 decoder->guts->output_channels = 0;
157 decoder->guts->last_frame_number = 0;
158 decoder->guts->samples_decoded = 0;
159 decoder->guts->has_stream_info = false;
160 decoder->guts->has_seek_table = false;
161 decoder->guts->cached = false;
164 * get the CPU info and set the function pointers
166 FLAC__cpu_info(&decoder->guts->cpuinfo);
167 /* first default to the non-asm routines */
168 decoder->guts->local_lpc_restore_signal = FLAC__lpc_restore_signal;
169 /* now override with asm where appropriate */
171 assert(decoder->guts->cpuinfo.use_asm);
172 #ifdef FLAC__CPU_IA32
173 assert(decoder->guts->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
174 #ifdef FLAC__HAS_NASM
176 /* @@@ MMX version needs bps check */
177 if(decoder->guts->cpuinfo.data.ia32.mmx && @@@bps check here@@@)
179 decoder->guts->local_lpc_restore_signal = FLAC__lpc_restore_signal_asm_i386_mmx;
180 fprintf(stderr,"@@@ got _asm_i386_mmx of lpc_restore_signal()\n");}
184 decoder->guts->local_lpc_restore_signal = FLAC__lpc_restore_signal_asm_i386;
185 fprintf(stderr,"@@@ got _asm_i386 of lpc_restore_signal()\n");}
190 return decoder->state;
193 void FLAC__stream_decoder_finish(FLAC__StreamDecoder *decoder)
196 assert(decoder != 0);
197 if(decoder->state == FLAC__STREAM_DECODER_UNINITIALIZED)
199 if(decoder->guts != 0) {
200 if(decoder->guts->has_seek_table) {
201 free(decoder->guts->seek_table.data.seek_table.points);
202 decoder->guts->seek_table.data.seek_table.points = 0;
204 FLAC__bitbuffer_free(&decoder->guts->input);
205 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
206 if(decoder->guts->output[i] != 0) {
207 free(decoder->guts->output[i]);
208 decoder->guts->output[i] = 0;
210 if(decoder->guts->residual[i] != 0) {
211 free(decoder->guts->residual[i]);
212 decoder->guts->residual[i] = 0;
218 decoder->state = FLAC__STREAM_DECODER_UNINITIALIZED;
221 bool FLAC__stream_decoder_flush(FLAC__StreamDecoder *decoder)
223 assert(decoder != 0);
225 if(!FLAC__bitbuffer_clear(&decoder->guts->input)) {
226 decoder->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
233 bool FLAC__stream_decoder_reset(FLAC__StreamDecoder *decoder)
235 assert(decoder != 0);
237 if(!FLAC__stream_decoder_flush(decoder)) {
238 decoder->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
241 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_METADATA;
243 decoder->guts->samples_decoded = 0;
248 bool FLAC__stream_decoder_process_whole_stream(FLAC__StreamDecoder *decoder)
251 assert(decoder != 0);
253 if(decoder->state == FLAC__STREAM_DECODER_END_OF_STREAM)
256 assert(decoder->state == FLAC__STREAM_DECODER_SEARCH_FOR_METADATA);
258 if(!FLAC__stream_decoder_reset(decoder)) {
259 decoder->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
264 switch(decoder->state) {
265 case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
266 if(!stream_decoder_find_metadata_(decoder))
267 return false; /* above function sets the status for us */
269 case FLAC__STREAM_DECODER_READ_METADATA:
270 if(!stream_decoder_read_metadata_(decoder))
271 return false; /* above function sets the status for us */
273 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
274 if(!stream_decoder_frame_sync_(decoder))
275 return true; /* above function sets the status for us */
277 case FLAC__STREAM_DECODER_READ_FRAME:
278 if(!stream_decoder_read_frame_(decoder, &dummy))
279 return false; /* above function sets the status for us */
281 case FLAC__STREAM_DECODER_END_OF_STREAM:
289 bool FLAC__stream_decoder_process_metadata(FLAC__StreamDecoder *decoder)
291 assert(decoder != 0);
293 if(decoder->state == FLAC__STREAM_DECODER_END_OF_STREAM)
296 assert(decoder->state == FLAC__STREAM_DECODER_SEARCH_FOR_METADATA);
298 if(!FLAC__stream_decoder_reset(decoder)) {
299 decoder->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
304 switch(decoder->state) {
305 case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
306 if(!stream_decoder_find_metadata_(decoder))
307 return false; /* above function sets the status for us */
309 case FLAC__STREAM_DECODER_READ_METADATA:
310 if(!stream_decoder_read_metadata_(decoder))
311 return false; /* above function sets the status for us */
313 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
316 case FLAC__STREAM_DECODER_END_OF_STREAM:
324 bool FLAC__stream_decoder_process_one_frame(FLAC__StreamDecoder *decoder)
327 assert(decoder != 0);
329 if(decoder->state == FLAC__STREAM_DECODER_END_OF_STREAM)
332 assert(decoder->state == FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC);
335 switch(decoder->state) {
336 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
337 if(!stream_decoder_frame_sync_(decoder))
338 return true; /* above function sets the status for us */
340 case FLAC__STREAM_DECODER_READ_FRAME:
341 if(!stream_decoder_read_frame_(decoder, &got_a_frame))
342 return false; /* above function sets the status for us */
344 return true; /* above function sets the status for us */
346 case FLAC__STREAM_DECODER_END_OF_STREAM:
354 bool FLAC__stream_decoder_process_remaining_frames(FLAC__StreamDecoder *decoder)
357 assert(decoder != 0);
359 if(decoder->state == FLAC__STREAM_DECODER_END_OF_STREAM)
362 assert(decoder->state == FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC);
365 switch(decoder->state) {
366 case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
367 if(!stream_decoder_frame_sync_(decoder))
368 return true; /* above function sets the status for us */
370 case FLAC__STREAM_DECODER_READ_FRAME:
371 if(!stream_decoder_read_frame_(decoder, &dummy))
372 return false; /* above function sets the status for us */
374 case FLAC__STREAM_DECODER_END_OF_STREAM:
382 unsigned FLAC__stream_decoder_input_bytes_unconsumed(FLAC__StreamDecoder *decoder)
384 assert(decoder != 0);
385 return decoder->guts->input.bytes - decoder->guts->input.consumed_bytes;
388 bool stream_decoder_allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels)
393 if(size <= decoder->guts->output_capacity && channels <= decoder->guts->output_channels)
396 /* @@@ should change to use realloc() */
398 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
399 if(decoder->guts->output[i] != 0) {
400 free(decoder->guts->output[i]);
401 decoder->guts->output[i] = 0;
403 if(decoder->guts->residual[i] != 0) {
404 free(decoder->guts->residual[i]);
405 decoder->guts->residual[i] = 0;
409 for(i = 0; i < channels; i++) {
410 tmp = (int32*)malloc(sizeof(int32)*size);
412 decoder->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
415 decoder->guts->output[i] = tmp;
417 tmp = (int32*)malloc(sizeof(int32)*size);
419 decoder->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
422 decoder->guts->residual[i] = tmp;
425 decoder->guts->output_capacity = size;
426 decoder->guts->output_channels = channels;
431 bool stream_decoder_find_metadata_(FLAC__StreamDecoder *decoder)
437 assert(decoder->guts->input.consumed_bits == 0); /* make sure we're byte aligned */
439 for(i = id = 0; i < 4; ) {
440 if(decoder->guts->cached) {
441 x = (uint32)decoder->guts->lookahead;
442 decoder->guts->cached = false;
445 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
446 return false; /* the read_callback_ sets the state for us */
448 if(x == FLAC__STREAM_SYNC_STRING[i]) {
454 if(x == ID3V2_TAG_[id]) {
458 if(!stream_decoder_skip_id3v2_tag_(decoder))
459 return false; /* the read_callback_ sets the state for us */
463 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
464 decoder->guts->header_warmup[0] = (byte)x;
465 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
466 return false; /* the read_callback_ sets the state for us */
468 /* 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 */
469 /* else we have to check if the second byte is the end of a sync code */
470 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
471 decoder->guts->lookahead = (byte)x;
472 decoder->guts->cached = true;
474 else if(x >> 2 == 0x3e) { /* MAGIC NUMBER for the last 6 sync bits */
475 decoder->guts->header_warmup[1] = (byte)x;
476 decoder->state = FLAC__STREAM_DECODER_READ_FRAME;
482 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_LOST_SYNC, decoder->guts->client_data);
487 decoder->state = FLAC__STREAM_DECODER_READ_METADATA;
491 bool stream_decoder_read_metadata_(FLAC__StreamDecoder *decoder)
493 uint32 i, x, last_block, type, length;
496 assert(decoder->guts->input.consumed_bits == 0); /* make sure we're byte aligned */
498 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &last_block, FLAC__STREAM_METADATA_IS_LAST_LEN, read_callback_, decoder))
499 return false; /* the read_callback_ sets the state for us */
500 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &type, FLAC__STREAM_METADATA_TYPE_LEN, read_callback_, decoder))
501 return false; /* the read_callback_ sets the state for us */
502 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &length, FLAC__STREAM_METADATA_LENGTH_LEN, read_callback_, decoder))
503 return false; /* the read_callback_ sets the state for us */
504 if(type == FLAC__METADATA_TYPE_STREAMINFO) {
505 unsigned used_bits = 0;
506 decoder->guts->stream_info.type = type;
507 decoder->guts->stream_info.is_last = last_block;
508 decoder->guts->stream_info.length = length;
510 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN, read_callback_, decoder))
511 return false; /* the read_callback_ sets the state for us */
512 decoder->guts->stream_info.data.stream_info.min_blocksize = x;
513 used_bits += FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN;
515 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN, read_callback_, decoder))
516 return false; /* the read_callback_ sets the state for us */
517 decoder->guts->stream_info.data.stream_info.max_blocksize = x;
518 used_bits += FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN;
520 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN, read_callback_, decoder))
521 return false; /* the read_callback_ sets the state for us */
522 decoder->guts->stream_info.data.stream_info.min_framesize = x;
523 used_bits += FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN;
525 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN, read_callback_, decoder))
526 return false; /* the read_callback_ sets the state for us */
527 decoder->guts->stream_info.data.stream_info.max_framesize = x;
528 used_bits += FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN;
530 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN, read_callback_, decoder))
531 return false; /* the read_callback_ sets the state for us */
532 decoder->guts->stream_info.data.stream_info.sample_rate = x;
533 used_bits += FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN;
535 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN, read_callback_, decoder))
536 return false; /* the read_callback_ sets the state for us */
537 decoder->guts->stream_info.data.stream_info.channels = x+1;
538 used_bits += FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN;
540 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN, read_callback_, decoder))
541 return false; /* the read_callback_ sets the state for us */
542 decoder->guts->stream_info.data.stream_info.bits_per_sample = x+1;
543 used_bits += FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN;
545 if(!FLAC__bitbuffer_read_raw_uint64(&decoder->guts->input, &decoder->guts->stream_info.data.stream_info.total_samples, FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN, read_callback_, decoder))
546 return false; /* the read_callback_ sets the state for us */
547 used_bits += FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN;
549 for(i = 0; i < 16; i++) {
550 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
551 return false; /* the read_callback_ sets the state for us */
552 decoder->guts->stream_info.data.stream_info.md5sum[i] = (byte)x;
556 /* skip the rest of the block */
557 assert(used_bits % 8 == 0);
558 length -= (used_bits / 8);
559 for(i = 0; i < length; i++) {
560 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
561 return false; /* the read_callback_ sets the state for us */
564 decoder->guts->has_stream_info = true;
565 decoder->guts->metadata_callback(decoder, &decoder->guts->stream_info, decoder->guts->client_data);
567 else if(type == FLAC__METADATA_TYPE_SEEKTABLE) {
568 unsigned real_points;
570 decoder->guts->seek_table.type = type;
571 decoder->guts->seek_table.is_last = last_block;
572 decoder->guts->seek_table.length = length;
574 decoder->guts->seek_table.data.seek_table.num_points = length / FLAC__STREAM_METADATA_SEEKPOINT_LEN;
576 if(0 == (decoder->guts->seek_table.data.seek_table.points = (FLAC__StreamMetaData_SeekPoint*)malloc(decoder->guts->seek_table.data.seek_table.num_points * sizeof(FLAC__StreamMetaData_SeekPoint)))) {
577 decoder->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
580 for(i = real_points = 0; i < decoder->guts->seek_table.data.seek_table.num_points; i++) {
581 if(!FLAC__bitbuffer_read_raw_uint64(&decoder->guts->input, &xx, FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN, read_callback_, decoder))
582 return false; /* the read_callback_ sets the state for us */
583 decoder->guts->seek_table.data.seek_table.points[real_points].sample_number = xx;
585 if(!FLAC__bitbuffer_read_raw_uint64(&decoder->guts->input, &xx, FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN, read_callback_, decoder))
586 return false; /* the read_callback_ sets the state for us */
587 decoder->guts->seek_table.data.seek_table.points[real_points].stream_offset = xx;
589 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN, read_callback_, decoder))
590 return false; /* the read_callback_ sets the state for us */
591 decoder->guts->seek_table.data.seek_table.points[real_points].frame_samples = x;
593 if(decoder->guts->seek_table.data.seek_table.points[real_points].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER)
596 decoder->guts->seek_table.data.seek_table.num_points = real_points;
598 decoder->guts->has_seek_table = true;
599 decoder->guts->metadata_callback(decoder, &decoder->guts->seek_table, decoder->guts->client_data);
602 /* skip other metadata blocks */
603 for(i = 0; i < length; i++) {
604 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
605 return false; /* the read_callback_ sets the state for us */
610 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
615 bool stream_decoder_skip_id3v2_tag_(FLAC__StreamDecoder *decoder)
620 /* skip the version and flags bytes */
621 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 24, read_callback_, decoder))
622 return false; /* the read_callback_ sets the state for us */
623 /* get the size (in bytes) to skip */
625 for(i = 0; i < 4; i++) {
626 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
627 return false; /* the read_callback_ sets the state for us */
631 /* skip the rest of the tag */
632 for(i = 0; i < skip; i++) {
633 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
634 return false; /* the read_callback_ sets the state for us */
639 bool stream_decoder_frame_sync_(FLAC__StreamDecoder *decoder)
644 /* If we know the total number of samples in the stream, stop if we've read that many. */
645 /* This will stop us, for example, from wasting time trying to sync on an ID3V1 tag. */
646 if(decoder->guts->has_stream_info && decoder->guts->stream_info.data.stream_info.total_samples) {
647 if(decoder->guts->samples_decoded >= decoder->guts->stream_info.data.stream_info.total_samples) {
648 decoder->state = FLAC__STREAM_DECODER_END_OF_STREAM;
653 /* make sure we're byte aligned */
654 if(decoder->guts->input.consumed_bits != 0) {
655 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8-decoder->guts->input.consumed_bits, read_callback_, decoder))
656 return false; /* the read_callback_ sets the state for us */
660 if(decoder->guts->cached) {
661 x = (uint32)decoder->guts->lookahead;
662 decoder->guts->cached = false;
665 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
666 return false; /* the read_callback_ sets the state for us */
668 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
669 decoder->guts->header_warmup[0] = (byte)x;
670 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
671 return false; /* the read_callback_ sets the state for us */
673 /* 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 */
674 /* else we have to check if the second byte is the end of a sync code */
675 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
676 decoder->guts->lookahead = (byte)x;
677 decoder->guts->cached = true;
679 else if(x >> 2 == 0x3e) { /* MAGIC NUMBER for the last 6 sync bits */
680 decoder->guts->header_warmup[1] = (byte)x;
681 decoder->state = FLAC__STREAM_DECODER_READ_FRAME;
686 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_LOST_SYNC, decoder->guts->client_data);
694 bool stream_decoder_read_frame_(FLAC__StreamDecoder *decoder, bool *got_a_frame)
698 int32 mid, side, left, right;
699 uint16 frame_crc; /* the one we calculate from the input stream */
702 *got_a_frame = false;
706 FLAC__CRC16_UPDATE(decoder->guts->header_warmup[0], frame_crc);
707 FLAC__CRC16_UPDATE(decoder->guts->header_warmup[1], frame_crc);
708 FLAC__bitbuffer_init_read_crc16(&decoder->guts->input, frame_crc);
710 if(!stream_decoder_read_frame_header_(decoder))
712 if(decoder->state == FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC)
714 if(!stream_decoder_allocate_output_(decoder, decoder->guts->frame.header.blocksize, decoder->guts->frame.header.channels))
716 for(channel = 0; channel < decoder->guts->frame.header.channels; channel++) {
718 * first figure the correct bits-per-sample of the subframe
720 unsigned bps = decoder->guts->frame.header.bits_per_sample;
721 switch(decoder->guts->frame.header.channel_assignment) {
722 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
723 /* no adjustment needed */
725 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
726 assert(decoder->guts->frame.header.channels == 2);
730 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
731 assert(decoder->guts->frame.header.channels == 2);
735 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
736 assert(decoder->guts->frame.header.channels == 2);
746 if(!stream_decoder_read_subframe_(decoder, channel, bps))
748 if(decoder->state != FLAC__STREAM_DECODER_READ_FRAME) {
749 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
753 if(!stream_decoder_read_zero_padding_(decoder))
757 * Read the frame CRC-16 from the footer and check
759 frame_crc = decoder->guts->input.read_crc16;
760 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, FLAC__FRAME_FOOTER_CRC_LEN, read_callback_, decoder))
761 return false; /* the read_callback_ sets the state for us */
762 if(frame_crc == (uint16)x) {
763 /* Undo any special channel coding */
764 switch(decoder->guts->frame.header.channel_assignment) {
765 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
768 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
769 assert(decoder->guts->frame.header.channels == 2);
770 for(i = 0; i < decoder->guts->frame.header.blocksize; i++)
771 decoder->guts->output[1][i] = decoder->guts->output[0][i] - decoder->guts->output[1][i];
773 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
774 assert(decoder->guts->frame.header.channels == 2);
775 for(i = 0; i < decoder->guts->frame.header.blocksize; i++)
776 decoder->guts->output[0][i] += decoder->guts->output[1][i];
778 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
779 assert(decoder->guts->frame.header.channels == 2);
780 for(i = 0; i < decoder->guts->frame.header.blocksize; i++) {
781 mid = decoder->guts->output[0][i];
782 side = decoder->guts->output[1][i];
784 if(side & 1) /* i.e. if 'side' is odd... */
788 decoder->guts->output[0][i] = left >> 1;
789 decoder->guts->output[1][i] = right >> 1;
798 /* Bad frame, emit error and zero the output signal */
799 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_FRAME_CRC_MISMATCH, decoder->guts->client_data);
800 for(channel = 0; channel < decoder->guts->frame.header.channels; channel++) {
801 memset(decoder->guts->output[channel], 0, sizeof(int32) * decoder->guts->frame.header.blocksize);
807 /* put the latest values into the public section of the decoder instance */
808 decoder->channels = decoder->guts->frame.header.channels;
809 decoder->channel_assignment = decoder->guts->frame.header.channel_assignment;
810 decoder->bits_per_sample = decoder->guts->frame.header.bits_per_sample;
811 decoder->sample_rate = decoder->guts->frame.header.sample_rate;
812 decoder->blocksize = decoder->guts->frame.header.blocksize;
814 decoder->guts->samples_decoded = decoder->guts->frame.header.number.sample_number + decoder->guts->frame.header.blocksize;
817 /* NOTE: some versions of GCC can't figure out const-ness right and will give you an 'incompatible pointer type' warning on arg 3 here: */
818 if(decoder->guts->write_callback(decoder, &decoder->guts->frame, decoder->guts->output, decoder->guts->client_data) != FLAC__STREAM_DECODER_WRITE_CONTINUE)
821 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
825 bool stream_decoder_read_frame_header_(FLAC__StreamDecoder *decoder)
829 unsigned i, blocksize_hint = 0, sample_rate_hint = 0;
830 byte crc8, raw_header[16]; /* MAGIC NUMBER based on the maximum frame header size, including CRC */
831 unsigned raw_header_len;
832 bool is_unparseable = false;
833 const bool is_known_variable_blocksize_stream = (decoder->guts->has_stream_info && decoder->guts->stream_info.data.stream_info.min_blocksize != decoder->guts->stream_info.data.stream_info.max_blocksize);
834 const bool is_known_fixed_blocksize_stream = (decoder->guts->has_stream_info && decoder->guts->stream_info.data.stream_info.min_blocksize == decoder->guts->stream_info.data.stream_info.max_blocksize);
836 assert(decoder->guts->input.consumed_bits == 0); /* make sure we're byte aligned */
838 /* init the raw header with the saved bits from synchronization */
839 raw_header[0] = decoder->guts->header_warmup[0];
840 raw_header[1] = decoder->guts->header_warmup[1];
844 * check to make sure that the reserved bits are 0
846 if(raw_header[1] & 0x03) { /* MAGIC NUMBER */
847 is_unparseable = true;
851 * Note that along the way as we read the header, we look for a sync
852 * code inside. If we find one it would indicate that our original
853 * sync was bad since there cannot be a sync code in a valid header.
857 * read in the raw header as bytes so we can CRC it, and parse it on the way
859 for(i = 0; i < 2; i++) {
860 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
861 return false; /* the read_callback_ sets the state for us */
862 if(x == 0xff) { /* MAGIC NUMBER for the first 8 frame sync bits */
863 /* if we get here it means our original sync was erroneous since the sync code cannot appear in the header */
864 decoder->guts->lookahead = (byte)x;
865 decoder->guts->cached = true;
866 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_BAD_HEADER, decoder->guts->client_data);
867 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
870 raw_header[raw_header_len++] = (byte)x;
873 switch(x = raw_header[2] >> 4) {
875 if(is_known_fixed_blocksize_stream)
876 decoder->guts->frame.header.blocksize = decoder->guts->stream_info.data.stream_info.min_blocksize;
878 is_unparseable = true;
881 decoder->guts->frame.header.blocksize = 192;
887 decoder->guts->frame.header.blocksize = 576 << (x-2);
901 decoder->guts->frame.header.blocksize = 256 << (x-8);
908 switch(x = raw_header[2] & 0x0f) {
910 if(decoder->guts->has_stream_info)
911 decoder->guts->frame.header.sample_rate = decoder->guts->stream_info.data.stream_info.sample_rate;
913 is_unparseable = true;
918 is_unparseable = true;
921 decoder->guts->frame.header.sample_rate = 8000;
924 decoder->guts->frame.header.sample_rate = 16000;
927 decoder->guts->frame.header.sample_rate = 22050;
930 decoder->guts->frame.header.sample_rate = 24000;
933 decoder->guts->frame.header.sample_rate = 32000;
936 decoder->guts->frame.header.sample_rate = 44100;
939 decoder->guts->frame.header.sample_rate = 48000;
942 decoder->guts->frame.header.sample_rate = 96000;
947 sample_rate_hint = x;
950 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_BAD_HEADER, decoder->guts->client_data);
951 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
957 x = (unsigned)(raw_header[3] >> 4);
959 decoder->guts->frame.header.channels = 2;
962 decoder->guts->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE;
965 decoder->guts->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE;
968 decoder->guts->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_MID_SIDE;
971 is_unparseable = true;
976 decoder->guts->frame.header.channels = (unsigned)x + 1;
977 decoder->guts->frame.header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT;
980 switch(x = (unsigned)(raw_header[3] & 0x0e) >> 1) {
982 if(decoder->guts->has_stream_info)
983 decoder->guts->frame.header.bits_per_sample = decoder->guts->stream_info.data.stream_info.bits_per_sample;
985 is_unparseable = true;
988 decoder->guts->frame.header.bits_per_sample = 8;
991 decoder->guts->frame.header.bits_per_sample = 12;
994 decoder->guts->frame.header.bits_per_sample = 16;
997 decoder->guts->frame.header.bits_per_sample = 20;
1000 decoder->guts->frame.header.bits_per_sample = 24;
1004 is_unparseable = true;
1011 if(raw_header[3] & 0x01) { /* this should be a zero padding bit */
1012 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_BAD_HEADER, decoder->guts->client_data);
1013 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1017 if(blocksize_hint && is_known_variable_blocksize_stream) {
1018 if(!FLAC__bitbuffer_read_utf8_uint64(&decoder->guts->input, &xx, read_callback_, decoder, raw_header, &raw_header_len))
1019 return false; /* the read_callback_ sets the state for us */
1020 if(xx == 0xffffffffffffffff) { /* i.e. non-UTF8 code... */
1021 decoder->guts->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
1022 decoder->guts->cached = true;
1023 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_BAD_HEADER, decoder->guts->client_data);
1024 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1027 decoder->guts->frame.header.number.sample_number = xx;
1030 if(!FLAC__bitbuffer_read_utf8_uint32(&decoder->guts->input, &x, read_callback_, decoder, raw_header, &raw_header_len))
1031 return false; /* the read_callback_ sets the state for us */
1032 if(x == 0xffffffff) { /* i.e. non-UTF8 code... */
1033 decoder->guts->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
1034 decoder->guts->cached = true;
1035 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_BAD_HEADER, decoder->guts->client_data);
1036 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1039 decoder->guts->last_frame_number = x;
1040 if(decoder->guts->has_stream_info) {
1041 decoder->guts->frame.header.number.sample_number = (int64)decoder->guts->stream_info.data.stream_info.min_blocksize * (int64)x;
1044 is_unparseable = true;
1048 if(blocksize_hint) {
1049 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
1050 return false; /* the read_callback_ sets the state for us */
1051 raw_header[raw_header_len++] = (byte)x;
1052 if(blocksize_hint == 7) {
1054 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &_x, 8, read_callback_, decoder))
1055 return false; /* the read_callback_ sets the state for us */
1056 raw_header[raw_header_len++] = (byte)_x;
1059 decoder->guts->frame.header.blocksize = x+1;
1062 if(sample_rate_hint) {
1063 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
1064 return false; /* the read_callback_ sets the state for us */
1065 raw_header[raw_header_len++] = (byte)x;
1066 if(sample_rate_hint != 12) {
1068 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &_x, 8, read_callback_, decoder))
1069 return false; /* the read_callback_ sets the state for us */
1070 raw_header[raw_header_len++] = (byte)_x;
1073 if(sample_rate_hint == 12)
1074 decoder->guts->frame.header.sample_rate = x*1000;
1075 else if(sample_rate_hint == 13)
1076 decoder->guts->frame.header.sample_rate = x;
1078 decoder->guts->frame.header.sample_rate = x*10;
1081 /* read the CRC-8 byte */
1082 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder))
1083 return false; /* the read_callback_ sets the state for us */
1086 if(FLAC__crc8(raw_header, raw_header_len) != crc8) {
1087 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_BAD_HEADER, decoder->guts->client_data);
1088 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1092 if(is_unparseable) {
1093 decoder->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1100 bool stream_decoder_read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1105 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &x, 8, read_callback_, decoder)) /* MAGIC NUMBER */
1106 return false; /* the read_callback_ sets the state for us */
1108 wasted_bits = (x & 1);
1113 if(!FLAC__bitbuffer_read_unary_unsigned(&decoder->guts->input, &u, read_callback_, decoder))
1114 return false; /* the read_callback_ sets the state for us */
1115 decoder->guts->frame.subframes[channel].wasted_bits = u+1;
1116 bps -= decoder->guts->frame.subframes[channel].wasted_bits;
1119 decoder->guts->frame.subframes[channel].wasted_bits = 0;
1122 * Lots of magic numbers here
1125 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_LOST_SYNC, decoder->guts->client_data);
1126 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1130 if(!stream_decoder_read_subframe_constant_(decoder, channel, bps))
1134 if(!stream_decoder_read_subframe_verbatim_(decoder, channel, bps))
1138 decoder->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1142 if(!stream_decoder_read_subframe_fixed_(decoder, channel, bps, (x>>1)&7))
1146 decoder->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1150 if(!stream_decoder_read_subframe_lpc_(decoder, channel, bps, ((x>>1)&31)+1))
1156 x = decoder->guts->frame.subframes[channel].wasted_bits;
1157 for(i = 0; i < decoder->guts->frame.header.blocksize; i++)
1158 decoder->guts->output[channel][i] <<= x;
1164 bool stream_decoder_read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1166 FLAC__Subframe_Constant *subframe = &decoder->guts->frame.subframes[channel].data.constant;
1169 int32 *output = decoder->guts->output[channel];
1171 decoder->guts->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_CONSTANT;
1173 if(!FLAC__bitbuffer_read_raw_int32(&decoder->guts->input, &x, bps, read_callback_, decoder))
1174 return false; /* the read_callback_ sets the state for us */
1176 subframe->value = x;
1178 /* decode the subframe */
1179 for(i = 0; i < decoder->guts->frame.header.blocksize; i++)
1185 bool stream_decoder_read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order)
1187 FLAC__Subframe_Fixed *subframe = &decoder->guts->frame.subframes[channel].data.fixed;
1192 decoder->guts->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_FIXED;
1194 subframe->residual = decoder->guts->residual[channel];
1195 subframe->order = order;
1197 /* read warm-up samples */
1198 for(u = 0; u < order; u++) {
1199 if(!FLAC__bitbuffer_read_raw_int32(&decoder->guts->input, &i32, bps, read_callback_, decoder))
1200 return false; /* the read_callback_ sets the state for us */
1201 subframe->warmup[u] = i32;
1204 /* read entropy coding method info */
1205 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &u32, FLAC__ENTROPY_CODING_METHOD_TYPE_LEN, read_callback_, decoder))
1206 return false; /* the read_callback_ sets the state for us */
1207 subframe->entropy_coding_method.type = u32;
1208 switch(subframe->entropy_coding_method.type) {
1209 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1210 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &u32, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN, read_callback_, decoder))
1211 return false; /* the read_callback_ sets the state for us */
1212 subframe->entropy_coding_method.data.partitioned_rice.order = u32;
1215 decoder->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1220 switch(subframe->entropy_coding_method.type) {
1221 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1222 if(!stream_decoder_read_residual_partitioned_rice_(decoder, order, subframe->entropy_coding_method.data.partitioned_rice.order, decoder->guts->residual[channel]))
1229 /* decode the subframe */
1230 memcpy(decoder->guts->output[channel], subframe->warmup, sizeof(int32) * order);
1231 FLAC__fixed_restore_signal(decoder->guts->residual[channel], decoder->guts->frame.header.blocksize-order, order, decoder->guts->output[channel]+order);
1236 bool stream_decoder_read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order)
1238 FLAC__Subframe_LPC *subframe = &decoder->guts->frame.subframes[channel].data.lpc;
1243 decoder->guts->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_LPC;
1245 subframe->residual = decoder->guts->residual[channel];
1246 subframe->order = order;
1248 /* read warm-up samples */
1249 for(u = 0; u < order; u++) {
1250 if(!FLAC__bitbuffer_read_raw_int32(&decoder->guts->input, &i32, bps, read_callback_, decoder))
1251 return false; /* the read_callback_ sets the state for us */
1252 subframe->warmup[u] = i32;
1255 /* read qlp coeff precision */
1256 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &u32, FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN, read_callback_, decoder))
1257 return false; /* the read_callback_ sets the state for us */
1258 if(u32 == (1u << FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN) - 1) {
1259 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_LOST_SYNC, decoder->guts->client_data);
1260 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1263 subframe->qlp_coeff_precision = u32+1;
1265 /* read qlp shift */
1266 if(!FLAC__bitbuffer_read_raw_int32(&decoder->guts->input, &i32, FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN, read_callback_, decoder))
1267 return false; /* the read_callback_ sets the state for us */
1268 subframe->quantization_level = i32;
1270 /* read quantized lp coefficiencts */
1271 for(u = 0; u < order; u++) {
1272 if(!FLAC__bitbuffer_read_raw_int32(&decoder->guts->input, &i32, subframe->qlp_coeff_precision, read_callback_, decoder))
1273 return false; /* the read_callback_ sets the state for us */
1274 subframe->qlp_coeff[u] = i32;
1277 /* read entropy coding method info */
1278 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &u32, FLAC__ENTROPY_CODING_METHOD_TYPE_LEN, read_callback_, decoder))
1279 return false; /* the read_callback_ sets the state for us */
1280 subframe->entropy_coding_method.type = u32;
1281 switch(subframe->entropy_coding_method.type) {
1282 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1283 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &u32, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN, read_callback_, decoder))
1284 return false; /* the read_callback_ sets the state for us */
1285 subframe->entropy_coding_method.data.partitioned_rice.order = u32;
1288 decoder->state = FLAC__STREAM_DECODER_UNPARSEABLE_STREAM;
1293 switch(subframe->entropy_coding_method.type) {
1294 case FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE:
1295 if(!stream_decoder_read_residual_partitioned_rice_(decoder, order, subframe->entropy_coding_method.data.partitioned_rice.order, decoder->guts->residual[channel]))
1302 /* decode the subframe */
1303 memcpy(decoder->guts->output[channel], subframe->warmup, sizeof(int32) * order);
1304 decoder->guts->local_lpc_restore_signal(decoder->guts->residual[channel], decoder->guts->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->quantization_level, decoder->guts->output[channel]+order);
1309 bool stream_decoder_read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps)
1311 FLAC__Subframe_Verbatim *subframe = &decoder->guts->frame.subframes[channel].data.verbatim;
1312 int32 x, *residual = decoder->guts->residual[channel];
1315 decoder->guts->frame.subframes[channel].type = FLAC__SUBFRAME_TYPE_VERBATIM;
1317 subframe->data = residual;
1319 for(i = 0; i < decoder->guts->frame.header.blocksize; i++) {
1320 if(!FLAC__bitbuffer_read_raw_int32(&decoder->guts->input, &x, bps, read_callback_, decoder))
1321 return false; /* the read_callback_ sets the state for us */
1325 /* decode the subframe */
1326 memcpy(decoder->guts->output[channel], subframe->data, sizeof(int32) * decoder->guts->frame.header.blocksize);
1331 bool stream_decoder_read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, unsigned partition_order, int32 *residual)
1333 uint32 rice_parameter;
1335 unsigned partition, sample, u;
1336 const unsigned partitions = 1u << partition_order;
1337 const unsigned partition_samples = partition_order > 0? decoder->guts->frame.header.blocksize >> partition_order : decoder->guts->frame.header.blocksize - predictor_order;
1340 for(partition = 0; partition < partitions; partition++) {
1341 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN, read_callback_, decoder))
1342 return false; /* the read_callback_ sets the state for us */
1343 if(rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
1344 for(u = (partition_order == 0 || partition > 0)? 0 : predictor_order; u < partition_samples; u++, sample++) {
1345 #ifdef FLAC__SYMMETRIC_RICE
1346 if(!FLAC__bitbuffer_read_symmetric_rice_signed(&decoder->guts->input, &i, rice_parameter, read_callback_, decoder))
1347 return false; /* the read_callback_ sets the state for us */
1349 if(!FLAC__bitbuffer_read_rice_signed(&decoder->guts->input, &i, rice_parameter, read_callback_, decoder))
1350 return false; /* the read_callback_ sets the state for us */
1352 residual[sample] = i;
1356 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN, read_callback_, decoder))
1357 return false; /* the read_callback_ sets the state for us */
1358 for(u = (partition_order == 0 || partition > 0)? 0 : predictor_order; u < partition_samples; u++, sample++) {
1359 if(!FLAC__bitbuffer_read_raw_int32(&decoder->guts->input, &i, rice_parameter, read_callback_, decoder))
1360 return false; /* the read_callback_ sets the state for us */
1361 residual[sample] = i;
1369 bool stream_decoder_read_zero_padding_(FLAC__StreamDecoder *decoder)
1371 if(decoder->guts->input.consumed_bits != 0) {
1373 if(!FLAC__bitbuffer_read_raw_uint32(&decoder->guts->input, &zero, 8-decoder->guts->input.consumed_bits, read_callback_, decoder))
1374 return false; /* the read_callback_ sets the state for us */
1376 decoder->guts->error_callback(decoder, FLAC__STREAM_DECODER_ERROR_LOST_SYNC, decoder->guts->client_data);
1377 decoder->state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC;
1383 bool read_callback_(byte buffer[], unsigned *bytes, void *client_data)
1385 FLAC__StreamDecoder *decoder = (FLAC__StreamDecoder *)client_data;
1386 FLAC__StreamDecoderReadStatus status;
1387 status = decoder->guts->read_callback(decoder, buffer, bytes, decoder->guts->client_data);
1388 if(status == FLAC__STREAM_DECODER_READ_END_OF_STREAM)
1389 decoder->state = FLAC__STREAM_DECODER_END_OF_STREAM;
1390 else if(status == FLAC__STREAM_DECODER_READ_ABORT)
1391 decoder->state = FLAC__STREAM_DECODER_ABORTED;
1392 return status == FLAC__STREAM_DECODER_READ_CONTINUE;