ac3.c 7.2 KB

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