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.

1075 lines
40KB

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