search for: floor1_partitions

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

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 the number of elements in [floor1_class...
2003 Feb 13
1
Bug in vorbis documentation
...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 before usage. It's not at all neces...