search for: floor1_class_dimensions

Displaying 2 results from an estimated 2 matches for "floor1_class_dimensions".

2002 Sep 12
1
Floor1 header decoding
Hi, is there an error in the last part of the algorithm describing how to read a floor1 header? According to point 18 and 19, the vector [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 t...
2003 Feb 13
1
Bug in vorbis documentation
...ring (not very seriously) with writing a vorbis (and ogg) decoder from scratch using only the documentation. I've got as far as starting to decoding floor 1 without any problems. However, 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 ve...