Skip to content
Snippets Groups Projects
Verified Commit 147b7229 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Oops, fix the fixed-point build

parent db26e381
No related branches found
No related tags found
No related merge requests found
Pipeline #4274 failed
...@@ -269,6 +269,7 @@ extern opus_int (*const SILK_VAD_GETSA_Q8_IMPL[OPUS_ARCHMASK + 1])( ...@@ -269,6 +269,7 @@ extern opus_int (*const SILK_VAD_GETSA_Q8_IMPL[OPUS_ARCHMASK + 1])(
# endif # endif
#ifndef FIXED_POINT
double silk_inner_product_FLP_avx2( double silk_inner_product_FLP_avx2(
const silk_float *data1, const silk_float *data1,
const silk_float *data2, const silk_float *data2,
...@@ -291,6 +292,7 @@ extern double (*const SILK_INNER_PRODUCT_FLP_IMPL[OPUS_ARCHMASK + 1])( ...@@ -291,6 +292,7 @@ extern double (*const SILK_INNER_PRODUCT_FLP_IMPL[OPUS_ARCHMASK + 1])(
#define silk_inner_product_FLP(data1, data2, dataSize, arch) ((void)arch,(*SILK_INNER_PRODUCT_FLP_IMPL[(arch) & OPUS_ARCHMASK])(data1, data2, dataSize)) #define silk_inner_product_FLP(data1, data2, dataSize, arch) ((void)arch,(*SILK_INNER_PRODUCT_FLP_IMPL[(arch) & OPUS_ARCHMASK])(data1, data2, dataSize))
#endif
#endif #endif
# endif # endif
......
...@@ -32,7 +32,9 @@ ...@@ -32,7 +32,9 @@
#include "celt/x86/x86cpu.h" #include "celt/x86/x86cpu.h"
#include "structs.h" #include "structs.h"
#include "SigProc_FIX.h" #include "SigProc_FIX.h"
#ifndef FIXED_POINT
#include "SigProc_FLP.h" #include "SigProc_FLP.h"
#endif
#include "pitch.h" #include "pitch.h"
#include "main.h" #include "main.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment