aboutsummaryrefslogtreecommitdiff
path: root/code/libspeex/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'code/libspeex/config.h')
-rw-r--r--code/libspeex/config.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/code/libspeex/config.h b/code/libspeex/config.h
new file mode 100644
index 0000000..e6657fc
--- /dev/null
+++ b/code/libspeex/config.h
@@ -0,0 +1,23 @@
+// Microsoft version of 'inline'
+#define inline __inline
+
+// Visual Studio support alloca(), but it always align variables to 16-bit
+// boundary, while SSE need 128-bit alignment. So we disable alloca() when
+// SSE is enabled.
+#ifndef _USE_SSE
+# define USE_ALLOCA
+# if defined(__sun) /* Solaris needs this for alloca(). */
+# define HAVE_ALLOCA_H
+# endif
+#endif
+
+/* Default to floating point */
+#ifndef FIXED_POINT
+# define FLOATING_POINT
+# define USE_SMALLFT
+#else
+# define USE_KISS_FFT
+#endif
+
+/* We don't support visibility on Win32 */
+#define EXPORT