forked from Mirrors/freeswitch
aa326b9a09
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16414 d0543943-73ff-0310-b7d9-9358b9ac24b2
36 lines
805 B
C
36 lines
805 B
C
/* This is a build of CELT */
|
|
#define CELT_BUILD
|
|
|
|
/* Version extra */
|
|
#define CELT_EXTRA_VERSION "-1"
|
|
|
|
/* Version major */
|
|
#define CELT_MAJOR_VERSION 0
|
|
|
|
/* Version micro */
|
|
#define CELT_MICRO_VERSION 0
|
|
|
|
/* Version minor */
|
|
#define CELT_MINOR_VERSION 7
|
|
|
|
/* Complete version string */
|
|
#define CELT_VERSION "0.7.0-1"
|
|
|
|
/* Compile as fixed-point */
|
|
/* #undef FIXED_POINT */
|
|
|
|
/* Compile as floating-point */
|
|
#define FLOATING_POINT
|
|
|
|
/* Make use of alloca */
|
|
/* #undef USE_ALLOCA */
|
|
#define USE_ALLOCA 1 /* disable this when using SSE */
|
|
|
|
/* Define to equivalent of C99 restrict keyword, or to nothing if this is not
|
|
supported. Do not define if restrict is supported directly. */
|
|
#define restrict /* __restrict */
|
|
|
|
// Microsoft version of 'inline'
|
|
#define inline __inline
|
|
|