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