FreeCalypso > hg > gsm-codec-lib
view libgsmfr2/typedef.h @ 282:9ee8ad3d4d30
frtest: rm gsmfr-hand-test and gsmfr-max-out utils
These hack programs were never properly documented and were written
only as part of a debug chase, in pursuit of a bug that ultimately
turned out to be in our then-hacky patch to osmo-bts-sysmo,
before beginning of proper patches in Osmocom. These hack programs
need to be dropped from the present sw package because they depend
on old libgsm, and we are eliminating that dependency.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 14 Apr 2024 05:44:47 +0000 |
parents | ffdcdb27d673 |
children |
line wrap: on
line source
/* * This internal header file provides adaptation between stdint types * and those used by GSM 06.10 code from TU-Berlin. */ typedef int16_t word; typedef int32_t longword; typedef uint16_t uword; typedef uint32_t ulongword; #define MIN_WORD (-32767 - 1) #define MAX_WORD 32767 #define MIN_LONGWORD (-2147483647 - 1) #define MAX_LONGWORD 2147483647