aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tsou <tom@tsou.cc>2013-11-07 22:54:15 -0500
committerThomas Tsou <tom@tsou.cc>2013-11-07 22:57:21 -0500
commit69762fd7c66afd7ccce8afd162c060212ecfef6d (patch)
tree1fecfbd8f5b65203e5accfb4820f1c19426c18f5
parentfffd987f221ff9fb89cf614bfd45309ccd9a3242 (diff)
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 <tom@tsou.cc>
-rw-r--r--Transceiver52M/x86/convert.c2
1 files changed, 1 insertions, 1 deletions
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++)