Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2015-05-06 00:08:30 +0300
committerStefan Hacker <dd0t@users.sourceforge.net>2015-05-06 21:22:11 +0300
commit2c0d37f9ef089032850e873e341b1399acbf5aad (patch)
treef7bfb76d74f2c4faf274454463be88bdfeefcba2 /3rdparty/speex-build/speex_config_types.h
parent263a2928ca367af334beeb0cca81c372d5c223b6 (diff)
Switch from old speex to new speex and speexdsp
The speex library has been split into a codec part (speex) and a dsp part (speex-dsp). As we still need the codec for compatibility with 3rd party clients only sending speex but still want the updates that went into the dsp and codec since then this patch modifies our build to enable that. To achieve that we combined the two libraries back together. Doing it this way might brittle but is only a temporary solution until we can actually drop the codec part.
Diffstat (limited to '3rdparty/speex-build/speex_config_types.h')
-rw-r--r--3rdparty/speex-build/speex_config_types.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/3rdparty/speex-build/speex_config_types.h b/3rdparty/speex-build/speex_config_types.h
new file mode 100644
index 000000000..bd548546b
--- /dev/null
+++ b/3rdparty/speex-build/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
+