comparison aactab.c @ 7581:6fdffa4836a7 libavcodec

More OKed AAC decoder hunks
author superdump
date Fri, 15 Aug 2008 08:01:31 +0000
parents c49ab52db74c
children dc1a7a6ec58d
comparison
equal deleted inserted replaced
7580:c49ab52db74c 7581:6fdffa4836a7
29 29
30 #include "libavutil/mem.h" 30 #include "libavutil/mem.h"
31 #include "aac.h" 31 #include "aac.h"
32 32
33 #include <stdint.h> 33 #include <stdint.h>
34
35 DECLARE_ALIGNED(16, float, ff_aac_kbd_long_1024[1024]);
36 DECLARE_ALIGNED(16, float, ff_aac_kbd_short_128[128]);
34 37
35 const uint8_t ff_aac_num_swb_1024[] = { 38 const uint8_t ff_aac_num_swb_1024[] = {
36 41, 41, 47, 49, 49, 51, 47, 47, 43, 43, 43, 40 39 41, 41, 47, 49, 49, 51, 47, 47, 43, 43, 43, 40
37 }; 40 };
38 41
981 6.71088640e+07, 7.98063385e+07, 9.49062656e+07, 1.12863206e+08, 984 6.71088640e+07, 7.98063385e+07, 9.49062656e+07, 1.12863206e+08,
982 1.34217728e+08, 1.59612677e+08, 1.89812531e+08, 2.25726413e+08, 985 1.34217728e+08, 1.59612677e+08, 1.89812531e+08, 2.25726413e+08,
983 2.68435456e+08, 3.19225354e+08, 3.79625062e+08, 4.51452825e+08, 986 2.68435456e+08, 3.19225354e+08, 3.79625062e+08, 4.51452825e+08,
984 }; 987 };
985 988
989 #else
990
991 float ff_aac_pow2sf_tab[316];
992
986 #endif /* CONFIG_HARDCODED_TABLES */ 993 #endif /* CONFIG_HARDCODED_TABLES */