Commit d2bb3f48 authored by michael's avatar michael

more accurate dequant of near zero coefficients


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3909 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b07d24a2
......@@ -230,11 +230,10 @@ static inline int l3_unscale(int value, int exponent)
e = FRAC_BITS - e;
#if FRAC_BITS <= 15
if (e > 31)
e = 31;
#else
if (e > 63)
e = 63;
#endif
return 0;
m = table_4_3_value[value];
#if FRAC_BITS <= 15
m = (m * scale_factor_mult3[exponent & 3]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment