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>
This commit is contained in:
Thomas Tsou 2013-11-07 22:54:15 -05:00
parent fffd987f22
commit 69762fd7c6
1 changed files with 1 additions and 1 deletions

View File

@ -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++)