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.

222 lines
5.7KB

  1. /*
  2. * MDCT/IMDCT transforms
  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. #include "dsputil.h"
  22. /**
  23. * @file mdct.c
  24. * MDCT/IMDCT transforms.
  25. */
  26. // Generate a Kaiser-Bessel Derived Window.
  27. #define BESSEL_I0_ITER 50 // default: 50 iterations of Bessel I0 approximation
  28. void ff_kbd_window_init(float *window, float alpha, int n)
  29. {
  30. int i, j;
  31. double sum = 0.0, bessel, tmp;
  32. double local_window[n];
  33. double alpha2 = (alpha * M_PI / n) * (alpha * M_PI / n);
  34. for (i = 0; i < n; i++) {
  35. tmp = i * (n - i) * alpha2;
  36. bessel = 1.0;
  37. for (j = BESSEL_I0_ITER; j > 0; j--)
  38. bessel = bessel * tmp / (j * j) + 1;
  39. sum += bessel;
  40. local_window[i] = sum;
  41. }
  42. sum++;
  43. for (i = 0; i < n; i++)
  44. window[i] = sqrt(local_window[i] / sum);
  45. }
  46. // Generate a sine window.
  47. void ff_sine_window_init(float *window, int n) {
  48. int i;
  49. for(i = 0; i < n; i++)
  50. window[i] = sin((i + 0.5) / (2 * n) * M_PI);
  51. }
  52. /**
  53. * init MDCT or IMDCT computation.
  54. */
  55. int ff_mdct_init(MDCTContext *s, int nbits, int inverse)
  56. {
  57. int n, n4, i;
  58. double alpha;
  59. memset(s, 0, sizeof(*s));
  60. n = 1 << nbits;
  61. s->nbits = nbits;
  62. s->n = n;
  63. n4 = n >> 2;
  64. s->tcos = av_malloc(n4 * sizeof(FFTSample));
  65. if (!s->tcos)
  66. goto fail;
  67. s->tsin = av_malloc(n4 * sizeof(FFTSample));
  68. if (!s->tsin)
  69. goto fail;
  70. for(i=0;i<n4;i++) {
  71. alpha = 2 * M_PI * (i + 1.0 / 8.0) / n;
  72. s->tcos[i] = -cos(alpha);
  73. s->tsin[i] = -sin(alpha);
  74. }
  75. if (ff_fft_init(&s->fft, s->nbits - 2, inverse) < 0)
  76. goto fail;
  77. return 0;
  78. fail:
  79. av_freep(&s->tcos);
  80. av_freep(&s->tsin);
  81. return -1;
  82. }
  83. /* complex multiplication: p = a * b */
  84. #define CMUL(pre, pim, are, aim, bre, bim) \
  85. {\
  86. FFTSample _are = (are);\
  87. FFTSample _aim = (aim);\
  88. FFTSample _bre = (bre);\
  89. FFTSample _bim = (bim);\
  90. (pre) = _are * _bre - _aim * _bim;\
  91. (pim) = _are * _bim + _aim * _bre;\
  92. }
  93. /**
  94. * Compute the middle half of the inverse MDCT of size N = 2^nbits,
  95. * thus excluding the parts that can be derived by symmetry
  96. * @param output N/2 samples
  97. * @param input N/2 samples
  98. */
  99. void ff_imdct_half_c(MDCTContext *s, FFTSample *output, const FFTSample *input)
  100. {
  101. int k, n8, n4, n2, n, j;
  102. const uint16_t *revtab = s->fft.revtab;
  103. const FFTSample *tcos = s->tcos;
  104. const FFTSample *tsin = s->tsin;
  105. const FFTSample *in1, *in2;
  106. FFTComplex *z = (FFTComplex *)output;
  107. n = 1 << s->nbits;
  108. n2 = n >> 1;
  109. n4 = n >> 2;
  110. n8 = n >> 3;
  111. /* pre rotation */
  112. in1 = input;
  113. in2 = input + n2 - 1;
  114. for(k = 0; k < n4; k++) {
  115. j=revtab[k];
  116. CMUL(z[j].re, z[j].im, *in2, *in1, tcos[k], tsin[k]);
  117. in1 += 2;
  118. in2 -= 2;
  119. }
  120. ff_fft_calc(&s->fft, z);
  121. /* post rotation + reordering */
  122. output += n4;
  123. for(k = 0; k < n8; k++) {
  124. FFTSample r0, i0, r1, i1;
  125. CMUL(r0, i1, z[n8-k-1].im, z[n8-k-1].re, tsin[n8-k-1], tcos[n8-k-1]);
  126. CMUL(r1, i0, z[n8+k ].im, z[n8+k ].re, tsin[n8+k ], tcos[n8+k ]);
  127. z[n8-k-1].re = r0;
  128. z[n8-k-1].im = i0;
  129. z[n8+k ].re = r1;
  130. z[n8+k ].im = i1;
  131. }
  132. }
  133. /**
  134. * Compute inverse MDCT of size N = 2^nbits
  135. * @param output N samples
  136. * @param input N/2 samples
  137. * @param tmp N/2 samples
  138. */
  139. void ff_imdct_calc_c(MDCTContext *s, FFTSample *output, const FFTSample *input)
  140. {
  141. int k;
  142. int n = 1 << s->nbits;
  143. int n2 = n >> 1;
  144. int n4 = n >> 2;
  145. ff_imdct_half_c(s, output+n4, input);
  146. for(k = 0; k < n4; k++) {
  147. output[k] = -output[n2-k-1];
  148. output[n-k-1] = output[n2+k];
  149. }
  150. }
  151. /**
  152. * Compute MDCT of size N = 2^nbits
  153. * @param input N samples
  154. * @param out N/2 samples
  155. * @param tmp temporary storage of N/2 samples
  156. */
  157. void ff_mdct_calc(MDCTContext *s, FFTSample *out, const FFTSample *input)
  158. {
  159. int i, j, n, n8, n4, n2, n3;
  160. FFTSample re, im;
  161. const uint16_t *revtab = s->fft.revtab;
  162. const FFTSample *tcos = s->tcos;
  163. const FFTSample *tsin = s->tsin;
  164. FFTComplex *x = (FFTComplex *)out;
  165. n = 1 << s->nbits;
  166. n2 = n >> 1;
  167. n4 = n >> 2;
  168. n8 = n >> 3;
  169. n3 = 3 * n4;
  170. /* pre rotation */
  171. for(i=0;i<n8;i++) {
  172. re = -input[2*i+3*n4] - input[n3-1-2*i];
  173. im = -input[n4+2*i] + input[n4-1-2*i];
  174. j = revtab[i];
  175. CMUL(x[j].re, x[j].im, re, im, -tcos[i], tsin[i]);
  176. re = input[2*i] - input[n2-1-2*i];
  177. im = -(input[n2+2*i] + input[n-1-2*i]);
  178. j = revtab[n8 + i];
  179. CMUL(x[j].re, x[j].im, re, im, -tcos[n8 + i], tsin[n8 + i]);
  180. }
  181. ff_fft_calc(&s->fft, x);
  182. /* post rotation */
  183. for(i=0;i<n8;i++) {
  184. FFTSample r0, i0, r1, i1;
  185. CMUL(i1, r0, x[n8-i-1].re, x[n8-i-1].im, -tsin[n8-i-1], -tcos[n8-i-1]);
  186. CMUL(i0, r1, x[n8+i ].re, x[n8+i ].im, -tsin[n8+i ], -tcos[n8+i ]);
  187. x[n8-i-1].re = r0;
  188. x[n8-i-1].im = i0;
  189. x[n8+i ].re = r1;
  190. x[n8+i ].im = i1;
  191. }
  192. }
  193. void ff_mdct_end(MDCTContext *s)
  194. {
  195. av_freep(&s->tcos);
  196. av_freep(&s->tsin);
  197. ff_fft_end(&s->fft);
  198. }