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.

146 lines
4.5KB

  1. /*
  2. * various filters for ACELP-based codecs
  3. *
  4. * Copyright (c) 2008 Vladimir Voroshilov
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; 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/common.h"
  24. #include "avcodec.h"
  25. #include "acelp_filters.h"
  26. const int16_t ff_acelp_interp_filter[61] = { /* (0.15) */
  27. 29443, 28346, 25207, 20449, 14701, 8693,
  28. 3143, -1352, -4402, -5865, -5850, -4673,
  29. -2783, -672, 1211, 2536, 3130, 2991,
  30. 2259, 1170, 0, -1001, -1652, -1868,
  31. -1666, -1147, -464, 218, 756, 1060,
  32. 1099, 904, 550, 135, -245, -514,
  33. -634, -602, -451, -231, 0, 191,
  34. 308, 340, 296, 198, 78, -36,
  35. -120, -163, -165, -132, -79, -19,
  36. 34, 73, 91, 89, 70, 38,
  37. 0,
  38. };
  39. void ff_acelp_interpolate(int16_t* out, const int16_t* in,
  40. const int16_t* filter_coeffs, int precision,
  41. int frac_pos, int filter_length, int length)
  42. {
  43. int n, i;
  44. assert(frac_pos >= 0 && frac_pos < precision);
  45. for (n = 0; n < length; n++) {
  46. int idx = 0;
  47. int v = 0x4000;
  48. for (i = 0; i < filter_length;) {
  49. /* The reference G.729 and AMR fixed point code performs clipping after
  50. each of the two following accumulations.
  51. Since clipping affects only the synthetic OVERFLOW test without
  52. causing an int type overflow, it was moved outside the loop. */
  53. /* R(x):=ac_v[-k+x]
  54. v += R(n-i)*ff_acelp_interp_filter(t+6i)
  55. v += R(n+i+1)*ff_acelp_interp_filter(6-t+6i) */
  56. v += in[n + i] * filter_coeffs[idx + frac_pos];
  57. idx += precision;
  58. i++;
  59. v += in[n - i] * filter_coeffs[idx - frac_pos];
  60. }
  61. if (av_clip_int16(v >> 15) != (v >> 15))
  62. av_log(NULL, AV_LOG_WARNING, "overflow that would need cliping in ff_acelp_interpolate()\n");
  63. out[n] = v >> 15;
  64. }
  65. }
  66. void ff_acelp_interpolatef(float *out, const float *in,
  67. const float *filter_coeffs, int precision,
  68. int frac_pos, int filter_length, int length)
  69. {
  70. int n, i;
  71. for (n = 0; n < length; n++) {
  72. int idx = 0;
  73. float v = 0;
  74. for (i = 0; i < filter_length;) {
  75. v += in[n + i] * filter_coeffs[idx + frac_pos];
  76. idx += precision;
  77. i++;
  78. v += in[n - i] * filter_coeffs[idx - frac_pos];
  79. }
  80. out[n] = v;
  81. }
  82. }
  83. void ff_acelp_high_pass_filter(int16_t* out, int hpf_f[2],
  84. const int16_t* in, int length)
  85. {
  86. int i;
  87. int tmp;
  88. for (i = 0; i < length; i++) {
  89. tmp = (hpf_f[0]* 15836LL) >> 13;
  90. tmp += (hpf_f[1]* -7667LL) >> 13;
  91. tmp += 7699 * (in[i] - 2*in[i-1] + in[i-2]);
  92. /* With "+0x800" rounding, clipping is needed
  93. for ALGTHM and SPEECH tests. */
  94. out[i] = av_clip_int16((tmp + 0x800) >> 12);
  95. hpf_f[1] = hpf_f[0];
  96. hpf_f[0] = tmp;
  97. }
  98. }
  99. void ff_acelp_apply_order_2_transfer_function(float *out, const float *in,
  100. const float zero_coeffs[2],
  101. const float pole_coeffs[2],
  102. float gain, float mem[2], int n)
  103. {
  104. int i;
  105. float tmp;
  106. for (i = 0; i < n; i++) {
  107. tmp = gain * in[i] - pole_coeffs[0] * mem[0] - pole_coeffs[1] * mem[1];
  108. out[i] = tmp + zero_coeffs[0] * mem[0] + zero_coeffs[1] * mem[1];
  109. mem[1] = mem[0];
  110. mem[0] = tmp;
  111. }
  112. }
  113. void ff_tilt_compensation(float *mem, float tilt, float *samples, int size)
  114. {
  115. float new_tilt_mem = samples[size - 1];
  116. int i;
  117. for (i = size - 1; i > 0; i--)
  118. samples[i] -= tilt * samples[i - 1];
  119. samples[0] -= tilt * *mem;
  120. *mem = new_tilt_mem;
  121. }