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
39KB

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