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