Skip to content
Snippets Groups Projects
Commit 6ecb1751 authored by Luigi Rizzo's avatar Luigi Rizzo
Browse files

provide INT16_MIN and INT16_MAX for platforms where they are not defined.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48959 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 09f75aa6
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,13 @@ enum
G722_PACKED = 0x0002
};
#ifndef INT16_MAX
#define INT16_MAX 32767
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32768)
#endif
typedef struct
{
/*! TRUE if the operating in the special ITU test mode, with the band split filters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment