FreeCalypso > hg > gsm-codec-lib
comparison libgsmefr/inter_6.c @ 73:63ad83f3d821
libgsmefr: inter_6.c compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 26 Nov 2022 05:39:57 +0000 |
parents | 49dd1ac8e75b |
children |
comparison
equal
deleted
inserted
replaced
72:a0a1e8de4b46 | 73:63ad83f3d821 |
---|---|
4 * | 4 * |
5 * PURPOSE: Interpolating the normalized correlation with 1/6 resolution. | 5 * PURPOSE: Interpolating the normalized correlation with 1/6 resolution. |
6 * | 6 * |
7 *************************************************************************/ | 7 *************************************************************************/ |
8 | 8 |
9 #include "gsm_efr.h" | |
9 #include "typedef.h" | 10 #include "typedef.h" |
11 #include "namespace.h" | |
10 #include "basic_op.h" | 12 #include "basic_op.h" |
11 #include "count.h" | 13 #include "no_count.h" |
14 #include "codec.h" | |
12 | 15 |
13 #define UP_SAMP 6 | 16 #define UP_SAMP 6 |
14 #define L_INTERPOL 4 | 17 #define L_INTERPOL 4 |
15 #define FIR_SIZE (UP_SAMP*L_INTERPOL+1) | 18 #define FIR_SIZE (UP_SAMP*L_INTERPOL+1) |
16 | 19 |