FreeCalypso > hg > gsm-codec-lib
comparison amrconv/ietf_common.c @ 214:934cf92a1c45
amrconv: new program amr-ietf-parse
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 20 Apr 2023 22:48:22 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
213:46a6e6b6841a | 214:934cf92a1c45 |
---|---|
1 /* | |
2 * This C module holds some common data items for IETF RFC 4867 | |
3 * AMR file format. | |
4 */ | |
5 | |
6 #include <stdint.h> | |
7 #include "amr_defs.h" | |
8 | |
9 const char amr_file_hdr[IETF_HDR_LEN] = "#!AMR\n"; | |
10 | |
11 const uint8_t extra_bytes_per_ft[9] = {12, 13, 15, 17, 19, 20, 26, 31, 5}; |