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.

270 lines
7.4KB

  1. /*
  2. * RealAudio 2.0 (28.8K)
  3. * Copyright (c) 2003 the ffmpeg project
  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 "avcodec.h"
  22. #define ALT_BITSTREAM_READER_LE
  23. #include "bitstream.h"
  24. #include "ra288.h"
  25. typedef struct {
  26. float history[8];
  27. float output[40];
  28. float pr1[36];
  29. float pr2[10];
  30. int phase;
  31. float sp_hist[111]; ///< Speech data history (spec: SB)
  32. /** Speech part of the gain autocorrelation (spec: REXP) */
  33. float sp_rec[37];
  34. float st1[37];
  35. float gain_hist[38]; ///< Log-gain history (spec: SBLG)
  36. /** Recursive part of the gain autocorrelation (spec: REXPLG) */
  37. float gain_rec[11];
  38. float st2[11];
  39. float sb[41];
  40. float lhist[10];
  41. } RA288Context;
  42. static inline float scalar_product_float(const float * v1, const float * v2,
  43. int size)
  44. {
  45. float res = 0.;
  46. while (size--)
  47. res += *v1++ * *v2++;
  48. return res;
  49. }
  50. static void colmult(float *tgt, const float *m1, const float *m2, int n)
  51. {
  52. while (n--)
  53. *tgt++ = *m1++ * *m2++;
  54. }
  55. /* Decode and produce output */
  56. static void decode(RA288Context *ractx, float gain, int cb_coef)
  57. {
  58. int x, y;
  59. double sumsum;
  60. float sum, buffer[5];
  61. memmove(ractx->sb + 5, ractx->sb, 36 * sizeof(*ractx->sb));
  62. for (x=4; x >= 0; x--)
  63. ractx->sb[x] = -scalar_product_float(ractx->sb + x + 1, ractx->pr1, 36);
  64. /* convert log and do rms */
  65. sum = 32. - scalar_product_float(ractx->pr2, ractx->lhist, 10);
  66. sum = av_clipf(sum, 0, 60);
  67. sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*f */
  68. for (x=0; x < 5; x++)
  69. buffer[x] = codetable[cb_coef][x] * sumsum;
  70. sum = scalar_product_float(buffer, buffer, 5) / 5;
  71. sum = FFMAX(sum, 1);
  72. /* shift and store */
  73. memmove(ractx->lhist, ractx->lhist - 1, 10 * sizeof(*ractx->lhist));
  74. *ractx->lhist = ractx->history[ractx->phase] = 10 * log10(sum) - 32;
  75. for (x=1; x < 5; x++)
  76. for (y=x-1; y >= 0; y--)
  77. buffer[x] -= ractx->pr1[x-y-1] * buffer[y];
  78. /* output */
  79. for (x=0; x < 5; x++) {
  80. ractx->output[ractx->phase*5+x] = ractx->sb[4-x] =
  81. av_clipf(ractx->sb[4-x] + buffer[x], -4095, 4095);
  82. }
  83. }
  84. /**
  85. * Converts autocorrelation coefficients to LPC coefficients using the
  86. * Levinson-Durbin algorithm. See blocks 37 and 50 of the G.728 specification.
  87. *
  88. * @return 0 if success, -1 if fail
  89. */
  90. static int eval_lpc_coeffs(const float *in, float *tgt, int n)
  91. {
  92. int x, y;
  93. double f0, f1, f2;
  94. if (in[n] == 0)
  95. return -1;
  96. if ((f0 = *in) <= 0)
  97. return -1;
  98. in--; // To avoid a -1 subtraction in the inner loop
  99. for (x=1; x <= n; x++) {
  100. f1 = in[x+1];
  101. for (y=0; y < x - 1; y++)
  102. f1 += in[x-y]*tgt[y];
  103. tgt[x-1] = f2 = -f1/f0;
  104. for (y=0; y < x >> 1; y++) {
  105. float temp = tgt[y] + tgt[x-y-2]*f2;
  106. tgt[x-y-2] += tgt[y]*f2;
  107. tgt[y] = temp;
  108. }
  109. if ((f0 += f1*f2) < 0)
  110. return -1;
  111. }
  112. return 0;
  113. }
  114. static void prodsum(float *tgt, const float *src, int len, int n)
  115. {
  116. for (; n >= 0; n--)
  117. tgt[n] = scalar_product_float(src, src - n, len);
  118. }
  119. /**
  120. * Hybrid window filtering. See blocks 36 and 49 of the G.728 specification.
  121. *
  122. * @param order the order of the filter
  123. * @param n the length of the input
  124. * @param non_rec the number of non-recursive samples
  125. * @param out the filter output
  126. * @param in pointer to the input of the filter
  127. * @param hist pointer to the input history of the filter. It is updated by
  128. * this function.
  129. * @param out pointer to the non-recursive part of the output
  130. * @param out2 pointer to the recursive part of the output
  131. * @param window pointer to the windowing function table
  132. */
  133. static void do_hybrid_window(int order, int n, int non_rec, const float *in,
  134. float *out, float *hist, float *out2,
  135. const float *window)
  136. {
  137. unsigned int x;
  138. float buffer1[37];
  139. float buffer2[37];
  140. float work[111];
  141. /* update history */
  142. memmove(hist , hist + n, (order + non_rec)*sizeof(*hist));
  143. memcpy (hist + order + non_rec, in , n *sizeof(*hist));
  144. colmult(work, window, hist, order + n + non_rec);
  145. prodsum(buffer1, work + order , n , order);
  146. prodsum(buffer2, work + order + n, non_rec, order);
  147. for (x=0; x <= order; x++) {
  148. out2[x] = out2[x] * 0.5625 + buffer1[x];
  149. out [x] = out2[x] + buffer2[x];
  150. }
  151. /* Multiply by the white noise correcting factor (WNCF) */
  152. *out *= 257./256.;
  153. }
  154. /**
  155. * Backward synthesis filter. Find the LPC coefficients from past speech data.
  156. */
  157. static void backward_filter(RA288Context *ractx)
  158. {
  159. float buffer1[40], temp1[37];
  160. float buffer2[8], temp2[11];
  161. memcpy(buffer1 , ractx->output + 20, 20*sizeof(*buffer1));
  162. memcpy(buffer1 + 20, ractx->output , 20*sizeof(*buffer1));
  163. do_hybrid_window(36, 40, 35, buffer1, temp1, ractx->sp_hist, ractx->sp_rec,
  164. syn_window);
  165. if (!eval_lpc_coeffs(temp1, ractx->st1, 36))
  166. colmult(ractx->pr1, ractx->st1, syn_bw_tab, 36);
  167. memcpy(buffer2 , ractx->history + 4, 4*sizeof(*buffer2));
  168. memcpy(buffer2 + 4, ractx->history , 4*sizeof(*buffer2));
  169. do_hybrid_window(10, 8, 20, buffer2, temp2, ractx->gain_hist, ractx->gain_rec,
  170. gain_window);
  171. if (!eval_lpc_coeffs(temp2, ractx->st2, 10))
  172. colmult(ractx->pr2, ractx->st2, gain_bw_tab, 10);
  173. }
  174. /* Decode a block (celp) */
  175. static int ra288_decode_frame(AVCodecContext * avctx, void *data,
  176. int *data_size, const uint8_t * buf,
  177. int buf_size)
  178. {
  179. int16_t *out = data;
  180. int x, y;
  181. RA288Context *ractx = avctx->priv_data;
  182. GetBitContext gb;
  183. if (buf_size < avctx->block_align) {
  184. av_log(avctx, AV_LOG_ERROR,
  185. "Error! Input buffer is too small [%d<%d]\n",
  186. buf_size, avctx->block_align);
  187. return 0;
  188. }
  189. init_get_bits(&gb, buf, avctx->block_align * 8);
  190. for (x=0; x < 32; x++) {
  191. float gain = amptable[get_bits(&gb, 3)];
  192. int cb_coef = get_bits(&gb, 6 + (x&1));
  193. ractx->phase = x & 7;
  194. decode(ractx, gain, cb_coef);
  195. for (y=0; y < 5; y++)
  196. *(out++) = 8 * ractx->output[ractx->phase*5 + y];
  197. if (ractx->phase == 3)
  198. backward_filter(ractx);
  199. }
  200. *data_size = (char *)out - (char *)data;
  201. return avctx->block_align;
  202. }
  203. AVCodec ra_288_decoder =
  204. {
  205. "real_288",
  206. CODEC_TYPE_AUDIO,
  207. CODEC_ID_RA_288,
  208. sizeof(RA288Context),
  209. NULL,
  210. NULL,
  211. NULL,
  212. ra288_decode_frame,
  213. .long_name = NULL_IF_CONFIG_SMALL("RealAudio 2.0 (28.8K)"),
  214. };