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>

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@6844 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
Thomas Tsou
2013-11-08 04:11:28 +00:00
parent b8b6625287
commit f889ede9ba

View File

@@ -164,7 +164,7 @@ static void convert_scale_ps_si16(short *out, float *in, float scale, int len)
}
#endif
#ifndef HAVE_SSE_4_1
#ifndef HAVE_SSE4_1
static void convert_si16_ps(float *out, short *in, int len)
{
for (int i = 0; i < len; i++)