Index: silk/fixed/noise_shape_analysis_FIX.c |
diff --git a/silk/fixed/noise_shape_analysis_FIX.c b/silk/fixed/noise_shape_analysis_FIX.c |
index e24d2e9d338c95fe956866a128d025bde8798aba..22a89f75aec0fc8d624409df861cbb6c2ca38595 100644 |
--- a/silk/fixed/noise_shape_analysis_FIX.c |
+++ b/silk/fixed/noise_shape_analysis_FIX.c |
@@ -138,9 +138,14 @@ static OPUS_INLINE void limit_warped_coefs( |
silk_assert( 0 ); |
} |
+#if defined(MIPSr1_ASM) |
+#include "mips/noise_shape_analysis_FIX_mipsr1.h" |
+#endif |
+ |
/**************************************************************/ |
/* Compute noise shaping coefficients and initial gain values */ |
/**************************************************************/ |
+#ifndef OVERRIDE_silk_noise_shape_analysis_FIX |
void silk_noise_shape_analysis_FIX( |
silk_encoder_state_FIX *psEnc, /* I/O Encoder state FIX */ |
silk_encoder_control_FIX *psEncCtrl, /* I/O Encoder control FIX */ |
@@ -443,3 +448,4 @@ void silk_noise_shape_analysis_FIX( |
} |
RESTORE_STACK; |
} |
+#endif /* OVERRIDE_silk_noise_shape_analysis_FIX */ |