FreeCalypso > hg > gsm-codec-lib
view libgsmefr/enc_create.c @ 117:f9c9dd458d55
libgsmefr/cnst.h: drop SERIAL_SIZE definition,
ETSI test seq detail, no meaning for our library version
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Wed, 30 Nov 2022 23:12:15 +0000 | 
| parents | 722959d9410f | 
| children | 23656d874524 | 
line wrap: on
 line source
/* * In this module we implement allocation and initialization * of state structures for our GSM EFR encoder. */ #include <stdlib.h> #include "gsm_efr.h" #include "typedef.h" #include "cnst.h" #include "enc_state.h" struct EFR_encoder_state *EFR_encoder_create(int dtx) { struct EFR_encoder_state *st; st = malloc(sizeof(struct EFR_encoder_state)); if (st) EFR_encoder_reset(st, dtx); return st; }
