aactab.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * AAC data declarations
  3. * Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
  4. * Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov gmail com )
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * AAC data declarations
  25. * @author Oded Shimon ( ods15 ods15 dyndns org )
  26. * @author Maxim Gavrilov ( maxim.gavrilov gmail com )
  27. */
  28. #ifndef AVCODEC_AACTAB_H
  29. #define AVCODEC_AACTAB_H
  30. #include "libavutil/mem.h"
  31. #include "aac.h"
  32. #include <stdint.h>
  33. /* NOTE:
  34. * Tables in this file are shared by the AAC decoders and encoder
  35. */
  36. extern float ff_aac_pow2sf_tab[428];
  37. extern float ff_aac_pow34sf_tab[428];
  38. static inline void ff_aac_tableinit(void)
  39. {
  40. int i;
  41. /* 2^(i/16) for 0 <= i <= 15 */
  42. static const float exp2_lut[] = {
  43. 1.00000000000000000000,
  44. 1.04427378242741384032,
  45. 1.09050773266525765921,
  46. 1.13878863475669165370,
  47. 1.18920711500272106672,
  48. 1.24185781207348404859,
  49. 1.29683955465100966593,
  50. 1.35425554693689272830,
  51. 1.41421356237309504880,
  52. 1.47682614593949931139,
  53. 1.54221082540794082361,
  54. 1.61049033194925430818,
  55. 1.68179283050742908606,
  56. 1.75625216037329948311,
  57. 1.83400808640934246349,
  58. 1.91520656139714729387,
  59. };
  60. float t1 = 8.8817841970012523233890533447265625e-16; // 2^(-50)
  61. float t2 = 3.63797880709171295166015625e-12; // 2^(-38)
  62. int t1_inc_cur, t2_inc_cur;
  63. int t1_inc_prev = 0;
  64. int t2_inc_prev = 8;
  65. for (i = 0; i < 428; i++) {
  66. t1_inc_cur = 4 * (i % 4);
  67. t2_inc_cur = (8 + 3*i) % 16;
  68. if (t1_inc_cur < t1_inc_prev)
  69. t1 *= 2;
  70. if (t2_inc_cur < t2_inc_prev)
  71. t2 *= 2;
  72. // A much more efficient and accurate way of doing:
  73. // ff_aac_pow2sf_tab[i] = pow(2, (i - POW_SF2_ZERO) / 4.0);
  74. // ff_aac_pow34sf_tab[i] = pow(ff_aac_pow2sf_tab[i], 3.0/4.0);
  75. ff_aac_pow2sf_tab[i] = t1 * exp2_lut[t1_inc_cur];
  76. ff_aac_pow34sf_tab[i] = t2 * exp2_lut[t2_inc_cur];
  77. t1_inc_prev = t1_inc_cur;
  78. t2_inc_prev = t2_inc_cur;
  79. }
  80. }
  81. /* @name ltp_coef
  82. * Table of the LTP coefficients
  83. */
  84. static const INTFLOAT ltp_coef[8] = {
  85. Q30(0.570829), Q30(0.696616), Q30(0.813004), Q30(0.911304),
  86. Q30(0.984900), Q30(1.067894), Q30(1.194601), Q30(1.369533),
  87. };
  88. /* @name tns_tmp2_map
  89. * Tables of the tmp2[] arrays of LPC coefficients used for TNS.
  90. * The suffix _M_N[] indicate the values of coef_compress and coef_res
  91. * respectively.
  92. * @{
  93. */
  94. static const INTFLOAT tns_tmp2_map_1_3[4] = {
  95. Q31(0.00000000), Q31(-0.43388373), Q31(0.64278758), Q31(0.34202015),
  96. };
  97. static const INTFLOAT tns_tmp2_map_0_3[8] = {
  98. Q31(0.00000000), Q31(-0.43388373), Q31(-0.78183150), Q31(-0.97492790),
  99. Q31(0.98480773), Q31( 0.86602539), Q31( 0.64278758), Q31( 0.34202015),
  100. };
  101. static const INTFLOAT tns_tmp2_map_1_4[8] = {
  102. Q31(0.00000000), Q31(-0.20791170), Q31(-0.40673664), Q31(-0.58778524),
  103. Q31(0.67369562), Q31( 0.52643216), Q31( 0.36124167), Q31( 0.18374951),
  104. };
  105. static const INTFLOAT tns_tmp2_map_0_4[16] = {
  106. Q31( 0.00000000), Q31(-0.20791170), Q31(-0.40673664), Q31(-0.58778524),
  107. Q31(-0.74314481), Q31(-0.86602539), Q31(-0.95105654), Q31(-0.99452192),
  108. Q31( 0.99573416), Q31( 0.96182561), Q31( 0.89516330), Q31( 0.79801720),
  109. Q31( 0.67369562), Q31( 0.52643216), Q31( 0.36124167), Q31( 0.18374951),
  110. };
  111. static const INTFLOAT * const tns_tmp2_map[4] = {
  112. tns_tmp2_map_0_3,
  113. tns_tmp2_map_0_4,
  114. tns_tmp2_map_1_3,
  115. tns_tmp2_map_1_4
  116. };
  117. // @}
  118. /* @name window coefficients
  119. * @{
  120. */
  121. DECLARE_ALIGNED(32, extern float, ff_aac_kbd_long_1024)[1024];
  122. DECLARE_ALIGNED(32, extern float, ff_aac_kbd_short_128)[128];
  123. DECLARE_ALIGNED(32, extern float, ff_aac_kbd_long_960)[960];
  124. DECLARE_ALIGNED(32, extern float, ff_aac_kbd_short_120)[120];
  125. DECLARE_ALIGNED(32, extern int, ff_aac_kbd_long_1024_fixed)[1024];
  126. DECLARE_ALIGNED(32, extern int, ff_aac_kbd_long_512_fixed)[512];
  127. DECLARE_ALIGNED(32, extern int, ff_aac_kbd_short_128_fixed)[128];
  128. DECLARE_ALIGNED(32, extern const float, ff_aac_eld_window_512)[1920];
  129. DECLARE_ALIGNED(32, extern const int, ff_aac_eld_window_512_fixed)[1920];
  130. DECLARE_ALIGNED(32, extern const float, ff_aac_eld_window_480)[1800];
  131. DECLARE_ALIGNED(32, extern const int, ff_aac_eld_window_480_fixed)[1800];
  132. // @}
  133. /* @name number of scalefactor window bands for long and short transform windows respectively
  134. * @{
  135. */
  136. extern const uint8_t ff_aac_num_swb_1024[];
  137. extern const uint8_t ff_aac_num_swb_960 [];
  138. extern const uint8_t ff_aac_num_swb_512 [];
  139. extern const uint8_t ff_aac_num_swb_480 [];
  140. extern const uint8_t ff_aac_num_swb_128 [];
  141. extern const uint8_t ff_aac_num_swb_120 [];
  142. // @}
  143. extern const uint8_t ff_aac_pred_sfb_max [];
  144. extern const uint32_t ff_aac_scalefactor_code[121];
  145. extern const uint8_t ff_aac_scalefactor_bits[121];
  146. extern const uint16_t * const ff_aac_spectral_codes[11];
  147. extern const uint8_t * const ff_aac_spectral_bits [11];
  148. extern const uint16_t ff_aac_spectral_sizes[11];
  149. extern const float *ff_aac_codebook_vectors[];
  150. extern const float *ff_aac_codebook_vector_vals[];
  151. extern const uint16_t *ff_aac_codebook_vector_idx[];
  152. extern const uint16_t * const ff_swb_offset_1024[13];
  153. extern const uint16_t * const ff_swb_offset_960 [13];
  154. extern const uint16_t * const ff_swb_offset_512 [13];
  155. extern const uint16_t * const ff_swb_offset_480 [13];
  156. extern const uint16_t * const ff_swb_offset_128 [13];
  157. extern const uint16_t * const ff_swb_offset_120 [13];
  158. extern const uint8_t ff_tns_max_bands_1024[13];
  159. extern const uint8_t ff_tns_max_bands_512 [13];
  160. extern const uint8_t ff_tns_max_bands_480 [13];
  161. extern const uint8_t ff_tns_max_bands_128 [13];
  162. #endif /* AVCODEC_AACTAB_H */