FreeCalypso > hg > gsm-codec-lib
view libtwamr/ietf_hdr.c @ 624:fd35fd05bc8b
libgsmhr1/sp_frm.[ch]: constify some function arguments
Speech encoder main function calls filt4_2nd(), which in turn calls
iir_d(). A pointer comes from a "ROM" table, hence const.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 12 Mar 2026 03:53:21 +0000 |
| parents | 6fa27df6903b |
| children |
line wrap: on
line source
/* * This module provides one public const datum: RFC 4867 file header. */ #include <stdint.h> #include "tw_amr.h" const uint8_t amr_file_header_magic[AMR_IETF_HDR_LEN] = "#!AMR\n";
