diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-04-26 15:30:19 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-04-27 12:39:37 -0400 |
commit | 6271794041abbf79098b6c01b27f1539b3a4af5e (patch) | |
tree | 7cd8d9836fc09f8fc4d8b4077d0fad8ac039b744 /libavcodec/aacdectab.h | |
parent | d70fa4c4238ffa69592fffa7c817532534f303c4 (diff) | |
download | ffmpeg-6271794041abbf79098b6c01b27f1539b3a4af5e.tar.gz |
aacdec: use a scale of 2 in the LTP MDCT rather than doubling the coefficient
table values from the spec.
Diffstat (limited to 'libavcodec/aacdectab.h')
-rw-r--r-- | libavcodec/aacdectab.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/aacdectab.h b/libavcodec/aacdectab.h index 64c2a1c395..23a7868ab2 100644 --- a/libavcodec/aacdectab.h +++ b/libavcodec/aacdectab.h @@ -36,11 +36,11 @@ #include <stdint.h> /* @name ltp_coef - * Table of the LTP coefficient (multiplied by 2) + * Table of the LTP coefficients */ static const float ltp_coef[8] = { - 1.141658, 1.393232, 1.626008, 1.822608, - 1.969800, 2.135788, 2.2389202, 2.739066, + 0.570829, 0.696616, 0.813004, 0.911304, + 0.984900, 1.067894, 1.194601, 1.369533, }; /* @name tns_tmp2_map |