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.

221 lines
7.4KB

  1. /*
  2. * gain code, gain pitch and pitch delay decoding
  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. #ifndef AVCODEC_ACELP_PITCH_DELAY_H
  23. #define AVCODEC_ACELP_PITCH_DELAY_H
  24. #include <stdint.h>
  25. #define PITCH_DELAY_MIN 20
  26. #define PITCH_DELAY_MAX 143
  27. /**
  28. * \brief Decode pitch delay of the first subframe encoded by 8 bits with 1/3
  29. * resolution.
  30. * \param ac_index adaptive codebook index (8 bits)
  31. *
  32. * \return pitch delay in 1/3 units
  33. *
  34. * Pitch delay is coded:
  35. * with 1/3 resolution, 19 < pitch_delay < 85
  36. * integers only, 85 <= pitch_delay <= 143
  37. */
  38. int ff_acelp_decode_8bit_to_1st_delay3(int ac_index);
  39. /**
  40. * \brief Decode pitch delay of the second subframe encoded by 5 or 6 bits
  41. * with 1/3 precision.
  42. * \param ac_index adaptive codebook index (5 or 6 bits)
  43. * \param pitch_delay_min lower bound (integer) of pitch delay interval
  44. * for second subframe
  45. *
  46. * \return pitch delay in 1/3 units
  47. *
  48. * Pitch delay is coded:
  49. * with 1/3 resolution, -6 < pitch_delay - int(prev_pitch_delay) < 5
  50. *
  51. * \remark The routine is used in G.729 @8k, AMR @10.2k, AMR @7.95k,
  52. * AMR @7.4k for the second subframe.
  53. */
  54. int ff_acelp_decode_5_6_bit_to_2nd_delay3(
  55. int ac_index,
  56. int pitch_delay_min);
  57. /**
  58. * \brief Decode pitch delay with 1/3 precision.
  59. * \param ac_index adaptive codebook index (4 bits)
  60. * \param pitch_delay_min lower bound (integer) of pitch delay interval for
  61. * second subframe
  62. *
  63. * \return pitch delay in 1/3 units
  64. *
  65. * Pitch delay is coded:
  66. * integers only, -6 < pitch_delay - int(prev_pitch_delay) <= -2
  67. * with 1/3 resolution, -2 < pitch_delay - int(prev_pitch_delay) < 1
  68. * integers only, 1 <= pitch_delay - int(prev_pitch_delay) < 5
  69. *
  70. * \remark The routine is used in G.729 @6.4k, AMR @6.7k, AMR @5.9k,
  71. * AMR @5.15k, AMR @4.75k for the second subframe.
  72. */
  73. int ff_acelp_decode_4bit_to_2nd_delay3(
  74. int ac_index,
  75. int pitch_delay_min);
  76. /**
  77. * \brief Decode pitch delay of the first subframe encoded by 9 bits
  78. * with 1/6 precision.
  79. * \param ac_index adaptive codebook index (9 bits)
  80. * \param pitch_delay_min lower bound (integer) of pitch delay interval for
  81. * second subframe
  82. *
  83. * \return pitch delay in 1/6 units
  84. *
  85. * Pitch delay is coded:
  86. * with 1/6 resolution, 17 < pitch_delay < 95
  87. * integers only, 95 <= pitch_delay <= 143
  88. *
  89. * \remark The routine is used in AMR @12.2k for the first and third subframes.
  90. */
  91. int ff_acelp_decode_9bit_to_1st_delay6(int ac_index);
  92. /**
  93. * \brief Decode pitch delay of the second subframe encoded by 6 bits
  94. * with 1/6 precision.
  95. * \param ac_index adaptive codebook index (6 bits)
  96. * \param pitch_delay_min lower bound (integer) of pitch delay interval for
  97. * second subframe
  98. *
  99. * \return pitch delay in 1/6 units
  100. *
  101. * Pitch delay is coded:
  102. * with 1/6 resolution, -6 < pitch_delay - int(prev_pitch_delay) < 5
  103. *
  104. * \remark The routine is used in AMR @12.2k for the second and fourth subframes.
  105. */
  106. int ff_acelp_decode_6bit_to_2nd_delay6(
  107. int ac_index,
  108. int pitch_delay_min);
  109. /**
  110. * \brief Update past quantized energies
  111. * \param quant_energy [in/out] past quantized energies (5.10)
  112. * \param gain_corr_factor gain correction factor
  113. * \param log2_ma_pred_order log2() of MA prediction order
  114. * \param erasure frame erasure flag
  115. *
  116. * If frame erasure flag is not equal to zero, memory is updated with
  117. * averaged energy, attenuated by 4dB:
  118. * max(avg(quant_energy[i])-4, -14), i=0,ma_pred_order
  119. *
  120. * In normal mode memory is updated with
  121. * Er - Ep = 20 * log10(gain_corr_factor)
  122. *
  123. * \remark The routine is used in G.729 and AMR (all modes).
  124. */
  125. void ff_acelp_update_past_gain(
  126. int16_t* quant_energy,
  127. int gain_corr_factor,
  128. int log2_ma_pred_order,
  129. int erasure);
  130. /**
  131. * \brief Decode the adaptive codebook gain and add
  132. * correction (4.1.5 and 3.9.1 of G.729).
  133. * \param gain_corr_factor gain correction factor (2.13)
  134. * \param fc_v fixed-codebook vector (2.13)
  135. * \param mr_energy mean innovation energy and fixed-point correction (7.13)
  136. * \param quant_energy [in/out] past quantized energies (5.10)
  137. * \param subframe_size length of subframe
  138. * \param ma_pred_order MA prediction order
  139. *
  140. * \return quantized fixed-codebook gain (14.1)
  141. *
  142. * The routine implements equations 69, 66 and 71 of the G.729 specification (3.9.1)
  143. *
  144. * Em - mean innovation energy (dB, constant, depends on decoding algorithm)
  145. * Ep - mean-removed predicted energy (dB)
  146. * Er - mean-removed innovation energy (dB)
  147. * Ei - mean energy of the fixed-codebook contribution (dB)
  148. * N - subframe_size
  149. * M - MA (Moving Average) prediction order
  150. * gc - fixed-codebook gain
  151. * gc_p - predicted fixed-codebook gain
  152. *
  153. * Fixed codebook gain is computed using predicted gain gc_p and
  154. * correction factor gain_corr_factor as shown below:
  155. *
  156. * gc = gc_p * gain_corr_factor
  157. *
  158. * The predicted fixed codebook gain gc_p is found by predicting
  159. * the energy of the fixed-codebook contribution from the energy
  160. * of previous fixed-codebook contributions.
  161. *
  162. * mean = 1/N * sum(i,0,N){ fc_v[i] * fc_v[i] }
  163. *
  164. * Ei = 10log(mean)
  165. *
  166. * Er = 10log(1/N * gc^2 * mean) - Em = 20log(gc) + Ei - Em
  167. *
  168. * Replacing Er with Ep and gc with gc_p we will receive:
  169. *
  170. * Ep = 10log(1/N * gc_p^2 * mean) - Em = 20log(gc_p) + Ei - Em
  171. *
  172. * and from above:
  173. *
  174. * gc_p = 10^((Ep - Ei + Em) / 20)
  175. *
  176. * Ep is predicted using past energies and prediction coefficients:
  177. *
  178. * Ep = sum(i,0,M){ ma_prediction_coeff[i] * quant_energy[i] }
  179. *
  180. * gc_p in fixed-point arithmetic is calculated as following:
  181. *
  182. * mean = 1/N * sum(i,0,N){ (fc_v[i] / 2^13) * (fc_v[i] / 2^13) } =
  183. * = 1/N * sum(i,0,N) { fc_v[i] * fc_v[i] } / 2^26
  184. *
  185. * Ei = 10log(mean) = -10log(N) - 10log(2^26) +
  186. * + 10log(sum(i,0,N) { fc_v[i] * fc_v[i] })
  187. *
  188. * Ep - Ei + Em = Ep + Em + 10log(N) + 10log(2^26) -
  189. * - 10log(sum(i,0,N) { fc_v[i] * fc_v[i] }) =
  190. * = Ep + mr_energy - 10log(sum(i,0,N) { fc_v[i] * fc_v[i] })
  191. *
  192. * gc_p = 10 ^ ((Ep - Ei + Em) / 20) =
  193. * = 2 ^ (3.3219 * (Ep - Ei + Em) / 20) = 2 ^ (0.166 * (Ep - Ei + Em))
  194. *
  195. * where
  196. *
  197. * mr_energy = Em + 10log(N) + 10log(2^26)
  198. *
  199. * \remark The routine is used in G.729 and AMR (all modes).
  200. */
  201. int16_t ff_acelp_decode_gain_code(
  202. int gain_corr_factor,
  203. const int16_t* fc_v,
  204. int mr_energy,
  205. const int16_t* quant_energy,
  206. const int16_t* ma_prediction_coeff,
  207. int subframe_size,
  208. int max_pred_order);
  209. #endif /* AVCODEC_ACELP_PITCH_DELAY_H */