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.

236 lines
6.8KB

  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. #include "lpc.h"
  26. typedef struct {
  27. float sp_lpc[36]; ///< LPC coefficients for speech data (spec: A)
  28. float gain_lpc[10]; ///< LPC coefficients for gain (spec: GB)
  29. float sp_hist[111]; ///< Speech data history (spec: SB)
  30. /** Speech part of the gain autocorrelation (spec: REXP) */
  31. float sp_rec[37];
  32. float gain_hist[38]; ///< Log-gain history (spec: SBLG)
  33. /** Recursive part of the gain autocorrelation (spec: REXPLG) */
  34. float gain_rec[11];
  35. float sp_block[41]; ///< Speech data of four blocks (spec: STTMP)
  36. float gain_block[10]; ///< Gain data of four blocks (spec: GSTATE)
  37. } RA288Context;
  38. static av_cold int ra288_decode_init(AVCodecContext *avctx)
  39. {
  40. avctx->sample_fmt = SAMPLE_FMT_S16;
  41. return 0;
  42. }
  43. static inline float scalar_product_float(const float * v1, const float * v2,
  44. int size)
  45. {
  46. float res = 0.;
  47. while (size--)
  48. res += *v1++ * *v2++;
  49. return res;
  50. }
  51. static void colmult(float *tgt, const float *m1, const float *m2, int n)
  52. {
  53. while (n--)
  54. *tgt++ = *m1++ * *m2++;
  55. }
  56. static void decode(RA288Context *ractx, float gain, int cb_coef)
  57. {
  58. int i, j;
  59. double sumsum;
  60. float sum, buffer[5];
  61. float *block = ractx->sp_block + 36; // Current block
  62. memmove(ractx->sp_block, ractx->sp_block + 5, 36*sizeof(*ractx->sp_block));
  63. for (i=0; i < 5; i++) {
  64. block[i] = 0.;
  65. for (j=0; j < 36; j++)
  66. block[i] -= block[i-1-j]*ractx->sp_lpc[j];
  67. }
  68. /* block 46 of G.728 spec */
  69. sum = 32.;
  70. for (i=0; i < 10; i++)
  71. sum -= ractx->gain_block[9-i] * ractx->gain_lpc[i];
  72. /* block 47 of G.728 spec */
  73. sum = av_clipf(sum, 0, 60);
  74. /* block 48 of G.728 spec */
  75. sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*gain */
  76. for (i=0; i < 5; i++)
  77. buffer[i] = codetable[cb_coef][i] * sumsum;
  78. sum = scalar_product_float(buffer, buffer, 5) / 5;
  79. sum = FFMAX(sum, 1);
  80. /* shift and store */
  81. memmove(ractx->gain_block, ractx->gain_block + 1,
  82. 9 * sizeof(*ractx->gain_block));
  83. ractx->gain_block[9] = 10 * log10(sum) - 32;
  84. for (i=1; i < 5; i++)
  85. for (j=i-1; j >= 0; j--)
  86. buffer[i] -= ractx->sp_lpc[i-j-1] * buffer[j];
  87. /* output */
  88. for (i=0; i < 5; i++)
  89. block[i] = av_clipf(block[i] + buffer[i], -4095, 4095);
  90. }
  91. static void convolve(float *tgt, const float *src, int len, int n)
  92. {
  93. for (; n >= 0; n--)
  94. tgt[n] = scalar_product_float(src, src - n, len);
  95. }
  96. /**
  97. * Hybrid window filtering. See blocks 36 and 49 of the G.728 specification.
  98. *
  99. * @param order the order of the filter
  100. * @param n the length of the input
  101. * @param non_rec the number of non-recursive samples
  102. * @param out the filter output
  103. * @param in pointer to the input of the filter
  104. * @param hist pointer to the input history of the filter. It is updated by
  105. * this function.
  106. * @param out pointer to the non-recursive part of the output
  107. * @param out2 pointer to the recursive part of the output
  108. * @param window pointer to the windowing function table
  109. */
  110. static void do_hybrid_window(int order, int n, int non_rec, const float *in,
  111. float *out, float *hist, float *out2,
  112. const float *window)
  113. {
  114. int i;
  115. float buffer1[order + 1];
  116. float buffer2[order + 1];
  117. float work[order + n + non_rec];
  118. /* update history */
  119. memmove(hist , hist + n, (order + non_rec)*sizeof(*hist));
  120. memcpy (hist + order + non_rec, in , n *sizeof(*hist));
  121. colmult(work, window, hist, order + n + non_rec);
  122. convolve(buffer1, work + order , n , order);
  123. convolve(buffer2, work + order + n, non_rec, order);
  124. for (i=0; i <= order; i++) {
  125. out2[i] = out2[i] * 0.5625 + buffer1[i];
  126. out [i] = out2[i] + buffer2[i];
  127. }
  128. /* Multiply by the white noise correcting factor (WNCF) */
  129. *out *= 257./256.;
  130. }
  131. /**
  132. * Backward synthesis filter. Find the LPC coefficients from past speech data.
  133. */
  134. static void backward_filter(RA288Context *ractx)
  135. {
  136. float temp1[37]; // RTMP in the spec
  137. float temp2[11]; // GPTPMP in the spec
  138. do_hybrid_window(36, 40, 35, ractx->sp_block+1, temp1, ractx->sp_hist,
  139. ractx->sp_rec, syn_window);
  140. if (!compute_lpc_coefs(temp1, 36, ractx->sp_lpc, 0, 1, 1))
  141. colmult(ractx->sp_lpc, ractx->sp_lpc, syn_bw_tab, 36);
  142. do_hybrid_window(10, 8, 20, ractx->gain_block+2, temp2, ractx->gain_hist,
  143. ractx->gain_rec, gain_window);
  144. if (!compute_lpc_coefs(temp2, 10, ractx->gain_lpc, 0, 1, 1))
  145. colmult(ractx->gain_lpc, ractx->gain_lpc, gain_bw_tab, 10);
  146. }
  147. static int ra288_decode_frame(AVCodecContext * avctx, void *data,
  148. int *data_size, const uint8_t * buf,
  149. int buf_size)
  150. {
  151. int16_t *out = data;
  152. int i, j;
  153. RA288Context *ractx = avctx->priv_data;
  154. GetBitContext gb;
  155. if (buf_size < avctx->block_align) {
  156. av_log(avctx, AV_LOG_ERROR,
  157. "Error! Input buffer is too small [%d<%d]\n",
  158. buf_size, avctx->block_align);
  159. return 0;
  160. }
  161. if (*data_size < 32*5*2)
  162. return -1;
  163. init_get_bits(&gb, buf, avctx->block_align * 8);
  164. for (i=0; i < 32; i++) {
  165. float gain = amptable[get_bits(&gb, 3)];
  166. int cb_coef = get_bits(&gb, 6 + (i&1));
  167. decode(ractx, gain, cb_coef);
  168. for (j=0; j < 5; j++)
  169. *(out++) = 8 * ractx->sp_block[36 + j];
  170. if ((i & 7) == 3)
  171. backward_filter(ractx);
  172. }
  173. *data_size = (char *)out - (char *)data;
  174. return avctx->block_align;
  175. }
  176. AVCodec ra_288_decoder =
  177. {
  178. "real_288",
  179. CODEC_TYPE_AUDIO,
  180. CODEC_ID_RA_288,
  181. sizeof(RA288Context),
  182. ra288_decode_init,
  183. NULL,
  184. NULL,
  185. ra288_decode_frame,
  186. .long_name = NULL_IF_CONFIG_SMALL("RealAudio 2.0 (28.8K)"),
  187. };