Displaying 1 result from an estimated 1 matches for "115129255f".
Did you mean:
11512925f
2001 Jan 17
0
bitrate scaling by freq / quality bug ? / comments
...ating point constants (recalculated them (see below)
and encoded some songs with 'longer' (more precise) numbers)
in the SCALES.H, at it seems the fromdB is a little bit wrong...
So, the original line is:
#define fromdB(x) (exp((x)*.11512925f))
Corrected line is:
#define fromdB(x) (exp((x)*.115129255f))
(there is an extra '5' digit at the end)
(more precise number is 0.115129254649702278f)
But I think so you have to recalculate the encoding tables too,
else we get extra (too much) high sounds in the ogg file!
(What does the LATTICEHINT.C do? There is a fromdB in it...)
Please check this...