search for: read_frame_header_

Displaying 3 results from an estimated 3 matches for "read_frame_header_".

2006 Jul 24
3
Problem with CRAM and flac-1.1.2
A user of CRAM (http://swami.sourceforge.net/cram.php) sent in a bug report related to decoding of CRAM files. This issue occurs with flac-1.1.2 but not previous versions (such as flac-1.1.1). Note that the same file is used for this test (hopefully ruling out any issue with the encoder). Details of the issue: When calling FLAC__stream_decoder_process_single() the error callback is triggered
2006 Jul 25
0
Re: Problem with CRAM and flac-1.1.2
...In the previous version it was: if(blocksize_hint && is_known_variable_blocksize_stream) { So it appears that the stream decoder does not like the fact that STREAMINFO is indicating a variable block size but no blocksize_hint was found. Looking at the switch statement towards the top of read_frame_header_() for the block size it looks like blocksize_hint is only set on 'case 7:' (16 bit blocksize from end of header), seems in the CRAM case it is using 'case 5:' (576/1152/2304/4608). Any suggestions on the best way to resolve this? I suppose one solution might be to just set the min...
2006 Nov 16
2
Re: Problem with CRAM and flac-1.1.2
...(blocksize_hint && is_known_variable_blocksize_stream) { > > > So it appears that the stream decoder does not like the fact that > STREAMINFO is indicating a variable block size but no blocksize_hint > was > found. Looking at the switch statement towards the top of > read_frame_header_() for the block size it looks like blocksize_hint > is > only set on 'case 7:' (16 bit blocksize from end of header), seems in > the CRAM case it is using 'case 5:' (576/1152/2304/4608). > > Any suggestions on the best way to resolve this? I suppose one > solutio...