Gilles Boccon-Gibod
Sun, 31 May 2009 23:05:04 -0700
static FLAC__StreamDecoderReadStatus
FlacDecoder_ReadCallback(const FLAC__StreamDecoder* flac,
FLAC__byte buffer[],
size_t* bytes,
void* client_data)
{
*bytes=1; /* <--- this was added to always return at most one
byte */
read_only_one_byte_into_buffer(buffer);
return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
}
Any hints on how to get this fixed?
-- Gilles_______________________________________________ Flac mailing list Flac@xiph.org http://lists.xiph.org/mailman/listinfo/flac
[Flac] Bug in bitreader for short reads? Gilles Boccon-Gibod
- Re: [Flac] Bug in bitreader for short reads? Josh Coalson