From 69762fd7c66afd7ccce8afd162c060212ecfef6d Mon Sep 17 00:00:00 2001 From: Thomas Tsou Date: Thu, 7 Nov 2013 22:54:15 -0500 Subject: Transceiver52M: Fix SSE preprocessor definition Using non-SSE4.1 enabled architecture would cause undefined reference to 'convert_si16_ps' call. Signed-off-by: Thomas Tsou --- Transceiver52M/x86/convert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Transceiver52M/x86/convert.c b/Transceiver52M/x86/convert.c index 1d2f208..40831da 100644 --- a/Transceiver52M/x86/convert.c +++ b/Transceiver52M/x86/convert.c @@ -165,7 +165,7 @@ static void convert_scale_ps_si16(short *out, float *in, float scale, int len) } #endif -#ifndef HAVE_SSE3 +#ifndef HAVE_SSE4_1 static void convert_si16_ps(float *out, short *in, int len) { for (int i = 0; i < len; i++) -- cgit v1.2.3