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.

1095 lines
41KB

  1. /*
  2. * AMR narrowband decoder
  3. * Copyright (c) 2006-2007 Robert Swain
  4. * Copyright (c) 2009 Colin McQuillan
  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. /**
  23. * @file
  24. * AMR narrowband decoder
  25. *
  26. * This decoder uses floats for simplicity and so is not bit-exact. One
  27. * difference is that differences in phase can accumulate. The test sequences
  28. * in 3GPP TS 26.074 can still be useful.
  29. *
  30. * - Comparing this file's output to the output of the ref decoder gives a
  31. * PSNR of 30 to 80. Plotting the output samples shows a difference in
  32. * phase in some areas.
  33. *
  34. * - Comparing both decoders against their input, this decoder gives a similar
  35. * PSNR. If the test sequence homing frames are removed (this decoder does
  36. * not detect them), the PSNR is at least as good as the reference on 140
  37. * out of 169 tests.
  38. */
  39. #include <string.h>
  40. #include <math.h>
  41. #include "libavutil/channel_layout.h"
  42. #include "libavutil/float_dsp.h"
  43. #include "avcodec.h"
  44. #include "libavutil/common.h"
  45. #include "libavutil/avassert.h"
  46. #include "celp_math.h"
  47. #include "celp_filters.h"
  48. #include "acelp_filters.h"
  49. #include "acelp_vectors.h"
  50. #include "acelp_pitch_delay.h"
  51. #include "lsp.h"
  52. #include "amr.h"
  53. #include "internal.h"
  54. #include "amrnbdata.h"
  55. #define AMR_BLOCK_SIZE 160 ///< samples per frame
  56. #define AMR_SAMPLE_BOUND 32768.0 ///< threshold for synthesis overflow
  57. /**
  58. * Scale from constructed speech to [-1,1]
  59. *
  60. * AMR is designed to produce 16-bit PCM samples (3GPP TS 26.090 4.2) but
  61. * upscales by two (section 6.2.2).
  62. *
  63. * Fundamentally, this scale is determined by energy_mean through
  64. * the fixed vector contribution to the excitation vector.
  65. */
  66. #define AMR_SAMPLE_SCALE (2.0 / 32768.0)
  67. /** Prediction factor for 12.2kbit/s mode */
  68. #define PRED_FAC_MODE_12k2 0.65
  69. #define LSF_R_FAC (8000.0 / 32768.0) ///< LSF residual tables to Hertz
  70. #define MIN_LSF_SPACING (50.0488 / 8000.0) ///< Ensures stability of LPC filter
  71. #define PITCH_LAG_MIN_MODE_12k2 18 ///< Lower bound on decoded lag search in 12.2kbit/s mode
  72. /** Initial energy in dB. Also used for bad frames (unimplemented). */
  73. #define MIN_ENERGY -14.0
  74. /** Maximum sharpening factor
  75. *
  76. * The specification says 0.8, which should be 13107, but the reference C code
  77. * uses 13017 instead. (Amusingly the same applies to SHARP_MAX in g729dec.c.)
  78. */
  79. #define SHARP_MAX 0.79449462890625
  80. /** Number of impulse response coefficients used for tilt factor */
  81. #define AMR_TILT_RESPONSE 22
  82. /** Tilt factor = 1st reflection coefficient * gamma_t */
  83. #define AMR_TILT_GAMMA_T 0.8
  84. /** Adaptive gain control factor used in post-filter */
  85. #define AMR_AGC_ALPHA 0.9
  86. typedef struct AMRContext {
  87. AMRNBFrame frame; ///< decoded AMR parameters (lsf coefficients, codebook indexes, etc)
  88. uint8_t bad_frame_indicator; ///< bad frame ? 1 : 0
  89. enum Mode cur_frame_mode;
  90. int16_t prev_lsf_r[LP_FILTER_ORDER]; ///< residual LSF vector from previous subframe
  91. double lsp[4][LP_FILTER_ORDER]; ///< lsp vectors from current frame
  92. double prev_lsp_sub4[LP_FILTER_ORDER]; ///< lsp vector for the 4th subframe of the previous frame
  93. float lsf_q[4][LP_FILTER_ORDER]; ///< Interpolated LSF vector for fixed gain smoothing
  94. float lsf_avg[LP_FILTER_ORDER]; ///< vector of averaged lsf vector
  95. float lpc[4][LP_FILTER_ORDER]; ///< lpc coefficient vectors for 4 subframes
  96. uint8_t pitch_lag_int; ///< integer part of pitch lag from current subframe
  97. float excitation_buf[PITCH_DELAY_MAX + LP_FILTER_ORDER + 1 + AMR_SUBFRAME_SIZE]; ///< current excitation and all necessary excitation history
  98. float *excitation; ///< pointer to the current excitation vector in excitation_buf
  99. float pitch_vector[AMR_SUBFRAME_SIZE]; ///< adaptive code book (pitch) vector
  100. float fixed_vector[AMR_SUBFRAME_SIZE]; ///< algebraic codebook (fixed) vector (must be kept zero between frames)
  101. float prediction_error[4]; ///< quantified prediction errors {20log10(^gamma_gc)} for previous four subframes
  102. float pitch_gain[5]; ///< quantified pitch gains for the current and previous four subframes
  103. float fixed_gain[5]; ///< quantified fixed gains for the current and previous four subframes
  104. float beta; ///< previous pitch_gain, bounded by [0.0,SHARP_MAX]
  105. uint8_t diff_count; ///< the number of subframes for which diff has been above 0.65
  106. uint8_t hang_count; ///< the number of subframes since a hangover period started
  107. float prev_sparse_fixed_gain; ///< previous fixed gain; used by anti-sparseness processing to determine "onset"
  108. uint8_t prev_ir_filter_nr; ///< previous impulse response filter "impNr": 0 - strong, 1 - medium, 2 - none
  109. uint8_t ir_filter_onset; ///< flag for impulse response filter strength
  110. float postfilter_mem[10]; ///< previous intermediate values in the formant filter
  111. float tilt_mem; ///< previous input to tilt compensation filter
  112. float postfilter_agc; ///< previous factor used for adaptive gain control
  113. float high_pass_mem[2]; ///< previous intermediate values in the high-pass filter
  114. float samples_in[LP_FILTER_ORDER + AMR_SUBFRAME_SIZE]; ///< floating point samples
  115. ACELPFContext acelpf_ctx; ///< context for filters for ACELP-based codecs
  116. ACELPVContext acelpv_ctx; ///< context for vector operations for ACELP-based codecs
  117. CELPFContext celpf_ctx; ///< context for filters for CELP-based codecs
  118. CELPMContext celpm_ctx; ///< context for fixed point math operations
  119. } AMRContext;
  120. /** Double version of ff_weighted_vector_sumf() */
  121. static void weighted_vector_sumd(double *out, const double *in_a,
  122. const double *in_b, double weight_coeff_a,
  123. double weight_coeff_b, int length)
  124. {
  125. int i;
  126. for (i = 0; i < length; i++)
  127. out[i] = weight_coeff_a * in_a[i]
  128. + weight_coeff_b * in_b[i];
  129. }
  130. static av_cold int amrnb_decode_init(AVCodecContext *avctx)
  131. {
  132. AMRContext *p = avctx->priv_data;
  133. int i;
  134. if (avctx->channels > 1) {
  135. avpriv_report_missing_feature(avctx, "multi-channel AMR");
  136. return AVERROR_PATCHWELCOME;
  137. }
  138. avctx->channels = 1;
  139. avctx->channel_layout = AV_CH_LAYOUT_MONO;
  140. if (!avctx->sample_rate)
  141. avctx->sample_rate = 8000;
  142. avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
  143. // p->excitation always points to the same position in p->excitation_buf
  144. p->excitation = &p->excitation_buf[PITCH_DELAY_MAX + LP_FILTER_ORDER + 1];
  145. for (i = 0; i < LP_FILTER_ORDER; i++) {
  146. p->prev_lsp_sub4[i] = lsp_sub4_init[i] * 1000 / (float)(1 << 15);
  147. p->lsf_avg[i] = p->lsf_q[3][i] = lsp_avg_init[i] / (float)(1 << 15);
  148. }
  149. for (i = 0; i < 4; i++)
  150. p->prediction_error[i] = MIN_ENERGY;
  151. ff_acelp_filter_init(&p->acelpf_ctx);
  152. ff_acelp_vectors_init(&p->acelpv_ctx);
  153. ff_celp_filter_init(&p->celpf_ctx);
  154. ff_celp_math_init(&p->celpm_ctx);
  155. return 0;
  156. }
  157. /**
  158. * Unpack an RFC4867 speech frame into the AMR frame mode and parameters.
  159. *
  160. * The order of speech bits is specified by 3GPP TS 26.101.
  161. *
  162. * @param p the context
  163. * @param buf pointer to the input buffer
  164. * @param buf_size size of the input buffer
  165. *
  166. * @return the frame mode
  167. */
  168. static enum Mode unpack_bitstream(AMRContext *p, const uint8_t *buf,
  169. int buf_size)
  170. {
  171. enum Mode mode;
  172. // Decode the first octet.
  173. mode = buf[0] >> 3 & 0x0F; // frame type
  174. p->bad_frame_indicator = (buf[0] & 0x4) != 0x4; // quality bit
  175. if (mode >= N_MODES || buf_size < frame_sizes_nb[mode] + 1) {
  176. return NO_DATA;
  177. }
  178. if (mode < MODE_DTX)
  179. ff_amr_bit_reorder((uint16_t *) &p->frame, sizeof(AMRNBFrame), buf + 1,
  180. amr_unpacking_bitmaps_per_mode[mode]);
  181. return mode;
  182. }
  183. /// @name AMR pitch LPC coefficient decoding functions
  184. /// @{
  185. /**
  186. * Interpolate the LSF vector (used for fixed gain smoothing).
  187. * The interpolation is done over all four subframes even in MODE_12k2.
  188. *
  189. * @param[in] ctx The Context
  190. * @param[in,out] lsf_q LSFs in [0,1] for each subframe
  191. * @param[in] lsf_new New LSFs in [0,1] for subframe 4
  192. */
  193. static void interpolate_lsf(ACELPVContext *ctx, float lsf_q[4][LP_FILTER_ORDER], float *lsf_new)
  194. {
  195. int i;
  196. for (i = 0; i < 4; i++)
  197. ctx->weighted_vector_sumf(lsf_q[i], lsf_q[3], lsf_new,
  198. 0.25 * (3 - i), 0.25 * (i + 1),
  199. LP_FILTER_ORDER);
  200. }
  201. /**
  202. * Decode a set of 5 split-matrix quantized lsf indexes into an lsp vector.
  203. *
  204. * @param p the context
  205. * @param lsp output LSP vector
  206. * @param lsf_no_r LSF vector without the residual vector added
  207. * @param lsf_quantizer pointers to LSF dictionary tables
  208. * @param quantizer_offset offset in tables
  209. * @param sign for the 3 dictionary table
  210. * @param update store data for computing the next frame's LSFs
  211. */
  212. static void lsf2lsp_for_mode12k2(AMRContext *p, double lsp[LP_FILTER_ORDER],
  213. const float lsf_no_r[LP_FILTER_ORDER],
  214. const int16_t *lsf_quantizer[5],
  215. const int quantizer_offset,
  216. const int sign, const int update)
  217. {
  218. int16_t lsf_r[LP_FILTER_ORDER]; // residual LSF vector
  219. float lsf_q[LP_FILTER_ORDER]; // quantified LSF vector
  220. int i;
  221. for (i = 0; i < LP_FILTER_ORDER >> 1; i++)
  222. memcpy(&lsf_r[i << 1], &lsf_quantizer[i][quantizer_offset],
  223. 2 * sizeof(*lsf_r));
  224. if (sign) {
  225. lsf_r[4] *= -1;
  226. lsf_r[5] *= -1;
  227. }
  228. if (update)
  229. memcpy(p->prev_lsf_r, lsf_r, LP_FILTER_ORDER * sizeof(*lsf_r));
  230. for (i = 0; i < LP_FILTER_ORDER; i++)
  231. lsf_q[i] = lsf_r[i] * (LSF_R_FAC / 8000.0) + lsf_no_r[i] * (1.0 / 8000.0);
  232. ff_set_min_dist_lsf(lsf_q, MIN_LSF_SPACING, LP_FILTER_ORDER);
  233. if (update)
  234. interpolate_lsf(&p->acelpv_ctx, p->lsf_q, lsf_q);
  235. ff_acelp_lsf2lspd(lsp, lsf_q, LP_FILTER_ORDER);
  236. }
  237. /**
  238. * Decode a set of 5 split-matrix quantized lsf indexes into 2 lsp vectors.
  239. *
  240. * @param p pointer to the AMRContext
  241. */
  242. static void lsf2lsp_5(AMRContext *p)
  243. {
  244. const uint16_t *lsf_param = p->frame.lsf;
  245. float lsf_no_r[LP_FILTER_ORDER]; // LSFs without the residual vector
  246. const int16_t *lsf_quantizer[5];
  247. int i;
  248. lsf_quantizer[0] = lsf_5_1[lsf_param[0]];
  249. lsf_quantizer[1] = lsf_5_2[lsf_param[1]];
  250. lsf_quantizer[2] = lsf_5_3[lsf_param[2] >> 1];
  251. lsf_quantizer[3] = lsf_5_4[lsf_param[3]];
  252. lsf_quantizer[4] = lsf_5_5[lsf_param[4]];
  253. for (i = 0; i < LP_FILTER_ORDER; i++)
  254. lsf_no_r[i] = p->prev_lsf_r[i] * LSF_R_FAC * PRED_FAC_MODE_12k2 + lsf_5_mean[i];
  255. lsf2lsp_for_mode12k2(p, p->lsp[1], lsf_no_r, lsf_quantizer, 0, lsf_param[2] & 1, 0);
  256. lsf2lsp_for_mode12k2(p, p->lsp[3], lsf_no_r, lsf_quantizer, 2, lsf_param[2] & 1, 1);
  257. // interpolate LSP vectors at subframes 1 and 3
  258. weighted_vector_sumd(p->lsp[0], p->prev_lsp_sub4, p->lsp[1], 0.5, 0.5, LP_FILTER_ORDER);
  259. weighted_vector_sumd(p->lsp[2], p->lsp[1] , p->lsp[3], 0.5, 0.5, LP_FILTER_ORDER);
  260. }
  261. /**
  262. * Decode a set of 3 split-matrix quantized lsf indexes into an lsp vector.
  263. *
  264. * @param p pointer to the AMRContext
  265. */
  266. static void lsf2lsp_3(AMRContext *p)
  267. {
  268. const uint16_t *lsf_param = p->frame.lsf;
  269. int16_t lsf_r[LP_FILTER_ORDER]; // residual LSF vector
  270. float lsf_q[LP_FILTER_ORDER]; // quantified LSF vector
  271. const int16_t *lsf_quantizer;
  272. int i, j;
  273. lsf_quantizer = (p->cur_frame_mode == MODE_7k95 ? lsf_3_1_MODE_7k95 : lsf_3_1)[lsf_param[0]];
  274. memcpy(lsf_r, lsf_quantizer, 3 * sizeof(*lsf_r));
  275. lsf_quantizer = lsf_3_2[lsf_param[1] << (p->cur_frame_mode <= MODE_5k15)];
  276. memcpy(lsf_r + 3, lsf_quantizer, 3 * sizeof(*lsf_r));
  277. lsf_quantizer = (p->cur_frame_mode <= MODE_5k15 ? lsf_3_3_MODE_5k15 : lsf_3_3)[lsf_param[2]];
  278. memcpy(lsf_r + 6, lsf_quantizer, 4 * sizeof(*lsf_r));
  279. // calculate mean-removed LSF vector and add mean
  280. for (i = 0; i < LP_FILTER_ORDER; i++)
  281. lsf_q[i] = (lsf_r[i] + p->prev_lsf_r[i] * pred_fac[i]) * (LSF_R_FAC / 8000.0) + lsf_3_mean[i] * (1.0 / 8000.0);
  282. ff_set_min_dist_lsf(lsf_q, MIN_LSF_SPACING, LP_FILTER_ORDER);
  283. // store data for computing the next frame's LSFs
  284. interpolate_lsf(&p->acelpv_ctx, p->lsf_q, lsf_q);
  285. memcpy(p->prev_lsf_r, lsf_r, LP_FILTER_ORDER * sizeof(*lsf_r));
  286. ff_acelp_lsf2lspd(p->lsp[3], lsf_q, LP_FILTER_ORDER);
  287. // interpolate LSP vectors at subframes 1, 2 and 3
  288. for (i = 1; i <= 3; i++)
  289. for(j = 0; j < LP_FILTER_ORDER; j++)
  290. p->lsp[i-1][j] = p->prev_lsp_sub4[j] +
  291. (p->lsp[3][j] - p->prev_lsp_sub4[j]) * 0.25 * i;
  292. }
  293. /// @}
  294. /// @name AMR pitch vector decoding functions
  295. /// @{
  296. /**
  297. * Like ff_decode_pitch_lag(), but with 1/6 resolution
  298. */
  299. static void decode_pitch_lag_1_6(int *lag_int, int *lag_frac, int pitch_index,
  300. const int prev_lag_int, const int subframe)
  301. {
  302. if (subframe == 0 || subframe == 2) {
  303. if (pitch_index < 463) {
  304. *lag_int = (pitch_index + 107) * 10923 >> 16;
  305. *lag_frac = pitch_index - *lag_int * 6 + 105;
  306. } else {
  307. *lag_int = pitch_index - 368;
  308. *lag_frac = 0;
  309. }
  310. } else {
  311. *lag_int = ((pitch_index + 5) * 10923 >> 16) - 1;
  312. *lag_frac = pitch_index - *lag_int * 6 - 3;
  313. *lag_int += av_clip(prev_lag_int - 5, PITCH_LAG_MIN_MODE_12k2,
  314. PITCH_DELAY_MAX - 9);
  315. }
  316. }
  317. static void decode_pitch_vector(AMRContext *p,
  318. const AMRNBSubframe *amr_subframe,
  319. const int subframe)
  320. {
  321. int pitch_lag_int, pitch_lag_frac;
  322. enum Mode mode = p->cur_frame_mode;
  323. if (p->cur_frame_mode == MODE_12k2) {
  324. decode_pitch_lag_1_6(&pitch_lag_int, &pitch_lag_frac,
  325. amr_subframe->p_lag, p->pitch_lag_int,
  326. subframe);
  327. } else {
  328. ff_decode_pitch_lag(&pitch_lag_int, &pitch_lag_frac,
  329. amr_subframe->p_lag,
  330. p->pitch_lag_int, subframe,
  331. mode != MODE_4k75 && mode != MODE_5k15,
  332. mode <= MODE_6k7 ? 4 : (mode == MODE_7k95 ? 5 : 6));
  333. pitch_lag_frac *= 2;
  334. }
  335. p->pitch_lag_int = pitch_lag_int; // store previous lag in a uint8_t
  336. pitch_lag_int += pitch_lag_frac > 0;
  337. /* Calculate the pitch vector by interpolating the past excitation at the
  338. pitch lag using a b60 hamming windowed sinc function. */
  339. p->acelpf_ctx.acelp_interpolatef(p->excitation,
  340. p->excitation + 1 - pitch_lag_int,
  341. ff_b60_sinc, 6,
  342. pitch_lag_frac + 6 - 6*(pitch_lag_frac > 0),
  343. 10, AMR_SUBFRAME_SIZE);
  344. memcpy(p->pitch_vector, p->excitation, AMR_SUBFRAME_SIZE * sizeof(float));
  345. }
  346. /// @}
  347. /// @name AMR algebraic code book (fixed) vector decoding functions
  348. /// @{
  349. /**
  350. * Decode a 10-bit algebraic codebook index from a 10.2 kbit/s frame.
  351. */
  352. static void decode_10bit_pulse(int code, int pulse_position[8],
  353. int i1, int i2, int i3)
  354. {
  355. // coded using 7+3 bits with the 3 LSBs being, individually, the LSB of 1 of
  356. // the 3 pulses and the upper 7 bits being coded in base 5
  357. const uint8_t *positions = base_five_table[code >> 3];
  358. pulse_position[i1] = (positions[2] << 1) + ( code & 1);
  359. pulse_position[i2] = (positions[1] << 1) + ((code >> 1) & 1);
  360. pulse_position[i3] = (positions[0] << 1) + ((code >> 2) & 1);
  361. }
  362. /**
  363. * Decode the algebraic codebook index to pulse positions and signs and
  364. * construct the algebraic codebook vector for MODE_10k2.
  365. *
  366. * @param fixed_index positions of the eight pulses
  367. * @param fixed_sparse pointer to the algebraic codebook vector
  368. */
  369. static void decode_8_pulses_31bits(const int16_t *fixed_index,
  370. AMRFixed *fixed_sparse)
  371. {
  372. int pulse_position[8];
  373. int i, temp;
  374. decode_10bit_pulse(fixed_index[4], pulse_position, 0, 4, 1);
  375. decode_10bit_pulse(fixed_index[5], pulse_position, 2, 6, 5);
  376. // coded using 5+2 bits with the 2 LSBs being, individually, the LSB of 1 of
  377. // the 2 pulses and the upper 5 bits being coded in base 5
  378. temp = ((fixed_index[6] >> 2) * 25 + 12) >> 5;
  379. pulse_position[3] = temp % 5;
  380. pulse_position[7] = temp / 5;
  381. if (pulse_position[7] & 1)
  382. pulse_position[3] = 4 - pulse_position[3];
  383. pulse_position[3] = (pulse_position[3] << 1) + ( fixed_index[6] & 1);
  384. pulse_position[7] = (pulse_position[7] << 1) + ((fixed_index[6] >> 1) & 1);
  385. fixed_sparse->n = 8;
  386. for (i = 0; i < 4; i++) {
  387. const int pos1 = (pulse_position[i] << 2) + i;
  388. const int pos2 = (pulse_position[i + 4] << 2) + i;
  389. const float sign = fixed_index[i] ? -1.0 : 1.0;
  390. fixed_sparse->x[i ] = pos1;
  391. fixed_sparse->x[i + 4] = pos2;
  392. fixed_sparse->y[i ] = sign;
  393. fixed_sparse->y[i + 4] = pos2 < pos1 ? -sign : sign;
  394. }
  395. }
  396. /**
  397. * Decode the algebraic codebook index to pulse positions and signs,
  398. * then construct the algebraic codebook vector.
  399. *
  400. * nb of pulses | bits encoding pulses
  401. * For MODE_4k75 or MODE_5k15, 2 | 1-3, 4-6, 7
  402. * MODE_5k9, 2 | 1, 2-4, 5-6, 7-9
  403. * MODE_6k7, 3 | 1-3, 4, 5-7, 8, 9-11
  404. * MODE_7k4 or MODE_7k95, 4 | 1-3, 4-6, 7-9, 10, 11-13
  405. *
  406. * @param fixed_sparse pointer to the algebraic codebook vector
  407. * @param pulses algebraic codebook indexes
  408. * @param mode mode of the current frame
  409. * @param subframe current subframe number
  410. */
  411. static void decode_fixed_sparse(AMRFixed *fixed_sparse, const uint16_t *pulses,
  412. const enum Mode mode, const int subframe)
  413. {
  414. av_assert1(MODE_4k75 <= (signed)mode && mode <= MODE_12k2);
  415. if (mode == MODE_12k2) {
  416. ff_decode_10_pulses_35bits(pulses, fixed_sparse, gray_decode, 5, 3);
  417. } else if (mode == MODE_10k2) {
  418. decode_8_pulses_31bits(pulses, fixed_sparse);
  419. } else {
  420. int *pulse_position = fixed_sparse->x;
  421. int i, pulse_subset;
  422. const int fixed_index = pulses[0];
  423. if (mode <= MODE_5k15) {
  424. pulse_subset = ((fixed_index >> 3) & 8) + (subframe << 1);
  425. pulse_position[0] = ( fixed_index & 7) * 5 + track_position[pulse_subset];
  426. pulse_position[1] = ((fixed_index >> 3) & 7) * 5 + track_position[pulse_subset + 1];
  427. fixed_sparse->n = 2;
  428. } else if (mode == MODE_5k9) {
  429. pulse_subset = ((fixed_index & 1) << 1) + 1;
  430. pulse_position[0] = ((fixed_index >> 1) & 7) * 5 + pulse_subset;
  431. pulse_subset = (fixed_index >> 4) & 3;
  432. pulse_position[1] = ((fixed_index >> 6) & 7) * 5 + pulse_subset + (pulse_subset == 3 ? 1 : 0);
  433. fixed_sparse->n = pulse_position[0] == pulse_position[1] ? 1 : 2;
  434. } else if (mode == MODE_6k7) {
  435. pulse_position[0] = (fixed_index & 7) * 5;
  436. pulse_subset = (fixed_index >> 2) & 2;
  437. pulse_position[1] = ((fixed_index >> 4) & 7) * 5 + pulse_subset + 1;
  438. pulse_subset = (fixed_index >> 6) & 2;
  439. pulse_position[2] = ((fixed_index >> 8) & 7) * 5 + pulse_subset + 2;
  440. fixed_sparse->n = 3;
  441. } else { // mode <= MODE_7k95
  442. pulse_position[0] = gray_decode[ fixed_index & 7];
  443. pulse_position[1] = gray_decode[(fixed_index >> 3) & 7] + 1;
  444. pulse_position[2] = gray_decode[(fixed_index >> 6) & 7] + 2;
  445. pulse_subset = (fixed_index >> 9) & 1;
  446. pulse_position[3] = gray_decode[(fixed_index >> 10) & 7] + pulse_subset + 3;
  447. fixed_sparse->n = 4;
  448. }
  449. for (i = 0; i < fixed_sparse->n; i++)
  450. fixed_sparse->y[i] = (pulses[1] >> i) & 1 ? 1.0 : -1.0;
  451. }
  452. }
  453. /**
  454. * Apply pitch lag to obtain the sharpened fixed vector (section 6.1.2)
  455. *
  456. * @param p the context
  457. * @param subframe unpacked amr subframe
  458. * @param mode mode of the current frame
  459. * @param fixed_sparse sparse representation of the fixed vector
  460. */
  461. static void pitch_sharpening(AMRContext *p, int subframe, enum Mode mode,
  462. AMRFixed *fixed_sparse)
  463. {
  464. // The spec suggests the current pitch gain is always used, but in other
  465. // modes the pitch and codebook gains are jointly quantized (sec 5.8.2)
  466. // so the codebook gain cannot depend on the quantized pitch gain.
  467. if (mode == MODE_12k2)
  468. p->beta = FFMIN(p->pitch_gain[4], 1.0);
  469. fixed_sparse->pitch_lag = p->pitch_lag_int;
  470. fixed_sparse->pitch_fac = p->beta;
  471. // Save pitch sharpening factor for the next subframe
  472. // MODE_4k75 only updates on the 2nd and 4th subframes - this follows from
  473. // the fact that the gains for two subframes are jointly quantized.
  474. if (mode != MODE_4k75 || subframe & 1)
  475. p->beta = av_clipf(p->pitch_gain[4], 0.0, SHARP_MAX);
  476. }
  477. /// @}
  478. /// @name AMR gain decoding functions
  479. /// @{
  480. /**
  481. * fixed gain smoothing
  482. * Note that where the spec specifies the "spectrum in the q domain"
  483. * in section 6.1.4, in fact frequencies should be used.
  484. *
  485. * @param p the context
  486. * @param lsf LSFs for the current subframe, in the range [0,1]
  487. * @param lsf_avg averaged LSFs
  488. * @param mode mode of the current frame
  489. *
  490. * @return fixed gain smoothed
  491. */
  492. static float fixed_gain_smooth(AMRContext *p , const float *lsf,
  493. const float *lsf_avg, const enum Mode mode)
  494. {
  495. float diff = 0.0;
  496. int i;
  497. for (i = 0; i < LP_FILTER_ORDER; i++)
  498. diff += fabs(lsf_avg[i] - lsf[i]) / lsf_avg[i];
  499. // If diff is large for ten subframes, disable smoothing for a 40-subframe
  500. // hangover period.
  501. p->diff_count++;
  502. if (diff <= 0.65)
  503. p->diff_count = 0;
  504. if (p->diff_count > 10) {
  505. p->hang_count = 0;
  506. p->diff_count--; // don't let diff_count overflow
  507. }
  508. if (p->hang_count < 40) {
  509. p->hang_count++;
  510. } else if (mode < MODE_7k4 || mode == MODE_10k2) {
  511. const float smoothing_factor = av_clipf(4.0 * diff - 1.6, 0.0, 1.0);
  512. const float fixed_gain_mean = (p->fixed_gain[0] + p->fixed_gain[1] +
  513. p->fixed_gain[2] + p->fixed_gain[3] +
  514. p->fixed_gain[4]) * 0.2;
  515. return smoothing_factor * p->fixed_gain[4] +
  516. (1.0 - smoothing_factor) * fixed_gain_mean;
  517. }
  518. return p->fixed_gain[4];
  519. }
  520. /**
  521. * Decode pitch gain and fixed gain factor (part of section 6.1.3).
  522. *
  523. * @param p the context
  524. * @param amr_subframe unpacked amr subframe
  525. * @param mode mode of the current frame
  526. * @param subframe current subframe number
  527. * @param fixed_gain_factor decoded gain correction factor
  528. */
  529. static void decode_gains(AMRContext *p, const AMRNBSubframe *amr_subframe,
  530. const enum Mode mode, const int subframe,
  531. float *fixed_gain_factor)
  532. {
  533. if (mode == MODE_12k2 || mode == MODE_7k95) {
  534. p->pitch_gain[4] = qua_gain_pit [amr_subframe->p_gain ]
  535. * (1.0 / 16384.0);
  536. *fixed_gain_factor = qua_gain_code[amr_subframe->fixed_gain]
  537. * (1.0 / 2048.0);
  538. } else {
  539. const uint16_t *gains;
  540. if (mode >= MODE_6k7) {
  541. gains = gains_high[amr_subframe->p_gain];
  542. } else if (mode >= MODE_5k15) {
  543. gains = gains_low [amr_subframe->p_gain];
  544. } else {
  545. // gain index is only coded in subframes 0,2 for MODE_4k75
  546. gains = gains_MODE_4k75[(p->frame.subframe[subframe & 2].p_gain << 1) + (subframe & 1)];
  547. }
  548. p->pitch_gain[4] = gains[0] * (1.0 / 16384.0);
  549. *fixed_gain_factor = gains[1] * (1.0 / 4096.0);
  550. }
  551. }
  552. /// @}
  553. /// @name AMR preprocessing functions
  554. /// @{
  555. /**
  556. * Circularly convolve a sparse fixed vector with a phase dispersion impulse
  557. * response filter (D.6.2 of G.729 and 6.1.5 of AMR).
  558. *
  559. * @param out vector with filter applied
  560. * @param in source vector
  561. * @param filter phase filter coefficients
  562. *
  563. * out[n] = sum(i,0,len-1){ in[i] * filter[(len + n - i)%len] }
  564. */
  565. static void apply_ir_filter(float *out, const AMRFixed *in,
  566. const float *filter)
  567. {
  568. float filter1[AMR_SUBFRAME_SIZE], ///< filters at pitch lag*1 and *2
  569. filter2[AMR_SUBFRAME_SIZE];
  570. int lag = in->pitch_lag;
  571. float fac = in->pitch_fac;
  572. int i;
  573. if (lag < AMR_SUBFRAME_SIZE) {
  574. ff_celp_circ_addf(filter1, filter, filter, lag, fac,
  575. AMR_SUBFRAME_SIZE);
  576. if (lag < AMR_SUBFRAME_SIZE >> 1)
  577. ff_celp_circ_addf(filter2, filter, filter1, lag, fac,
  578. AMR_SUBFRAME_SIZE);
  579. }
  580. memset(out, 0, sizeof(float) * AMR_SUBFRAME_SIZE);
  581. for (i = 0; i < in->n; i++) {
  582. int x = in->x[i];
  583. float y = in->y[i];
  584. const float *filterp;
  585. if (x >= AMR_SUBFRAME_SIZE - lag) {
  586. filterp = filter;
  587. } else if (x >= AMR_SUBFRAME_SIZE - (lag << 1)) {
  588. filterp = filter1;
  589. } else
  590. filterp = filter2;
  591. ff_celp_circ_addf(out, out, filterp, x, y, AMR_SUBFRAME_SIZE);
  592. }
  593. }
  594. /**
  595. * Reduce fixed vector sparseness by smoothing with one of three IR filters.
  596. * Also know as "adaptive phase dispersion".
  597. *
  598. * This implements 3GPP TS 26.090 section 6.1(5).
  599. *
  600. * @param p the context
  601. * @param fixed_sparse algebraic codebook vector
  602. * @param fixed_vector unfiltered fixed vector
  603. * @param fixed_gain smoothed gain
  604. * @param out space for modified vector if necessary
  605. */
  606. static const float *anti_sparseness(AMRContext *p, AMRFixed *fixed_sparse,
  607. const float *fixed_vector,
  608. float fixed_gain, float *out)
  609. {
  610. int ir_filter_nr;
  611. if (p->pitch_gain[4] < 0.6) {
  612. ir_filter_nr = 0; // strong filtering
  613. } else if (p->pitch_gain[4] < 0.9) {
  614. ir_filter_nr = 1; // medium filtering
  615. } else
  616. ir_filter_nr = 2; // no filtering
  617. // detect 'onset'
  618. if (fixed_gain > 2.0 * p->prev_sparse_fixed_gain) {
  619. p->ir_filter_onset = 2;
  620. } else if (p->ir_filter_onset)
  621. p->ir_filter_onset--;
  622. if (!p->ir_filter_onset) {
  623. int i, count = 0;
  624. for (i = 0; i < 5; i++)
  625. if (p->pitch_gain[i] < 0.6)
  626. count++;
  627. if (count > 2)
  628. ir_filter_nr = 0;
  629. if (ir_filter_nr > p->prev_ir_filter_nr + 1)
  630. ir_filter_nr--;
  631. } else if (ir_filter_nr < 2)
  632. ir_filter_nr++;
  633. // Disable filtering for very low level of fixed_gain.
  634. // Note this step is not specified in the technical description but is in
  635. // the reference source in the function Ph_disp.
  636. if (fixed_gain < 5.0)
  637. ir_filter_nr = 2;
  638. if (p->cur_frame_mode != MODE_7k4 && p->cur_frame_mode < MODE_10k2
  639. && ir_filter_nr < 2) {
  640. apply_ir_filter(out, fixed_sparse,
  641. (p->cur_frame_mode == MODE_7k95 ?
  642. ir_filters_lookup_MODE_7k95 :
  643. ir_filters_lookup)[ir_filter_nr]);
  644. fixed_vector = out;
  645. }
  646. // update ir filter strength history
  647. p->prev_ir_filter_nr = ir_filter_nr;
  648. p->prev_sparse_fixed_gain = fixed_gain;
  649. return fixed_vector;
  650. }
  651. /// @}
  652. /// @name AMR synthesis functions
  653. /// @{
  654. /**
  655. * Conduct 10th order linear predictive coding synthesis.
  656. *
  657. * @param p pointer to the AMRContext
  658. * @param lpc pointer to the LPC coefficients
  659. * @param fixed_gain fixed codebook gain for synthesis
  660. * @param fixed_vector algebraic codebook vector
  661. * @param samples pointer to the output speech samples
  662. * @param overflow 16-bit overflow flag
  663. */
  664. static int synthesis(AMRContext *p, float *lpc,
  665. float fixed_gain, const float *fixed_vector,
  666. float *samples, uint8_t overflow)
  667. {
  668. int i;
  669. float excitation[AMR_SUBFRAME_SIZE];
  670. // if an overflow has been detected, the pitch vector is scaled down by a
  671. // factor of 4
  672. if (overflow)
  673. for (i = 0; i < AMR_SUBFRAME_SIZE; i++)
  674. p->pitch_vector[i] *= 0.25;
  675. p->acelpv_ctx.weighted_vector_sumf(excitation, p->pitch_vector, fixed_vector,
  676. p->pitch_gain[4], fixed_gain, AMR_SUBFRAME_SIZE);
  677. // emphasize pitch vector contribution
  678. if (p->pitch_gain[4] > 0.5 && !overflow) {
  679. float energy = p->celpm_ctx.dot_productf(excitation, excitation,
  680. AMR_SUBFRAME_SIZE);
  681. float pitch_factor =
  682. p->pitch_gain[4] *
  683. (p->cur_frame_mode == MODE_12k2 ?
  684. 0.25 * FFMIN(p->pitch_gain[4], 1.0) :
  685. 0.5 * FFMIN(p->pitch_gain[4], SHARP_MAX));
  686. for (i = 0; i < AMR_SUBFRAME_SIZE; i++)
  687. excitation[i] += pitch_factor * p->pitch_vector[i];
  688. ff_scale_vector_to_given_sum_of_squares(excitation, excitation, energy,
  689. AMR_SUBFRAME_SIZE);
  690. }
  691. p->celpf_ctx.celp_lp_synthesis_filterf(samples, lpc, excitation,
  692. AMR_SUBFRAME_SIZE,
  693. LP_FILTER_ORDER);
  694. // detect overflow
  695. for (i = 0; i < AMR_SUBFRAME_SIZE; i++)
  696. if (fabsf(samples[i]) > AMR_SAMPLE_BOUND) {
  697. return 1;
  698. }
  699. return 0;
  700. }
  701. /// @}
  702. /// @name AMR update functions
  703. /// @{
  704. /**
  705. * Update buffers and history at the end of decoding a subframe.
  706. *
  707. * @param p pointer to the AMRContext
  708. */
  709. static void update_state(AMRContext *p)
  710. {
  711. memcpy(p->prev_lsp_sub4, p->lsp[3], LP_FILTER_ORDER * sizeof(p->lsp[3][0]));
  712. memmove(&p->excitation_buf[0], &p->excitation_buf[AMR_SUBFRAME_SIZE],
  713. (PITCH_DELAY_MAX + LP_FILTER_ORDER + 1) * sizeof(float));
  714. memmove(&p->pitch_gain[0], &p->pitch_gain[1], 4 * sizeof(float));
  715. memmove(&p->fixed_gain[0], &p->fixed_gain[1], 4 * sizeof(float));
  716. memmove(&p->samples_in[0], &p->samples_in[AMR_SUBFRAME_SIZE],
  717. LP_FILTER_ORDER * sizeof(float));
  718. }
  719. /// @}
  720. /// @name AMR Postprocessing functions
  721. /// @{
  722. /**
  723. * Get the tilt factor of a formant filter from its transfer function
  724. *
  725. * @param p The Context
  726. * @param lpc_n LP_FILTER_ORDER coefficients of the numerator
  727. * @param lpc_d LP_FILTER_ORDER coefficients of the denominator
  728. */
  729. static float tilt_factor(AMRContext *p, float *lpc_n, float *lpc_d)
  730. {
  731. float rh0, rh1; // autocorrelation at lag 0 and 1
  732. // LP_FILTER_ORDER prior zeros are needed for ff_celp_lp_synthesis_filterf
  733. float impulse_buffer[LP_FILTER_ORDER + AMR_TILT_RESPONSE] = { 0 };
  734. float *hf = impulse_buffer + LP_FILTER_ORDER; // start of impulse response
  735. hf[0] = 1.0;
  736. memcpy(hf + 1, lpc_n, sizeof(float) * LP_FILTER_ORDER);
  737. p->celpf_ctx.celp_lp_synthesis_filterf(hf, lpc_d, hf,
  738. AMR_TILT_RESPONSE,
  739. LP_FILTER_ORDER);
  740. rh0 = p->celpm_ctx.dot_productf(hf, hf, AMR_TILT_RESPONSE);
  741. rh1 = p->celpm_ctx.dot_productf(hf, hf + 1, AMR_TILT_RESPONSE - 1);
  742. // The spec only specifies this check for 12.2 and 10.2 kbit/s
  743. // modes. But in the ref source the tilt is always non-negative.
  744. return rh1 >= 0.0 ? rh1 / rh0 * AMR_TILT_GAMMA_T : 0.0;
  745. }
  746. /**
  747. * Perform adaptive post-filtering to enhance the quality of the speech.
  748. * See section 6.2.1.
  749. *
  750. * @param p pointer to the AMRContext
  751. * @param lpc interpolated LP coefficients for this subframe
  752. * @param buf_out output of the filter
  753. */
  754. static void postfilter(AMRContext *p, float *lpc, float *buf_out)
  755. {
  756. int i;
  757. float *samples = p->samples_in + LP_FILTER_ORDER; // Start of input
  758. float speech_gain = p->celpm_ctx.dot_productf(samples, samples,
  759. AMR_SUBFRAME_SIZE);
  760. float pole_out[AMR_SUBFRAME_SIZE + LP_FILTER_ORDER]; // Output of pole filter
  761. const float *gamma_n, *gamma_d; // Formant filter factor table
  762. float lpc_n[LP_FILTER_ORDER], lpc_d[LP_FILTER_ORDER]; // Transfer function coefficients
  763. if (p->cur_frame_mode == MODE_12k2 || p->cur_frame_mode == MODE_10k2) {
  764. gamma_n = ff_pow_0_7;
  765. gamma_d = ff_pow_0_75;
  766. } else {
  767. gamma_n = ff_pow_0_55;
  768. gamma_d = ff_pow_0_7;
  769. }
  770. for (i = 0; i < LP_FILTER_ORDER; i++) {
  771. lpc_n[i] = lpc[i] * gamma_n[i];
  772. lpc_d[i] = lpc[i] * gamma_d[i];
  773. }
  774. memcpy(pole_out, p->postfilter_mem, sizeof(float) * LP_FILTER_ORDER);
  775. p->celpf_ctx.celp_lp_synthesis_filterf(pole_out + LP_FILTER_ORDER, lpc_d, samples,
  776. AMR_SUBFRAME_SIZE, LP_FILTER_ORDER);
  777. memcpy(p->postfilter_mem, pole_out + AMR_SUBFRAME_SIZE,
  778. sizeof(float) * LP_FILTER_ORDER);
  779. p->celpf_ctx.celp_lp_zero_synthesis_filterf(buf_out, lpc_n,
  780. pole_out + LP_FILTER_ORDER,
  781. AMR_SUBFRAME_SIZE, LP_FILTER_ORDER);
  782. ff_tilt_compensation(&p->tilt_mem, tilt_factor(p, lpc_n, lpc_d), buf_out,
  783. AMR_SUBFRAME_SIZE);
  784. ff_adaptive_gain_control(buf_out, buf_out, speech_gain, AMR_SUBFRAME_SIZE,
  785. AMR_AGC_ALPHA, &p->postfilter_agc);
  786. }
  787. /// @}
  788. static int amrnb_decode_frame(AVCodecContext *avctx, void *data,
  789. int *got_frame_ptr, AVPacket *avpkt)
  790. {
  791. AMRContext *p = avctx->priv_data; // pointer to private data
  792. AVFrame *frame = data;
  793. const uint8_t *buf = avpkt->data;
  794. int buf_size = avpkt->size;
  795. float *buf_out; // pointer to the output data buffer
  796. int i, subframe, ret;
  797. float fixed_gain_factor;
  798. AMRFixed fixed_sparse = {0}; // fixed vector up to anti-sparseness processing
  799. float spare_vector[AMR_SUBFRAME_SIZE]; // extra stack space to hold result from anti-sparseness processing
  800. float synth_fixed_gain; // the fixed gain that synthesis should use
  801. const float *synth_fixed_vector; // pointer to the fixed vector that synthesis should use
  802. /* get output buffer */
  803. frame->nb_samples = AMR_BLOCK_SIZE;
  804. if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
  805. return ret;
  806. buf_out = (float *)frame->data[0];
  807. p->cur_frame_mode = unpack_bitstream(p, buf, buf_size);
  808. if (p->cur_frame_mode == NO_DATA) {
  809. av_log(avctx, AV_LOG_ERROR, "Corrupt bitstream\n");
  810. return AVERROR_INVALIDDATA;
  811. }
  812. if (p->cur_frame_mode == MODE_DTX) {
  813. avpriv_report_missing_feature(avctx, "dtx mode");
  814. av_log(avctx, AV_LOG_INFO, "Note: libopencore_amrnb supports dtx\n");
  815. return AVERROR_PATCHWELCOME;
  816. }
  817. if (p->cur_frame_mode == MODE_12k2) {
  818. lsf2lsp_5(p);
  819. } else
  820. lsf2lsp_3(p);
  821. for (i = 0; i < 4; i++)
  822. ff_acelp_lspd2lpc(p->lsp[i], p->lpc[i], 5);
  823. for (subframe = 0; subframe < 4; subframe++) {
  824. const AMRNBSubframe *amr_subframe = &p->frame.subframe[subframe];
  825. decode_pitch_vector(p, amr_subframe, subframe);
  826. decode_fixed_sparse(&fixed_sparse, amr_subframe->pulses,
  827. p->cur_frame_mode, subframe);
  828. // The fixed gain (section 6.1.3) depends on the fixed vector
  829. // (section 6.1.2), but the fixed vector calculation uses
  830. // pitch sharpening based on the on the pitch gain (section 6.1.3).
  831. // So the correct order is: pitch gain, pitch sharpening, fixed gain.
  832. decode_gains(p, amr_subframe, p->cur_frame_mode, subframe,
  833. &fixed_gain_factor);
  834. pitch_sharpening(p, subframe, p->cur_frame_mode, &fixed_sparse);
  835. if (fixed_sparse.pitch_lag == 0) {
  836. av_log(avctx, AV_LOG_ERROR, "The file is corrupted, pitch_lag = 0 is not allowed\n");
  837. return AVERROR_INVALIDDATA;
  838. }
  839. ff_set_fixed_vector(p->fixed_vector, &fixed_sparse, 1.0,
  840. AMR_SUBFRAME_SIZE);
  841. p->fixed_gain[4] =
  842. ff_amr_set_fixed_gain(fixed_gain_factor,
  843. p->celpm_ctx.dot_productf(p->fixed_vector,
  844. p->fixed_vector,
  845. AMR_SUBFRAME_SIZE) /
  846. AMR_SUBFRAME_SIZE,
  847. p->prediction_error,
  848. energy_mean[p->cur_frame_mode], energy_pred_fac);
  849. // The excitation feedback is calculated without any processing such
  850. // as fixed gain smoothing. This isn't mentioned in the specification.
  851. for (i = 0; i < AMR_SUBFRAME_SIZE; i++)
  852. p->excitation[i] *= p->pitch_gain[4];
  853. ff_set_fixed_vector(p->excitation, &fixed_sparse, p->fixed_gain[4],
  854. AMR_SUBFRAME_SIZE);
  855. // In the ref decoder, excitation is stored with no fractional bits.
  856. // This step prevents buzz in silent periods. The ref encoder can
  857. // emit long sequences with pitch factor greater than one. This
  858. // creates unwanted feedback if the excitation vector is nonzero.
  859. // (e.g. test sequence T19_795.COD in 3GPP TS 26.074)
  860. for (i = 0; i < AMR_SUBFRAME_SIZE; i++)
  861. p->excitation[i] = truncf(p->excitation[i]);
  862. // Smooth fixed gain.
  863. // The specification is ambiguous, but in the reference source, the
  864. // smoothed value is NOT fed back into later fixed gain smoothing.
  865. synth_fixed_gain = fixed_gain_smooth(p, p->lsf_q[subframe],
  866. p->lsf_avg, p->cur_frame_mode);
  867. synth_fixed_vector = anti_sparseness(p, &fixed_sparse, p->fixed_vector,
  868. synth_fixed_gain, spare_vector);
  869. if (synthesis(p, p->lpc[subframe], synth_fixed_gain,
  870. synth_fixed_vector, &p->samples_in[LP_FILTER_ORDER], 0))
  871. // overflow detected -> rerun synthesis scaling pitch vector down
  872. // by a factor of 4, skipping pitch vector contribution emphasis
  873. // and adaptive gain control
  874. synthesis(p, p->lpc[subframe], synth_fixed_gain,
  875. synth_fixed_vector, &p->samples_in[LP_FILTER_ORDER], 1);
  876. postfilter(p, p->lpc[subframe], buf_out + subframe * AMR_SUBFRAME_SIZE);
  877. // update buffers and history
  878. ff_clear_fixed_vector(p->fixed_vector, &fixed_sparse, AMR_SUBFRAME_SIZE);
  879. update_state(p);
  880. }
  881. p->acelpf_ctx.acelp_apply_order_2_transfer_function(buf_out,
  882. buf_out, highpass_zeros,
  883. highpass_poles,
  884. highpass_gain * AMR_SAMPLE_SCALE,
  885. p->high_pass_mem, AMR_BLOCK_SIZE);
  886. /* Update averaged lsf vector (used for fixed gain smoothing).
  887. *
  888. * Note that lsf_avg should not incorporate the current frame's LSFs
  889. * for fixed_gain_smooth.
  890. * The specification has an incorrect formula: the reference decoder uses
  891. * qbar(n-1) rather than qbar(n) in section 6.1(4) equation 71. */
  892. p->acelpv_ctx.weighted_vector_sumf(p->lsf_avg, p->lsf_avg, p->lsf_q[3],
  893. 0.84, 0.16, LP_FILTER_ORDER);
  894. *got_frame_ptr = 1;
  895. /* return the amount of bytes consumed if everything was OK */
  896. return frame_sizes_nb[p->cur_frame_mode] + 1; // +7 for rounding and +8 for TOC
  897. }
  898. AVCodec ff_amrnb_decoder = {
  899. .name = "amrnb",
  900. .long_name = NULL_IF_CONFIG_SMALL("AMR-NB (Adaptive Multi-Rate NarrowBand)"),
  901. .type = AVMEDIA_TYPE_AUDIO,
  902. .id = AV_CODEC_ID_AMR_NB,
  903. .priv_data_size = sizeof(AMRContext),
  904. .init = amrnb_decode_init,
  905. .decode = amrnb_decode_frame,
  906. .capabilities = AV_CODEC_CAP_DR1,
  907. .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLT,
  908. AV_SAMPLE_FMT_NONE },
  909. };