From 40082754a5eaff2f67b45c8b4fc487b6bb3a720e Mon Sep 17 00:00:00 2001 From: Spoike Date: Thu, 4 Apr 2013 02:16:37 +0000 Subject: [PATCH] speex does not directly support nacl64. maybe other platforms. the rest of fte probably won't compile without these explicit types anyway, so should be fine for any platform fte runs on. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4281 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/libs/speex/include/speex/speex_config_types.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 engine/libs/speex/include/speex/speex_config_types.h diff --git a/engine/libs/speex/include/speex/speex_config_types.h b/engine/libs/speex/include/speex/speex_config_types.h new file mode 100644 index 000000000..bd548546b --- /dev/null +++ b/engine/libs/speex/include/speex/speex_config_types.h @@ -0,0 +1,11 @@ +#ifndef __SPEEX_TYPES_H__ +#define __SPEEX_TYPES_H__ + +/* these are filled in by configure */ +typedef short spx_int16_t; +typedef unsigned short spx_uint16_t; +typedef int spx_int32_t; +typedef unsigned int spx_uint32_t; + +#endif +