FreeCalypso > hg > gsm-codec-lib
view libgsmhr1/dhf_params.c @ 602:72cdae602d6e
libgsmhr1/dec_func.c: rm unused static functions
In the original code, sp_dec.c held two kinds of functions: those
needed only as part of the decoder, and those used by both decoder
and encoder engines. In this library, we have moved the latter
class of functions to dec_func.c module. Almost all static functions
from the original sp_dec.c, with the exception of aToRc(), are
needed only on sp_dec.c side of the new divide - remove them from
dec_func.c, where they became dead code.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 04 Dec 2025 18:58:22 +0000 |
| parents | af70bf42eb1b |
| children |
line wrap: on
line source
/* * This module holds a public const datum: the broken-down parameters * form of HRv1 decoder homing frame (DHF). */ #include <stdint.h> #include "tw_gsmhr.h" const int16_t gsmhr_dhf_params[GSMHR_NUM_PARAMS] = { 0x0000, /* R0 */ 0x0371, /* LPC1 */ 0x015E, /* LPC2 */ 0x00c3, /* LPC3 */ 0x0001, /* INT_LPC */ 0x0000, /* MODE */ 0x0047, /* CODE1_1 */ 0x004a, /* CODE2_1 */ 0x0000, /* GSP0_1 */ 0x0009, /* CODE1_2 */ 0x0026, /* CODE2_2 */ 0x0007, /* GSP0_2 */ 0x0000, /* CODE1_3 */ 0x0000, /* CODE2_3 */ 0x0000, /* GSP0_3 */ 0x0000, /* CODE1_4 */ 0x0000, /* CODE2_4 */ 0x0000 /* GSP0_4 */ };
