Displaying 1 result from an estimated 1 matches for "amplitude_offset".
2003 Apr 07
0
Vorbis spec bugs
...ep 7)
Do I have to treat them as signed values ?
What about the num_codebooks = readBits(4) + 1
which will range from 1 to 16 ?
Is it reasonable to include num_codebooks in the
consistency check ?
Currently I'm doin' it like this:
if ((order>=0x80)||(rate>=0x8000) ... (amplitude_offset>=0x80)) {
stream undecodable
}
BTW: is floor0_order == 0 allowed ?
any comments ?
<p><p>another question concerning the identification header:
(not a bug, just a question) ;)
blocksize1 = 1 << readbits(4);
blocksize2 = 1 << readBits(4);
So far so good...