FreeCalypso > hg > gsm-codec-lib
view libgsmhr1/sizes.c @ 640:e0e5905261e2 default tip
document tw5b-dump and tw5c-dump
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Fri, 20 Mar 2026 06:43:50 +0000 |
| parents | f85ef5c4d044 |
| children |
line wrap: on
line source
/* * This library module provides const "variables" with sizes of * state structures. */ #include "tw_gsmhr.h" #include "dec_state.h" #include "enc_state.h" const unsigned gsmhr_encoder_state_size = sizeof(struct gsmhr_encoder_state); const unsigned gsmhr_decoder_state_size = sizeof(struct gsmhr_decoder_state); const unsigned gsmhr_rxfe_state_size = sizeof(struct gsmhr_rxfe_state);
