mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
Patched to compile on non Mac platforms.
This commit is contained in:
parent
8ab3f7af8d
commit
32d7799c7c
1 changed files with 4 additions and 0 deletions
|
@ -2,10 +2,14 @@
|
||||||
#define __SPEEX_TYPES_H__
|
#define __SPEEX_TYPES_H__
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
typedef __int16 spx_int16_t;
|
||||||
|
typedef __int32 spx_int32_t;
|
||||||
typedef unsigned __int16 spx_uint16_t;
|
typedef unsigned __int16 spx_uint16_t;
|
||||||
typedef unsigned __int32 spx_uint32_t;
|
typedef unsigned __int32 spx_uint32_t;
|
||||||
#else
|
#else
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
typedef int16_t spx_int16_t;
|
||||||
|
typedef int32_t spx_int32_t;
|
||||||
typedef uint16_t spx_uint16_t;
|
typedef uint16_t spx_uint16_t;
|
||||||
typedef uint32_t spx_uint32_t;
|
typedef uint32_t spx_uint32_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue