FreeCalypso > hg > gsm-codec-lib
view libgsmhr1/err_conc.h @ 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 | 5a7d04bf26f5 |
| children |
line wrap: on
line source
#ifndef __ERR_CONC #define __ERR_CONC #include "typedefs.h" #include "tw_gsmhr.h" /*_________________________________________________________________________ | | | Function Prototypes | |_________________________________________________________________________| */ Shortword level_calc(Shortword swInd, Longword *pl_en); void level_estimator_det(struct gsmhr_decoder_state *st, Shortword *pswLevelMean, Shortword *pswLevelMax); void level_estimator_upd(struct gsmhr_decoder_state *st, Shortword pswDecodedSpeechFrame[]); void signal_conceal_sub(Shortword pswPPFExcit[], Shortword ppswSynthAs[], Shortword pswSynthFiltState[], Shortword pswLtpStateOut[], Shortword pswPPreState[], Shortword swLevelMean, Shortword swLevelMax, Shortword swErrorFlag1, Shortword swMuteFlagOld, Shortword *pswMuteFlag, Shortword swMutePermit); #endif
