FreeCalypso > hg > gsm-codec-lib
view doc/Binary-file-format @ 20:93ed41fb4038
libgsmfrp/Makefile: add install
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 20 Nov 2022 06:36:09 +0000 |
parents | 820d88b97924 |
children | 598ee3ce238b |
line wrap: on
line source
We (Themyscira Wireless) define our own binary file format for testing of GSM 06.10 (FR) and EFR codec functions; this format of ours is an extension of classic .gsm format from libgsm/toast. The original libgsm file format is a directly abutted sequence of 33-byte libgsm frames, equivalent to RTP frames for GSM FR, with the upper nibble of the first byte in each frame equal to 0xD, serving as a signature. We simply extend this idea: our version is still a directly abutted sequence of binary records, but each record is now one of 3 possibilities: - a 33-byte GSM FR frame in libgsm/RTP format, 0xD signature - a 31-byte GSM EFR frame in RTP format (ETSI TS 101 318), 0xC signature - a 2-byte Themyscira-extension BFI marker, 0xBF signature File reading functions begin by reading only one byte; this byte, once decoded, tells us how many more bytes need to be read, and frame synchronization is thus maintained. FR and EFR frames are not expected to be mixed in the same stream recording; our low-level binary file reading function will grok such mixing just fine, but each higher-level test program is expected to be written for only one codec, either FR or EFR.