Displaying 1 result from an estimated 1 matches for "num_codebook".
Did you mean:
  num_codebooks
  
2003 Apr 07
0
Vorbis spec bugs
...r so good.... Here's my first note concerning the
floor0-setup :
  I'm supposed to read the parameters (floor0_order ...
  floor0_number_of_codebooks) as unsigned integers
  and therefore they can't be negative (see Step 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...