You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

233 lines
7.8KB

  1. /*
  2. * Common code between the AC-3 encoder and decoder
  3. * Copyright (c) 2000 Fabrice Bellard
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. * Common code between the AC-3 encoder and decoder.
  24. */
  25. #include "libavutil/common.h"
  26. #include "avcodec.h"
  27. #include "ac3.h"
  28. /**
  29. * Starting frequency coefficient bin for each critical band.
  30. */
  31. const uint8_t ff_ac3_band_start_tab[AC3_CRITICAL_BANDS+1] = {
  32. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
  33. 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
  34. 20, 21, 22, 23, 24, 25, 26, 27, 28, 31,
  35. 34, 37, 40, 43, 46, 49, 55, 61, 67, 73,
  36. 79, 85, 97, 109, 121, 133, 157, 181, 205, 229, 253
  37. };
  38. #if CONFIG_HARDCODED_TABLES
  39. /**
  40. * Map each frequency coefficient bin to the critical band that contains it.
  41. */
  42. const uint8_t ff_ac3_bin_to_band_tab[253] = {
  43. 0,
  44. 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
  45. 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
  46. 25, 26, 27, 28, 28, 28, 29, 29, 29, 30, 30, 30,
  47. 31, 31, 31, 32, 32, 32, 33, 33, 33, 34, 34, 34,
  48. 35, 35, 35, 35, 35, 35, 36, 36, 36, 36, 36, 36,
  49. 37, 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, 38,
  50. 39, 39, 39, 39, 39, 39, 40, 40, 40, 40, 40, 40,
  51. 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
  52. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  53. 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
  54. 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44,
  55. 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
  56. 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
  57. 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
  58. 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
  59. 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
  60. 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
  61. 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48,
  62. 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48,
  63. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  64. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49
  65. };
  66. #else /* CONFIG_HARDCODED_TABLES */
  67. uint8_t ff_ac3_bin_to_band_tab[253];
  68. #endif
  69. static inline int calc_lowcomp1(int a, int b0, int b1, int c)
  70. {
  71. if ((b0 + 256) == b1) {
  72. a = c;
  73. } else if (b0 > b1) {
  74. a = FFMAX(a - 64, 0);
  75. }
  76. return a;
  77. }
  78. static inline int calc_lowcomp(int a, int b0, int b1, int bin)
  79. {
  80. if (bin < 7) {
  81. return calc_lowcomp1(a, b0, b1, 384);
  82. } else if (bin < 20) {
  83. return calc_lowcomp1(a, b0, b1, 320);
  84. } else {
  85. return FFMAX(a - 128, 0);
  86. }
  87. }
  88. void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd,
  89. int16_t *band_psd)
  90. {
  91. int bin, band;
  92. /* exponent mapping to PSD */
  93. for (bin = start; bin < end; bin++) {
  94. psd[bin]=(3072 - (exp[bin] << 7));
  95. }
  96. /* PSD integration */
  97. bin = start;
  98. band = ff_ac3_bin_to_band_tab[start];
  99. do {
  100. int v = psd[bin++];
  101. int band_end = FFMIN(ff_ac3_band_start_tab[band+1], end);
  102. for (; bin < band_end; bin++) {
  103. int max = FFMAX(v, psd[bin]);
  104. /* logadd */
  105. int adr = FFMIN(max - ((v + psd[bin] + 1) >> 1), 255);
  106. v = max + ff_ac3_log_add_tab[adr];
  107. }
  108. band_psd[band++] = v;
  109. } while (end > ff_ac3_band_start_tab[band]);
  110. }
  111. int ff_ac3_bit_alloc_calc_mask(AC3BitAllocParameters *s, int16_t *band_psd,
  112. int start, int end, int fast_gain, int is_lfe,
  113. int dba_mode, int dba_nsegs, uint8_t *dba_offsets,
  114. uint8_t *dba_lengths, uint8_t *dba_values,
  115. int16_t *mask)
  116. {
  117. int16_t excite[AC3_CRITICAL_BANDS]; /* excitation */
  118. int band;
  119. int band_start, band_end, begin, end1;
  120. int lowcomp, fastleak, slowleak;
  121. /* excitation function */
  122. band_start = ff_ac3_bin_to_band_tab[start];
  123. band_end = ff_ac3_bin_to_band_tab[end-1] + 1;
  124. if (band_start == 0) {
  125. lowcomp = 0;
  126. lowcomp = calc_lowcomp1(lowcomp, band_psd[0], band_psd[1], 384);
  127. excite[0] = band_psd[0] - fast_gain - lowcomp;
  128. lowcomp = calc_lowcomp1(lowcomp, band_psd[1], band_psd[2], 384);
  129. excite[1] = band_psd[1] - fast_gain - lowcomp;
  130. begin = 7;
  131. for (band = 2; band < 7; band++) {
  132. if (!(is_lfe && band == 6))
  133. lowcomp = calc_lowcomp1(lowcomp, band_psd[band], band_psd[band+1], 384);
  134. fastleak = band_psd[band] - fast_gain;
  135. slowleak = band_psd[band] - s->slow_gain;
  136. excite[band] = fastleak - lowcomp;
  137. if (!(is_lfe && band == 6)) {
  138. if (band_psd[band] <= band_psd[band+1]) {
  139. begin = band + 1;
  140. break;
  141. }
  142. }
  143. }
  144. end1 = FFMIN(band_end, 22);
  145. for (band = begin; band < end1; band++) {
  146. if (!(is_lfe && band == 6))
  147. lowcomp = calc_lowcomp(lowcomp, band_psd[band], band_psd[band+1], band);
  148. fastleak = FFMAX(fastleak - s->fast_decay, band_psd[band] - fast_gain);
  149. slowleak = FFMAX(slowleak - s->slow_decay, band_psd[band] - s->slow_gain);
  150. excite[band] = FFMAX(fastleak - lowcomp, slowleak);
  151. }
  152. begin = 22;
  153. } else {
  154. /* coupling channel */
  155. begin = band_start;
  156. fastleak = (s->cpl_fast_leak << 8) + 768;
  157. slowleak = (s->cpl_slow_leak << 8) + 768;
  158. }
  159. for (band = begin; band < band_end; band++) {
  160. fastleak = FFMAX(fastleak - s->fast_decay, band_psd[band] - fast_gain);
  161. slowleak = FFMAX(slowleak - s->slow_decay, band_psd[band] - s->slow_gain);
  162. excite[band] = FFMAX(fastleak, slowleak);
  163. }
  164. /* compute masking curve */
  165. for (band = band_start; band < band_end; band++) {
  166. int tmp = s->db_per_bit - band_psd[band];
  167. if (tmp > 0) {
  168. excite[band] += tmp >> 2;
  169. }
  170. mask[band] = FFMAX(ff_ac3_hearing_threshold_tab[band >> s->sr_shift][s->sr_code], excite[band]);
  171. }
  172. /* delta bit allocation */
  173. if (dba_mode == DBA_REUSE || dba_mode == DBA_NEW) {
  174. int i, seg, delta;
  175. if (dba_nsegs > 8)
  176. return -1;
  177. band = band_start;
  178. for (seg = 0; seg < dba_nsegs; seg++) {
  179. band += dba_offsets[seg];
  180. if (band >= AC3_CRITICAL_BANDS || dba_lengths[seg] > AC3_CRITICAL_BANDS-band)
  181. return -1;
  182. if (dba_values[seg] >= 4) {
  183. delta = (dba_values[seg] - 3) << 7;
  184. } else {
  185. delta = (dba_values[seg] - 4) << 7;
  186. }
  187. for (i = 0; i < dba_lengths[seg]; i++) {
  188. mask[band++] += delta;
  189. }
  190. }
  191. }
  192. return 0;
  193. }
  194. /**
  195. * Initialize some tables.
  196. * note: This function must remain thread safe because it is called by the
  197. * AVParser init code.
  198. */
  199. av_cold void ff_ac3_common_init(void)
  200. {
  201. #if !CONFIG_HARDCODED_TABLES
  202. /* compute ff_ac3_bin_to_band_tab from ff_ac3_band_start_tab */
  203. int bin = 0, band;
  204. for (band = 0; band < AC3_CRITICAL_BANDS; band++) {
  205. int band_end = ff_ac3_band_start_tab[band+1];
  206. while (bin < band_end)
  207. ff_ac3_bin_to_band_tab[bin++] = band;
  208. }
  209. #endif /* !CONFIG_HARDCODED_TABLES */
  210. }