mpegaudiodata.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. * MPEG Audio common tables
  3. * copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file libavcodec/mpegaudiodata.c
  23. * mpeg audio layer common tables.
  24. */
  25. #include "mpegaudiodata.h"
  26. const uint16_t ff_mpa_bitrate_tab[2][3][15] = {
  27. { {0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448 },
  28. {0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384 },
  29. {0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320 } },
  30. { {0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256},
  31. {0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160},
  32. {0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160}
  33. }
  34. };
  35. const uint16_t ff_mpa_freq_tab[3] = { 44100, 48000, 32000 };
  36. /*******************************************************/
  37. /* half mpeg encoding window (full precision) */
  38. const int32_t ff_mpa_enwindow[257] = {
  39. 0, -1, -1, -1, -1, -1, -1, -2,
  40. -2, -2, -2, -3, -3, -4, -4, -5,
  41. -5, -6, -7, -7, -8, -9, -10, -11,
  42. -13, -14, -16, -17, -19, -21, -24, -26,
  43. -29, -31, -35, -38, -41, -45, -49, -53,
  44. -58, -63, -68, -73, -79, -85, -91, -97,
  45. -104, -111, -117, -125, -132, -139, -147, -154,
  46. -161, -169, -176, -183, -190, -196, -202, -208,
  47. 213, 218, 222, 225, 227, 228, 228, 227,
  48. 224, 221, 215, 208, 200, 189, 177, 163,
  49. 146, 127, 106, 83, 57, 29, -2, -36,
  50. -72, -111, -153, -197, -244, -294, -347, -401,
  51. -459, -519, -581, -645, -711, -779, -848, -919,
  52. -991, -1064, -1137, -1210, -1283, -1356, -1428, -1498,
  53. -1567, -1634, -1698, -1759, -1817, -1870, -1919, -1962,
  54. -2001, -2032, -2057, -2075, -2085, -2087, -2080, -2063,
  55. 2037, 2000, 1952, 1893, 1822, 1739, 1644, 1535,
  56. 1414, 1280, 1131, 970, 794, 605, 402, 185,
  57. -45, -288, -545, -814, -1095, -1388, -1692, -2006,
  58. -2330, -2663, -3004, -3351, -3705, -4063, -4425, -4788,
  59. -5153, -5517, -5879, -6237, -6589, -6935, -7271, -7597,
  60. -7910, -8209, -8491, -8755, -8998, -9219, -9416, -9585,
  61. -9727, -9838, -9916, -9959, -9966, -9935, -9863, -9750,
  62. -9592, -9389, -9139, -8840, -8492, -8092, -7640, -7134,
  63. 6574, 5959, 5288, 4561, 3776, 2935, 2037, 1082,
  64. 70, -998, -2122, -3300, -4533, -5818, -7154, -8540,
  65. -9975,-11455,-12980,-14548,-16155,-17799,-19478,-21189,
  66. -22929,-24694,-26482,-28289,-30112,-31947,-33791,-35640,
  67. -37489,-39336,-41176,-43006,-44821,-46617,-48390,-50137,
  68. -51853,-53534,-55178,-56778,-58333,-59838,-61289,-62684,
  69. -64019,-65290,-66494,-67629,-68692,-69679,-70590,-71420,
  70. -72169,-72835,-73415,-73908,-74313,-74630,-74856,-74992,
  71. 75038,
  72. };
  73. /*******************************************************/
  74. /* layer 2 tables */
  75. const int ff_mpa_sblimit_table[5] = { 27 , 30 , 8, 12 , 30 };
  76. const int ff_mpa_quant_steps[17] = {
  77. 3, 5, 7, 9, 15,
  78. 31, 63, 127, 255, 511,
  79. 1023, 2047, 4095, 8191, 16383,
  80. 32767, 65535
  81. };
  82. /* we use a negative value if grouped */
  83. const int ff_mpa_quant_bits[17] = {
  84. -5, -7, 3, -10, 4,
  85. 5, 6, 7, 8, 9,
  86. 10, 11, 12, 13, 14,
  87. 15, 16
  88. };
  89. /* encoding tables which give the quantization index. Note how it is
  90. possible to store them efficiently ! */
  91. static const unsigned char alloc_table_1[] = {
  92. 4, 0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
  93. 4, 0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
  94. 4, 0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
  95. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16,
  96. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16,
  97. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16,
  98. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16,
  99. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16,
  100. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16,
  101. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16,
  102. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16,
  103. 3, 0, 1, 2, 3, 4, 5, 16,
  104. 3, 0, 1, 2, 3, 4, 5, 16,
  105. 3, 0, 1, 2, 3, 4, 5, 16,
  106. 3, 0, 1, 2, 3, 4, 5, 16,
  107. 3, 0, 1, 2, 3, 4, 5, 16,
  108. 3, 0, 1, 2, 3, 4, 5, 16,
  109. 3, 0, 1, 2, 3, 4, 5, 16,
  110. 3, 0, 1, 2, 3, 4, 5, 16,
  111. 3, 0, 1, 2, 3, 4, 5, 16,
  112. 3, 0, 1, 2, 3, 4, 5, 16,
  113. 3, 0, 1, 2, 3, 4, 5, 16,
  114. 3, 0, 1, 2, 3, 4, 5, 16,
  115. 2, 0, 1, 16,
  116. 2, 0, 1, 16,
  117. 2, 0, 1, 16,
  118. 2, 0, 1, 16,
  119. 2, 0, 1, 16,
  120. 2, 0, 1, 16,
  121. 2, 0, 1, 16,
  122. };
  123. static const unsigned char alloc_table_3[] = {
  124. 4, 0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
  125. 4, 0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
  126. 3, 0, 1, 3, 4, 5, 6, 7,
  127. 3, 0, 1, 3, 4, 5, 6, 7,
  128. 3, 0, 1, 3, 4, 5, 6, 7,
  129. 3, 0, 1, 3, 4, 5, 6, 7,
  130. 3, 0, 1, 3, 4, 5, 6, 7,
  131. 3, 0, 1, 3, 4, 5, 6, 7,
  132. 3, 0, 1, 3, 4, 5, 6, 7,
  133. 3, 0, 1, 3, 4, 5, 6, 7,
  134. 3, 0, 1, 3, 4, 5, 6, 7,
  135. 3, 0, 1, 3, 4, 5, 6, 7,
  136. };
  137. static const unsigned char alloc_table_4[] = {
  138. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  139. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  140. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  141. 4, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  142. 3, 0, 1, 3, 4, 5, 6, 7,
  143. 3, 0, 1, 3, 4, 5, 6, 7,
  144. 3, 0, 1, 3, 4, 5, 6, 7,
  145. 3, 0, 1, 3, 4, 5, 6, 7,
  146. 3, 0, 1, 3, 4, 5, 6, 7,
  147. 3, 0, 1, 3, 4, 5, 6, 7,
  148. 3, 0, 1, 3, 4, 5, 6, 7,
  149. 2, 0, 1, 3,
  150. 2, 0, 1, 3,
  151. 2, 0, 1, 3,
  152. 2, 0, 1, 3,
  153. 2, 0, 1, 3,
  154. 2, 0, 1, 3,
  155. 2, 0, 1, 3,
  156. 2, 0, 1, 3,
  157. 2, 0, 1, 3,
  158. 2, 0, 1, 3,
  159. 2, 0, 1, 3,
  160. 2, 0, 1, 3,
  161. 2, 0, 1, 3,
  162. 2, 0, 1, 3,
  163. 2, 0, 1, 3,
  164. 2, 0, 1, 3,
  165. 2, 0, 1, 3,
  166. 2, 0, 1, 3,
  167. 2, 0, 1, 3,
  168. };
  169. const unsigned char * const ff_mpa_alloc_tables[5] =
  170. { alloc_table_1, alloc_table_1, alloc_table_3, alloc_table_3, alloc_table_4, };