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.

275 lines
7.1KB

  1. /*
  2. * adaptive and fixed codebook vector operations for ACELP-based codecs
  3. *
  4. * Copyright (c) 2008 Vladimir Voroshilov
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include <inttypes.h>
  23. #include "libavutil/avassert.h"
  24. #include "libavutil/common.h"
  25. #include "libavutil/float_dsp.h"
  26. #include "avcodec.h"
  27. #include "acelp_vectors.h"
  28. const uint8_t ff_fc_2pulses_9bits_track1[16] =
  29. {
  30. 1, 3,
  31. 6, 8,
  32. 11, 13,
  33. 16, 18,
  34. 21, 23,
  35. 26, 28,
  36. 31, 33,
  37. 36, 38
  38. };
  39. const uint8_t ff_fc_2pulses_9bits_track1_gray[16] =
  40. {
  41. 1, 3,
  42. 8, 6,
  43. 18, 16,
  44. 11, 13,
  45. 38, 36,
  46. 31, 33,
  47. 21, 23,
  48. 28, 26,
  49. };
  50. const uint8_t ff_fc_2pulses_9bits_track2_gray[32] =
  51. {
  52. 0, 2,
  53. 5, 4,
  54. 12, 10,
  55. 7, 9,
  56. 25, 24,
  57. 20, 22,
  58. 14, 15,
  59. 19, 17,
  60. 36, 31,
  61. 21, 26,
  62. 1, 6,
  63. 16, 11,
  64. 27, 29,
  65. 32, 30,
  66. 39, 37,
  67. 34, 35,
  68. };
  69. const uint8_t ff_fc_4pulses_8bits_tracks_13[16] =
  70. {
  71. 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75,
  72. };
  73. const uint8_t ff_fc_4pulses_8bits_track_4[32] =
  74. {
  75. 3, 4,
  76. 8, 9,
  77. 13, 14,
  78. 18, 19,
  79. 23, 24,
  80. 28, 29,
  81. 33, 34,
  82. 38, 39,
  83. 43, 44,
  84. 48, 49,
  85. 53, 54,
  86. 58, 59,
  87. 63, 64,
  88. 68, 69,
  89. 73, 74,
  90. 78, 79,
  91. };
  92. const float ff_pow_0_7[10] = {
  93. 0.700000, 0.490000, 0.343000, 0.240100, 0.168070,
  94. 0.117649, 0.082354, 0.057648, 0.040354, 0.028248
  95. };
  96. const float ff_pow_0_75[10] = {
  97. 0.750000, 0.562500, 0.421875, 0.316406, 0.237305,
  98. 0.177979, 0.133484, 0.100113, 0.075085, 0.056314
  99. };
  100. const float ff_pow_0_55[10] = {
  101. 0.550000, 0.302500, 0.166375, 0.091506, 0.050328,
  102. 0.027681, 0.015224, 0.008373, 0.004605, 0.002533
  103. };
  104. const float ff_b60_sinc[61] = {
  105. 0.898529 , 0.865051 , 0.769257 , 0.624054 , 0.448639 , 0.265289 ,
  106. 0.0959167 , -0.0412598 , -0.134338 , -0.178986 , -0.178528 , -0.142609 ,
  107. -0.0849304 , -0.0205078 , 0.0369568 , 0.0773926 , 0.0955200 , 0.0912781 ,
  108. 0.0689392 , 0.0357056 , 0.0 , -0.0305481 , -0.0504150 , -0.0570068 ,
  109. -0.0508423 , -0.0350037 , -0.0141602 , 0.00665283, 0.0230713 , 0.0323486 ,
  110. 0.0335388 , 0.0275879 , 0.0167847 , 0.00411987, -0.00747681, -0.0156860 ,
  111. -0.0193481 , -0.0183716 , -0.0137634 , -0.00704956, 0.0 , 0.00582886 ,
  112. 0.00939941, 0.0103760 , 0.00903320, 0.00604248, 0.00238037, -0.00109863 ,
  113. -0.00366211, -0.00497437, -0.00503540, -0.00402832, -0.00241089, -0.000579834,
  114. 0.00103760, 0.00222778, 0.00277710, 0.00271606, 0.00213623, 0.00115967 ,
  115. 0.
  116. };
  117. void ff_acelp_fc_pulse_per_track(
  118. int16_t* fc_v,
  119. const uint8_t *tab1,
  120. const uint8_t *tab2,
  121. int pulse_indexes,
  122. int pulse_signs,
  123. int pulse_count,
  124. int bits)
  125. {
  126. int mask = (1 << bits) - 1;
  127. int i;
  128. for(i=0; i<pulse_count; i++)
  129. {
  130. fc_v[i + tab1[pulse_indexes & mask]] +=
  131. (pulse_signs & 1) ? 8191 : -8192; // +/-1 in (2.13)
  132. pulse_indexes >>= bits;
  133. pulse_signs >>= 1;
  134. }
  135. fc_v[tab2[pulse_indexes]] += (pulse_signs & 1) ? 8191 : -8192;
  136. }
  137. void ff_decode_10_pulses_35bits(const int16_t *fixed_index,
  138. AMRFixed *fixed_sparse,
  139. const uint8_t *gray_decode,
  140. int half_pulse_count, int bits)
  141. {
  142. int i;
  143. int mask = (1 << bits) - 1;
  144. fixed_sparse->no_repeat_mask = 0;
  145. fixed_sparse->n = 2 * half_pulse_count;
  146. for (i = 0; i < half_pulse_count; i++) {
  147. const int pos1 = gray_decode[fixed_index[2*i+1] & mask] + i;
  148. const int pos2 = gray_decode[fixed_index[2*i ] & mask] + i;
  149. const float sign = (fixed_index[2*i+1] & (1 << bits)) ? -1.0 : 1.0;
  150. fixed_sparse->x[2*i+1] = pos1;
  151. fixed_sparse->x[2*i ] = pos2;
  152. fixed_sparse->y[2*i+1] = sign;
  153. fixed_sparse->y[2*i ] = pos2 < pos1 ? -sign : sign;
  154. }
  155. }
  156. void ff_acelp_weighted_vector_sum(
  157. int16_t* out,
  158. const int16_t *in_a,
  159. const int16_t *in_b,
  160. int16_t weight_coeff_a,
  161. int16_t weight_coeff_b,
  162. int16_t rounder,
  163. int shift,
  164. int length)
  165. {
  166. int i;
  167. // Clipping required here; breaks OVERFLOW test.
  168. for(i=0; i<length; i++)
  169. out[i] = av_clip_int16((
  170. in_a[i] * weight_coeff_a +
  171. in_b[i] * weight_coeff_b +
  172. rounder) >> shift);
  173. }
  174. void ff_weighted_vector_sumf(float *out, const float *in_a, const float *in_b,
  175. float weight_coeff_a, float weight_coeff_b, int length)
  176. {
  177. int i;
  178. for(i=0; i<length; i++)
  179. out[i] = weight_coeff_a * in_a[i]
  180. + weight_coeff_b * in_b[i];
  181. }
  182. void ff_adaptive_gain_control(float *out, const float *in, float speech_energ,
  183. int size, float alpha, float *gain_mem)
  184. {
  185. int i;
  186. float postfilter_energ = avpriv_scalarproduct_float_c(in, in, size);
  187. float gain_scale_factor = 1.0;
  188. float mem = *gain_mem;
  189. if (postfilter_energ)
  190. gain_scale_factor = sqrt(speech_energ / postfilter_energ);
  191. gain_scale_factor *= 1.0 - alpha;
  192. for (i = 0; i < size; i++) {
  193. mem = alpha * mem + gain_scale_factor;
  194. out[i] = in[i] * mem;
  195. }
  196. *gain_mem = mem;
  197. }
  198. void ff_scale_vector_to_given_sum_of_squares(float *out, const float *in,
  199. float sum_of_squares, const int n)
  200. {
  201. int i;
  202. float scalefactor = avpriv_scalarproduct_float_c(in, in, n);
  203. if (scalefactor)
  204. scalefactor = sqrt(sum_of_squares / scalefactor);
  205. for (i = 0; i < n; i++)
  206. out[i] = in[i] * scalefactor;
  207. }
  208. void ff_set_fixed_vector(float *out, const AMRFixed *in, float scale, int size)
  209. {
  210. int i;
  211. for (i=0; i < in->n; i++) {
  212. int x = in->x[i], repeats = !((in->no_repeat_mask >> i) & 1);
  213. float y = in->y[i] * scale;
  214. if (in->pitch_lag > 0)
  215. av_assert0(x < size);
  216. do {
  217. out[x] += y;
  218. y *= in->pitch_fac;
  219. x += in->pitch_lag;
  220. } while (x < size && repeats);
  221. }
  222. }
  223. void ff_clear_fixed_vector(float *out, const AMRFixed *in, int size)
  224. {
  225. int i;
  226. for (i=0; i < in->n; i++) {
  227. int x = in->x[i], repeats = !((in->no_repeat_mask >> i) & 1);
  228. if (in->pitch_lag > 0)
  229. do {
  230. out[x] = 0.0;
  231. x += in->pitch_lag;
  232. } while (x < size && repeats);
  233. }
  234. }
  235. void ff_acelp_vectors_init(ACELPVContext *c)
  236. {
  237. c->weighted_vector_sumf = ff_weighted_vector_sumf;
  238. if(HAVE_MIPSFPU)
  239. ff_acelp_vectors_init_mips(c);
  240. }