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.

262 lines
7.2KB

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