diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-07-17 22:20:14 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-21 13:53:04 +0200 |
commit | 331c1e74941dc91a29cfaace64311ea6ce73de75 (patch) | |
tree | 20ac1da2aee4199acbe1d7690c07c9311fc67a01 /libavcodec/aac_tablegen.h | |
parent | cee7acfcfc1bc806044ff35ff7ec7b64528f99b1 (diff) | |
download | ffmpeg-331c1e74941dc91a29cfaace64311ea6ce73de75.tar.gz |
aacenc: move the generation of ff_aac_pow34sf_tab[]
This commit moves the generation of ff_aac_pow34sf_tab[] out of the
encoder and into the table generator. The original commit log for
this table in 2011 actually mentions that it should be moved outside
but this never happened.
This is the first commit which cleans up the encoder a little.
Reviewed-by: Claudio Freire <klaussfreire@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/aac_tablegen.h')
-rw-r--r-- | libavcodec/aac_tablegen.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/aac_tablegen.h b/libavcodec/aac_tablegen.h index bf71e59cb5..8b223f972e 100644 --- a/libavcodec/aac_tablegen.h +++ b/libavcodec/aac_tablegen.h @@ -30,12 +30,15 @@ #else #include "libavutil/mathematics.h" float ff_aac_pow2sf_tab[428]; +float ff_aac_pow34sf_tab[428]; av_cold void ff_aac_tableinit(void) { int i; - for (i = 0; i < 428; i++) + for (i = 0; i < 428; i++) { ff_aac_pow2sf_tab[i] = pow(2, (i - POW_SF2_ZERO) / 4.0); + ff_aac_pow34sf_tab[i] = pow(ff_aac_pow2sf_tab[i], 3.0/4.0); + } } #endif /* CONFIG_HARDCODED_TABLES */ |