FreeCalypso > hg > gsm-codec-lib
comparison libtwamr/prmno.c @ 254:f931e704adc5
libtwamr: bits and parameter packing
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 05 Apr 2024 07:41:31 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
253:54f6bc41ed10 | 254:f931e704adc5 |
---|---|
1 /* | |
2 * This module holds prmno[] and prmnofs[] tables that were | |
3 * originally in bitno.tab in 3GPP reference source. | |
4 */ | |
5 | |
6 #include "typedef.h" | |
7 #include "namespace.h" | |
8 #include "int_defs.h" | |
9 | |
10 /* number of parameters per modes (values must be <= MAX_PRM_SIZE!) */ | |
11 const Word16 prmno[9] = { | |
12 PRMNO_MR475, | |
13 PRMNO_MR515, | |
14 PRMNO_MR59, | |
15 PRMNO_MR67, | |
16 PRMNO_MR74, | |
17 PRMNO_MR795, | |
18 PRMNO_MR102, | |
19 PRMNO_MR122, | |
20 PRMNO_MRDTX | |
21 }; | |
22 | |
23 /* number of parameters to first subframe per modes */ | |
24 const Word16 prmnofsf[8] = { | |
25 PRMNOFSF_MR475, | |
26 PRMNOFSF_MR515, | |
27 PRMNOFSF_MR59, | |
28 PRMNOFSF_MR67, | |
29 PRMNOFSF_MR74, | |
30 PRMNOFSF_MR795, | |
31 PRMNOFSF_MR102, | |
32 PRMNOFSF_MR122 | |
33 }; |