FreeCalypso > hg > gsm-codec-lib
view libgsmefr/dec_create.c @ 407:5a1d18542f8a
libtwamr: integrate dtx_dec.c and dtx_enc.c
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Tue, 07 May 2024 00:05:12 +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 decoder. */ #include <stdlib.h> #include "gsm_efr.h" #include "typedef.h" #include "cnst.h" #include "dec_state.h" struct EFR_decoder_state *EFR_decoder_create(void) { struct EFR_decoder_state *st; st = malloc(sizeof(struct EFR_decoder_state)); if (st) EFR_decoder_reset(st); return st; }
