FreeCalypso > hg > gsm-codec-lib
comparison libtwamr/dec_lag6.h @ 358:7bea058d0640
libtwamr: integrate dec_lag6.c
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 05 May 2024 22:44:00 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
357:fb001496ca8c | 358:7bea058d0640 |
---|---|
1 /* | |
2 ******************************************************************************** | |
3 * | |
4 * GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001 | |
5 * R99 Version 3.3.0 | |
6 * REL-4 Version 4.1.0 | |
7 * | |
8 ******************************************************************************** | |
9 * | |
10 * File : dec_lag6.h | |
11 * Purpose : Decoding of fractional pitch lag with 1/6 resolution. | |
12 * | |
13 ******************************************************************************** | |
14 */ | |
15 #ifndef dec_lag6_h | |
16 #define dec_lag6_h "$Id $" | |
17 | |
18 /* | |
19 ******************************************************************************** | |
20 * INCLUDE FILES | |
21 ******************************************************************************** | |
22 */ | |
23 #include "typedef.h" | |
24 | |
25 /* | |
26 ******************************************************************************** | |
27 * DECLARATION OF PROTOTYPES | |
28 ******************************************************************************** | |
29 */ | |
30 | |
31 void Dec_lag6 ( | |
32 Word16 index, /* input : received pitch index */ | |
33 Word16 pit_min, /* input : minimum pitch lag */ | |
34 Word16 pit_max, /* input : maximum pitch lag */ | |
35 Word16 i_subfr, /* input : subframe flag */ | |
36 Word16 *T0, /* in/out: integer part of pitch lag */ | |
37 Word16 *T0_frac /* output: fractional part of pitch lag */ | |
38 ); | |
39 | |
40 #endif |