Index: silk/float/solve_LS_FLP.c |
diff --git a/silk/float/solve_LS_FLP.c b/silk/float/solve_LS_FLP.c |
index 0eda65a4fb08fd047861f79a8bc75810efbe245c..7c90d665a0f0d18b573b632a9328560511bf2a81 100644 |
--- a/silk/float/solve_LS_FLP.c |
+++ b/silk/float/solve_LS_FLP.c |
@@ -37,7 +37,7 @@ POSSIBILITY OF SUCH DAMAGE. |
* Matrix D (only the diagonal elements returned in a vector)such that |
* the symmetric matric A is given by A = L*D*L'. |
**********************************************************************/ |
-static inline void silk_LDL_FLP( |
+static OPUS_INLINE void silk_LDL_FLP( |
silk_float *A, /* I/O Pointer to Symetric Square Matrix */ |
opus_int M, /* I Size of Matrix */ |
silk_float *L, /* I/O Pointer to Square Upper triangular Matrix */ |
@@ -48,7 +48,7 @@ static inline void silk_LDL_FLP( |
* Function to solve linear equation Ax = b, when A is a MxM lower |
* triangular matrix, with ones on the diagonal. |
**********************************************************************/ |
-static inline void silk_SolveWithLowerTriangularWdiagOnes_FLP( |
+static OPUS_INLINE void silk_SolveWithLowerTriangularWdiagOnes_FLP( |
const silk_float *L, /* I Pointer to Lower Triangular Matrix */ |
opus_int M, /* I Dim of Matrix equation */ |
const silk_float *b, /* I b Vector */ |
@@ -59,7 +59,7 @@ static inline void silk_SolveWithLowerTriangularWdiagOnes_FLP( |
* Function to solve linear equation (A^T)x = b, when A is a MxM lower |
* triangular, with ones on the diagonal. (ie then A^T is upper triangular) |
**********************************************************************/ |
-static inline void silk_SolveWithUpperTriangularFromLowerWdiagOnes_FLP( |
+static OPUS_INLINE void silk_SolveWithUpperTriangularFromLowerWdiagOnes_FLP( |
const silk_float *L, /* I Pointer to Lower Triangular Matrix */ |
opus_int M, /* I Dim of Matrix equation */ |
const silk_float *b, /* I b Vector */ |
@@ -109,7 +109,7 @@ void silk_solve_LDL_FLP( |
silk_SolveWithUpperTriangularFromLowerWdiagOnes_FLP( &L[ 0 ][ 0 ], M, T, x ); |
} |
-static inline void silk_SolveWithUpperTriangularFromLowerWdiagOnes_FLP( |
+static OPUS_INLINE void silk_SolveWithUpperTriangularFromLowerWdiagOnes_FLP( |
const silk_float *L, /* I Pointer to Lower Triangular Matrix */ |
opus_int M, /* I Dim of Matrix equation */ |
const silk_float *b, /* I b Vector */ |
@@ -131,7 +131,7 @@ static inline void silk_SolveWithUpperTriangularFromLowerWdiagOnes_FLP( |
} |
} |
-static inline void silk_SolveWithLowerTriangularWdiagOnes_FLP( |
+static OPUS_INLINE void silk_SolveWithLowerTriangularWdiagOnes_FLP( |
const silk_float *L, /* I Pointer to Lower Triangular Matrix */ |
opus_int M, /* I Dim of Matrix equation */ |
const silk_float *b, /* I b Vector */ |
@@ -153,7 +153,7 @@ static inline void silk_SolveWithLowerTriangularWdiagOnes_FLP( |
} |
} |
-static inline void silk_LDL_FLP( |
+static OPUS_INLINE void silk_LDL_FLP( |
silk_float *A, /* I/O Pointer to Symetric Square Matrix */ |
opus_int M, /* I Size of Matrix */ |
silk_float *L, /* I/O Pointer to Square Upper triangular Matrix */ |