FreeCalypso > hg > gsm-codec-lib
view libtwamr/dhf_check.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 | 9beb01439a90 |
| children |
line wrap: on
line source
/* * This module implements the DHF checking function. */ #include <stdint.h> #include <string.h> #include "tw_amr.h" #include "typedef.h" #include "namespace.h" #include "bitno.h" static const Word16 * const dhf_per_mode[8] = { amr_dhf_mr475, amr_dhf_mr515, amr_dhf_mr59, amr_dhf_mr67, amr_dhf_mr74, amr_dhf_mr795, amr_dhf_mr102, amr_dhf_mr122 }; int amr_check_dhf(const struct amr_param_frame *frame, int first_sub_only) { const Word16 *table; Word16 nparam; if (frame->type != RX_SPEECH_GOOD) return 0; if ((frame->mode & 0x87) == 0x87) table = amr_dhf_gsmefr; else table = dhf_per_mode[frame->mode & 7]; if (first_sub_only) nparam = prmnofsf[frame->mode & 7]; else nparam = prmno[frame->mode & 7]; if (memcmp(frame->param, table, nparam * sizeof(int16_t))) return 0; else return 1; }
