#ifdef SOLARIS
#include <sys/int_types.h>
#else
+#ifdef __FreeBSD__
+#include <inttypes.h>
+#else
#include <stdint.h>
#endif
+#endif
/*! \page plc_page Packet loss concealment
\section plc_page_sec_1 What does it do?
#include <stdlib.h>
#include <string.h>
#include <math.h>
-#include <stdint.h>
#include <limits.h>
#include <asterisk/plc.h>
#define TRUE (!FALSE)
#endif
+#if !defined(INT16_MAX)
+#define INT16_MAX (32767)
+#define INT16_MIN (-32767-1)
+#endif
+
/* We do a straight line fade to zero volume in 50ms when we are filling in for missing data. */
#define ATTENUATION_INCREMENT 0.0025 /* Attenuation per sample */