search for: blocksize_hint

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

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
...e_stream = 1 In the forged STREAMINFO header CRAM specifies a min and max of 16 and 65535 respectively. CRAM does not currently change the block size during the life of the encoder, but may in the future (if some algorithm is discovered for determining optimal block sizes for different samples). blocksize_hint = 0 At line 1721 in version 1.1.2 can be found: if(is_known_variable_blocksize_stream) { if(blocksize_hint) { 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 in...
2006 Nov 16
2
Re: Problem with CRAM and flac-1.1.2
...eader CRAM specifies a min and max of 16 > and > 65535 respectively. CRAM does not currently change the block size > during the life of the encoder, but may in the future (if some > algorithm > is discovered for determining optimal block sizes for different > samples). > > blocksize_hint = 0 > > At line 1721 in version 1.1.2 can be found: > > if(is_known_variable_blocksize_stream) { > if(blocksize_hint) { > > > In the previous version it was: > > if(blocksize_hint && is_known_variable_blocksize_stream) { > > > So it appears tha...