summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2013-06-07 07:21:41 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-06-07 07:21:41 -0400
commitf22e54dca488544754c92a87edfedbf0e2d57a37 (patch)
treea81d7b4be3621c0ba4b5a965dc5dacabf5729aba
parente50e8084a9e8108f3535b1ffadc5c0f2341b4548 (diff)
downloadopus-f22e54dca488544754c92a87edfedbf0e2d57a37.tar.gz
Fixes fixed-point on x86 (no SSE).
-rw-r--r--celt/pitch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/pitch.h b/celt/pitch.h
index 580ea819..10dd62ab 100644
--- a/celt/pitch.h
+++ b/celt/pitch.h
@@ -36,7 +36,7 @@
#include "modes.h"
-#ifdef __SSE__
+#if defined(__SSE__) && !defined(FIXED_POINT)
#include "x86/pitch_sse.h"
#endif