search for: maximum_class

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

2002 Aug 02
2
More spec notes
...myself instead of bugging you for everything. Another person has already expressed interest in undertaking a similar project to mine. For that and other reasons, I'd also like to commit what I have so far to CVS. Here goes for this round: vorbis-spec-floor1.html * header decode - step 5 - so maximum_class + 1 iterations? - step 9/10 - what to do if subclasses == 0 (or does it matter? I don't think so) - step 12 - really subtract 1? why not store it minus 1 in the stream? - step 22 - the first assignment writes to X_list element j+values = 0+1 = 1, overwriting the previously stored element ther...
2002 Sep 12
1
Floor1 header decoding
...or [floor1_class_dimensions] must have at least [floor1_partitions] elements, but when reading/computing these two values on the beginning of the header, they are not related to eachother, and my attempts to apply this algorithm to real ogg-files gives me [floor1_partitions] to be higher than [maximum_class]+1 (which is the number of elements in [floor1_class_dimensions]). Tor <p><p>=================================================================== EASY and FREE access to your email anywhere: http://Mailreader.com/ =================================================================== &l...
2003 Feb 13
1
Bug in vorbis documentation
...there's a problem in the floor 1 header decode. Specifically: 22) [floor1_values] = [floor1_values] + [floor1_class_dimensions] element [i] hould probably be: 22) [floor1_values] = [floor1_values] + [floor1_class_dimensions] element [current_class_number] because floor1_class_dimensions has maximum_class + 1 elements and not floor1_partitions elements. Other than that, the documentation for everything else so far is very precise and complete - I can decode files as far as floor 1 setup successfully. One small gripe I do have with the pseudo-code style is that the size of vectors isn't defined...