aacenctab.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * AAC encoder data
  3. * Copyright (c) 2015 Rostislav Pehlivanov ( atomnuker gmail com )
  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
  23. * AAC encoder data
  24. * @author Rostislav Pehlivanov ( atomnuker gmail com )
  25. */
  26. #ifndef AVCODEC_AACENCTAB_H
  27. #define AVCODEC_AACENCTAB_H
  28. #include "aac.h"
  29. /** Total number of usable codebooks **/
  30. #define CB_TOT 12
  31. /** Total number of codebooks, including special ones **/
  32. #define CB_TOT_ALL 15
  33. #define AAC_MAX_CHANNELS 16
  34. extern const uint8_t *ff_aac_swb_size_1024[];
  35. extern const int ff_aac_swb_size_1024_len;
  36. extern const uint8_t *ff_aac_swb_size_128[];
  37. extern const int ff_aac_swb_size_128_len;
  38. /* Supported layouts without using a PCE */
  39. static const int64_t aac_normal_chan_layouts[7] = {
  40. AV_CH_LAYOUT_MONO,
  41. AV_CH_LAYOUT_STEREO,
  42. AV_CH_LAYOUT_SURROUND,
  43. AV_CH_LAYOUT_4POINT0,
  44. AV_CH_LAYOUT_5POINT0_BACK,
  45. AV_CH_LAYOUT_5POINT1_BACK,
  46. AV_CH_LAYOUT_7POINT1,
  47. };
  48. /** default channel configurations */
  49. static const uint8_t aac_chan_configs[AAC_MAX_CHANNELS][6] = {
  50. {1, TYPE_SCE}, // 1 channel - single channel element
  51. {1, TYPE_CPE}, // 2 channels - channel pair
  52. {2, TYPE_SCE, TYPE_CPE}, // 3 channels - center + stereo
  53. {3, TYPE_SCE, TYPE_CPE, TYPE_SCE}, // 4 channels - front center + stereo + back center
  54. {3, TYPE_SCE, TYPE_CPE, TYPE_CPE}, // 5 channels - front center + stereo + back stereo
  55. {4, TYPE_SCE, TYPE_CPE, TYPE_CPE, TYPE_LFE}, // 6 channels - front center + stereo + back stereo + LFE
  56. {0}, // 7 channels - invalid without PCE
  57. {5, TYPE_SCE, TYPE_CPE, TYPE_CPE, TYPE_CPE, TYPE_LFE}, // 8 channels - front center + front stereo + side stereo + back stereo + LFE
  58. };
  59. /**
  60. * Table to remap channels from libavcodec's default order to AAC order.
  61. */
  62. static const uint8_t aac_chan_maps[AAC_MAX_CHANNELS][AAC_MAX_CHANNELS] = {
  63. { 0 },
  64. { 0, 1 },
  65. { 2, 0, 1 },
  66. { 2, 0, 1, 3 },
  67. { 2, 0, 1, 3, 4 },
  68. { 2, 0, 1, 4, 5, 3 },
  69. { 0 },
  70. { 2, 0, 1, 6, 7, 4, 5, 3 },
  71. };
  72. /* duplicated from avpriv_mpeg4audio_sample_rates to avoid shared build
  73. * failures */
  74. static const int mpeg4audio_sample_rates[16] = {
  75. 96000, 88200, 64000, 48000, 44100, 32000,
  76. 24000, 22050, 16000, 12000, 11025, 8000, 7350
  77. };
  78. /** bits needed to code codebook run value for long windows */
  79. static const uint8_t run_value_bits_long[64] = {
  80. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  81. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 10,
  82. 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
  83. 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15
  84. };
  85. /** bits needed to code codebook run value for short windows */
  86. static const uint8_t run_value_bits_short[16] = {
  87. 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 6, 6, 6, 6, 6, 9
  88. };
  89. /* TNS starting SFBs for long and short windows */
  90. static const uint8_t tns_min_sfb_short[16] = {
  91. 2, 2, 2, 3, 3, 4, 6, 6, 8, 10, 10, 12, 12, 12, 12, 12
  92. };
  93. static const uint8_t tns_min_sfb_long[16] = {
  94. 12, 13, 15, 16, 17, 20, 25, 26, 24, 28, 30, 31, 31, 31, 31, 31
  95. };
  96. static const uint8_t * const tns_min_sfb[2] = {
  97. tns_min_sfb_long, tns_min_sfb_short
  98. };
  99. static const uint8_t * const run_value_bits[2] = {
  100. run_value_bits_long, run_value_bits_short
  101. };
  102. /** Map to convert values from BandCodingPath index to a codebook index **/
  103. static const uint8_t aac_cb_out_map[CB_TOT_ALL] = {0,1,2,3,4,5,6,7,8,9,10,11,13,14,15};
  104. /** Inverse map to convert from codebooks to BandCodingPath indices **/
  105. static const uint8_t aac_cb_in_map[CB_TOT_ALL+1] = {0,1,2,3,4,5,6,7,8,9,10,11,0,12,13,14};
  106. static const uint8_t aac_cb_range [12] = {0, 3, 3, 3, 3, 9, 9, 8, 8, 13, 13, 17};
  107. static const uint8_t aac_cb_maxval[12] = {0, 1, 1, 2, 2, 4, 4, 7, 7, 12, 12, 16};
  108. static const unsigned char aac_maxval_cb[] = {
  109. 0, 1, 3, 5, 5, 7, 7, 7, 9, 9, 9, 9, 9, 11
  110. };
  111. static const int aacenc_profiles[] = {
  112. FF_PROFILE_AAC_MAIN,
  113. FF_PROFILE_AAC_LOW,
  114. FF_PROFILE_AAC_LTP,
  115. FF_PROFILE_MPEG2_AAC_LOW,
  116. };
  117. #endif /* AVCODEC_AACENCTAB_H */