shithub: opus

Download patch

ref: f22e54dca488544754c92a87edfedbf0e2d57a37
parent: e50e8084a9e8108f3535b1ffadc5c0f2341b4548
author: Jean-Marc Valin <[email protected]>
date: Fri Jun 7 03:21:41 EDT 2013

Fixes fixed-point on x86 (no SSE).

--- 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