]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/aac_tablegen.h
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / aac_tablegen.h
index 3a820ba6734f0fcbd395374df86e55fd095eee30..27fa0e7ba3cd4cc460b47d0c29f584712cdf1afd 100644 (file)
 #include "libavcodec/aac_tables.h"
 #else
 #include "libavutil/mathematics.h"
+#include "libavcodec/aac.h"
 float ff_aac_pow2sf_tab[428];
 
 void ff_aac_tableinit(void)
 {
     int i;
     for (i = 0; i < 428; i++)
-        ff_aac_pow2sf_tab[i] = pow(2, (i - 200) / 4.);
+        ff_aac_pow2sf_tab[i] = pow(2, (i - POW_SF2_ZERO) / 4.);
 }
 #endif /* CONFIG_HARDCODED_TABLES */