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.

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