mirror of
https://github.com/PentHertz/OpenBTS.git
synced 2026-04-28 03:19:27 +00:00
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:
parent
b8b6625287
commit
f889ede9ba
1 changed files with 1 additions and 1 deletions
|
|
@ -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++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue