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.

421 lines
11KB

  1. /*
  2. * The simplest AC-3 encoder
  3. * Copyright (c) 2000 Fabrice Bellard
  4. * Copyright (c) 2006-2010 Justin Ruggles <justin.ruggles@gmail.com>
  5. * Copyright (c) 2006-2010 Prakash Punnoor <prakash@punnoor.de>
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /**
  24. * @file
  25. * fixed-point AC-3 encoder.
  26. */
  27. #undef CONFIG_AC3ENC_FLOAT
  28. #include "ac3enc.c"
  29. /** Scale a float value by 2^15, convert to an integer, and clip to range -32767..32767. */
  30. #define FIX15(a) av_clip(SCALE_FLOAT(a, 15), -32767, 32767)
  31. /**
  32. * Finalize MDCT and free allocated memory.
  33. */
  34. static av_cold void mdct_end(AC3MDCTContext *mdct)
  35. {
  36. mdct->nbits = 0;
  37. av_freep(&mdct->costab);
  38. av_freep(&mdct->sintab);
  39. av_freep(&mdct->xcos1);
  40. av_freep(&mdct->xsin1);
  41. av_freep(&mdct->rot_tmp);
  42. av_freep(&mdct->cplx_tmp);
  43. }
  44. /**
  45. * Initialize FFT tables.
  46. * @param ln log2(FFT size)
  47. */
  48. static av_cold int fft_init(AVCodecContext *avctx, AC3MDCTContext *mdct, int ln)
  49. {
  50. int i, n, n2;
  51. float alpha;
  52. n = 1 << ln;
  53. n2 = n >> 1;
  54. FF_ALLOC_OR_GOTO(avctx, mdct->costab, n2 * sizeof(*mdct->costab), fft_alloc_fail);
  55. FF_ALLOC_OR_GOTO(avctx, mdct->sintab, n2 * sizeof(*mdct->sintab), fft_alloc_fail);
  56. for (i = 0; i < n2; i++) {
  57. alpha = 2.0 * M_PI * i / n;
  58. mdct->costab[i] = FIX15(cos(alpha));
  59. mdct->sintab[i] = FIX15(sin(alpha));
  60. }
  61. return 0;
  62. fft_alloc_fail:
  63. mdct_end(mdct);
  64. return AVERROR(ENOMEM);
  65. }
  66. /**
  67. * Initialize MDCT tables.
  68. * @param nbits log2(MDCT size)
  69. */
  70. static av_cold int mdct_init(AVCodecContext *avctx, AC3MDCTContext *mdct,
  71. int nbits)
  72. {
  73. int i, n, n4, ret;
  74. n = 1 << nbits;
  75. n4 = n >> 2;
  76. mdct->nbits = nbits;
  77. ret = fft_init(avctx, mdct, nbits - 2);
  78. if (ret)
  79. return ret;
  80. mdct->window = ff_ac3_window;
  81. FF_ALLOC_OR_GOTO(avctx, mdct->xcos1, n4 * sizeof(*mdct->xcos1), mdct_alloc_fail);
  82. FF_ALLOC_OR_GOTO(avctx, mdct->xsin1, n4 * sizeof(*mdct->xsin1), mdct_alloc_fail);
  83. FF_ALLOC_OR_GOTO(avctx, mdct->rot_tmp, n * sizeof(*mdct->rot_tmp), mdct_alloc_fail);
  84. FF_ALLOC_OR_GOTO(avctx, mdct->cplx_tmp, n4 * sizeof(*mdct->cplx_tmp), mdct_alloc_fail);
  85. for (i = 0; i < n4; i++) {
  86. float alpha = 2.0 * M_PI * (i + 1.0 / 8.0) / n;
  87. mdct->xcos1[i] = FIX15(-cos(alpha));
  88. mdct->xsin1[i] = FIX15(-sin(alpha));
  89. }
  90. return 0;
  91. mdct_alloc_fail:
  92. mdct_end(mdct);
  93. return AVERROR(ENOMEM);
  94. }
  95. /** Butterfly op */
  96. #define BF(pre, pim, qre, qim, pre1, pim1, qre1, qim1) \
  97. { \
  98. int ax, ay, bx, by; \
  99. bx = pre1; \
  100. by = pim1; \
  101. ax = qre1; \
  102. ay = qim1; \
  103. pre = (bx + ax) >> 1; \
  104. pim = (by + ay) >> 1; \
  105. qre = (bx - ax) >> 1; \
  106. qim = (by - ay) >> 1; \
  107. }
  108. /** Complex multiply */
  109. #define CMUL(pre, pim, are, aim, bre, bim, rshift) \
  110. { \
  111. pre = (MUL16(are, bre) - MUL16(aim, bim)) >> rshift; \
  112. pim = (MUL16(are, bim) + MUL16(bre, aim)) >> rshift; \
  113. }
  114. /**
  115. * Calculate a 2^n point complex FFT on 2^ln points.
  116. * @param z complex input/output samples
  117. * @param ln log2(FFT size)
  118. */
  119. static void fft(AC3MDCTContext *mdct, IComplex *z, int ln)
  120. {
  121. int j, l, np, np2;
  122. int nblocks, nloops;
  123. register IComplex *p,*q;
  124. int tmp_re, tmp_im;
  125. np = 1 << ln;
  126. /* reverse */
  127. for (j = 0; j < np; j++) {
  128. int k = av_reverse[j] >> (8 - ln);
  129. if (k < j)
  130. FFSWAP(IComplex, z[k], z[j]);
  131. }
  132. /* pass 0 */
  133. p = &z[0];
  134. j = np >> 1;
  135. do {
  136. BF(p[0].re, p[0].im, p[1].re, p[1].im,
  137. p[0].re, p[0].im, p[1].re, p[1].im);
  138. p += 2;
  139. } while (--j);
  140. /* pass 1 */
  141. p = &z[0];
  142. j = np >> 2;
  143. do {
  144. BF(p[0].re, p[0].im, p[2].re, p[2].im,
  145. p[0].re, p[0].im, p[2].re, p[2].im);
  146. BF(p[1].re, p[1].im, p[3].re, p[3].im,
  147. p[1].re, p[1].im, p[3].im, -p[3].re);
  148. p+=4;
  149. } while (--j);
  150. /* pass 2 .. ln-1 */
  151. nblocks = np >> 3;
  152. nloops = 1 << 2;
  153. np2 = np >> 1;
  154. do {
  155. p = z;
  156. q = z + nloops;
  157. for (j = 0; j < nblocks; j++) {
  158. BF(p->re, p->im, q->re, q->im,
  159. p->re, p->im, q->re, q->im);
  160. p++;
  161. q++;
  162. for(l = nblocks; l < np2; l += nblocks) {
  163. CMUL(tmp_re, tmp_im, mdct->costab[l], -mdct->sintab[l], q->re, q->im, 15);
  164. BF(p->re, p->im, q->re, q->im,
  165. p->re, p->im, tmp_re, tmp_im);
  166. p++;
  167. q++;
  168. }
  169. p += nloops;
  170. q += nloops;
  171. }
  172. nblocks = nblocks >> 1;
  173. nloops = nloops << 1;
  174. } while (nblocks);
  175. }
  176. /**
  177. * Calculate a 512-point MDCT
  178. * @param out 256 output frequency coefficients
  179. * @param in 512 windowed input audio samples
  180. */
  181. static void mdct512(AC3MDCTContext *mdct, int32_t *out, int16_t *in)
  182. {
  183. int i, re, im, n, n2, n4;
  184. int16_t *rot = mdct->rot_tmp;
  185. IComplex *x = mdct->cplx_tmp;
  186. n = 1 << mdct->nbits;
  187. n2 = n >> 1;
  188. n4 = n >> 2;
  189. /* shift to simplify computations */
  190. for (i = 0; i <n4; i++)
  191. rot[i] = -in[i + 3*n4];
  192. memcpy(&rot[n4], &in[0], 3*n4*sizeof(*in));
  193. /* pre rotation */
  194. for (i = 0; i < n4; i++) {
  195. re = ((int)rot[ 2*i] - (int)rot[ n-1-2*i]) >> 1;
  196. im = -((int)rot[n2+2*i] - (int)rot[n2-1-2*i]) >> 1;
  197. CMUL(x[i].re, x[i].im, re, im, -mdct->xcos1[i], mdct->xsin1[i], 15);
  198. }
  199. fft(mdct, x, mdct->nbits - 2);
  200. /* post rotation */
  201. for (i = 0; i < n4; i++) {
  202. re = x[i].re;
  203. im = x[i].im;
  204. CMUL(out[n2-1-2*i], out[2*i], re, im, mdct->xsin1[i], mdct->xcos1[i], 0);
  205. }
  206. }
  207. /**
  208. * Apply KBD window to input samples prior to MDCT.
  209. */
  210. static void apply_window(DSPContext *dsp, int16_t *output, const int16_t *input,
  211. const int16_t *window, int n)
  212. {
  213. int i;
  214. int n2 = n >> 1;
  215. for (i = 0; i < n2; i++) {
  216. output[i] = MUL16(input[i], window[i]) >> 15;
  217. output[n-i-1] = MUL16(input[n-i-1], window[i]) >> 15;
  218. }
  219. }
  220. /**
  221. * Calculate the log2() of the maximum absolute value in an array.
  222. * @param tab input array
  223. * @param n number of values in the array
  224. * @return log2(max(abs(tab[])))
  225. */
  226. static int log2_tab(AC3EncodeContext *s, int16_t *src, int len)
  227. {
  228. int v = s->ac3dsp.ac3_max_msb_abs_int16(src, len);
  229. return av_log2(v);
  230. }
  231. /**
  232. * Normalize the input samples to use the maximum available precision.
  233. * This assumes signed 16-bit input samples.
  234. *
  235. * @return exponent shift
  236. */
  237. static int normalize_samples(AC3EncodeContext *s)
  238. {
  239. int v = 14 - log2_tab(s, s->windowed_samples, AC3_WINDOW_SIZE);
  240. if (v > 0)
  241. s->ac3dsp.ac3_lshift_int16(s->windowed_samples, AC3_WINDOW_SIZE, v);
  242. /* +6 to right-shift from 31-bit to 25-bit */
  243. return v + 6;
  244. }
  245. /**
  246. * Scale MDCT coefficients to 25-bit signed fixed-point.
  247. */
  248. static void scale_coefficients(AC3EncodeContext *s)
  249. {
  250. int blk, ch;
  251. for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
  252. AC3Block *block = &s->blocks[blk];
  253. for (ch = 0; ch < s->channels; ch++) {
  254. s->ac3dsp.ac3_rshift_int32(block->mdct_coef[ch], AC3_MAX_COEFS,
  255. block->coeff_shift[ch]);
  256. }
  257. }
  258. }
  259. #ifdef TEST
  260. /*************************************************************************/
  261. /* TEST */
  262. #include "libavutil/lfg.h"
  263. #define MDCT_NBITS 9
  264. #define MDCT_SAMPLES (1 << MDCT_NBITS)
  265. #define FN (MDCT_SAMPLES/4)
  266. static void fft_test(AC3MDCTContext *mdct, AVLFG *lfg)
  267. {
  268. IComplex in[FN], in1[FN];
  269. int k, n, i;
  270. float sum_re, sum_im, a;
  271. for (i = 0; i < FN; i++) {
  272. in[i].re = av_lfg_get(lfg) % 65535 - 32767;
  273. in[i].im = av_lfg_get(lfg) % 65535 - 32767;
  274. in1[i] = in[i];
  275. }
  276. fft(mdct, in, 7);
  277. /* do it by hand */
  278. for (k = 0; k < FN; k++) {
  279. sum_re = 0;
  280. sum_im = 0;
  281. for (n = 0; n < FN; n++) {
  282. a = -2 * M_PI * (n * k) / FN;
  283. sum_re += in1[n].re * cos(a) - in1[n].im * sin(a);
  284. sum_im += in1[n].re * sin(a) + in1[n].im * cos(a);
  285. }
  286. av_log(NULL, AV_LOG_DEBUG, "%3d: %6d,%6d %6.0f,%6.0f\n",
  287. k, in[k].re, in[k].im, sum_re / FN, sum_im / FN);
  288. }
  289. }
  290. static void mdct_test(AC3MDCTContext *mdct, AVLFG *lfg)
  291. {
  292. int16_t input[MDCT_SAMPLES];
  293. int32_t output[AC3_MAX_COEFS];
  294. float input1[MDCT_SAMPLES];
  295. float output1[AC3_MAX_COEFS];
  296. float s, a, err, e, emax;
  297. int i, k, n;
  298. for (i = 0; i < MDCT_SAMPLES; i++) {
  299. input[i] = (av_lfg_get(lfg) % 65535 - 32767) * 9 / 10;
  300. input1[i] = input[i];
  301. }
  302. mdct512(mdct, output, input);
  303. /* do it by hand */
  304. for (k = 0; k < AC3_MAX_COEFS; k++) {
  305. s = 0;
  306. for (n = 0; n < MDCT_SAMPLES; n++) {
  307. a = (2*M_PI*(2*n+1+MDCT_SAMPLES/2)*(2*k+1) / (4 * MDCT_SAMPLES));
  308. s += input1[n] * cos(a);
  309. }
  310. output1[k] = -2 * s / MDCT_SAMPLES;
  311. }
  312. err = 0;
  313. emax = 0;
  314. for (i = 0; i < AC3_MAX_COEFS; i++) {
  315. av_log(NULL, AV_LOG_DEBUG, "%3d: %7d %7.0f\n", i, output[i], output1[i]);
  316. e = output[i] - output1[i];
  317. if (e > emax)
  318. emax = e;
  319. err += e * e;
  320. }
  321. av_log(NULL, AV_LOG_DEBUG, "err2=%f emax=%f\n", err / AC3_MAX_COEFS, emax);
  322. }
  323. int main(void)
  324. {
  325. AVLFG lfg;
  326. AC3MDCTContext mdct;
  327. mdct.avctx = NULL;
  328. av_log_set_level(AV_LOG_DEBUG);
  329. mdct_init(&mdct, 9);
  330. fft_test(&mdct, &lfg);
  331. mdct_test(&mdct, &lfg);
  332. return 0;
  333. }
  334. #endif /* TEST */
  335. AVCodec ff_ac3_fixed_encoder = {
  336. "ac3_fixed",
  337. AVMEDIA_TYPE_AUDIO,
  338. CODEC_ID_AC3,
  339. sizeof(AC3EncodeContext),
  340. ac3_encode_init,
  341. ac3_encode_frame,
  342. ac3_encode_close,
  343. NULL,
  344. .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE},
  345. .long_name = NULL_IF_CONFIG_SMALL("ATSC A/52A (AC-3)"),
  346. .channel_layouts = ac3_channel_layouts,
  347. };