From f22e54dca488544754c92a87edfedbf0e2d57a37 Mon Sep 17 00:00:00 2001 From: Jean-Marc Valin Date: Fri, 7 Jun 2013 07:21:41 -0400 Subject: Fixes fixed-point on x86 (no SSE). --- celt/pitch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1