Displaying 2 results from an estimated 2 matches for "lowroom".
2002 Sep 23
2
More errors in the file format specification Was: Test files for decoder implementation
Hi,
I've found some more errors in the file format specification (or
at least points, where the specification and actual libvorbis implementation
mismatch):
- Floor 1 / curve computation / step 1: amplitude value synthesis
21) vector [floor1_final_Y] element [i] =
[predicted] - (([val] - 1) divided by 2 using integer division)
hould be:
21) vector [floor1_final_Y] element [i] =
2002 Oct 15
5
Specification change requests
...and inform me about it.
I will also once again try to work through the residue specification,
as I beleive there are more errors in that part.
Tor
<p>###############
#2002-09-23-001
Floor 1 / curve computation / step 1:
23) vector [floor1_final_Y] element [i] =
[predicted] - ([val] - [lowroom]) - 1
hould be:
23) vector [floor1_final_Y] element [i] =
[predicted] - [val] + [hiroom] - 1
due to floor1.c, line 1019:
val = -1-(val-hiroom);
<p>###############
#2002-09-23-002
Floor 1 / curve computation / step 1:
25) vector [floor1_final_Y] element [i] =
[predicted] - (([val]...