| Index: silk/Inlines.h
|
| diff --git a/silk/Inlines.h b/silk/Inlines.h
|
| index 244f66ff392e47af712e0f57d2bb96745e6555d7..ec986cdfddf42c616aaae92e0888dfe549f8f200 100644
|
| --- a/silk/Inlines.h
|
| +++ b/silk/Inlines.h
|
| @@ -26,7 +26,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
| ***********************************************************************/
|
|
|
| /*! \file silk_Inlines.h
|
| - * \brief silk_Inlines.h defines inline signal processing functions.
|
| + * \brief silk_Inlines.h defines OPUS_INLINE signal processing functions.
|
| */
|
|
|
| #ifndef SILK_FIX_INLINES_H
|
| @@ -38,7 +38,7 @@ extern "C"
|
| #endif
|
|
|
| /* count leading zeros of opus_int64 */
|
| -static inline opus_int32 silk_CLZ64( opus_int64 in )
|
| +static OPUS_INLINE opus_int32 silk_CLZ64( opus_int64 in )
|
| {
|
| opus_int32 in_upper;
|
|
|
| @@ -53,7 +53,7 @@ static inline opus_int32 silk_CLZ64( opus_int64 in )
|
| }
|
|
|
| /* get number of leading zeros and fractional part (the bits right after the leading one */
|
| -static inline void silk_CLZ_FRAC(
|
| +static OPUS_INLINE void silk_CLZ_FRAC(
|
| opus_int32 in, /* I input */
|
| opus_int32 *lz, /* O number of leading zeros */
|
| opus_int32 *frac_Q7 /* O the 7 bits right after the leading one */
|
| @@ -68,7 +68,7 @@ static inline void silk_CLZ_FRAC(
|
| /* Approximation of square root */
|
| /* Accuracy: < +/- 10% for output values > 15 */
|
| /* < +/- 2.5% for output values > 120 */
|
| -static inline opus_int32 silk_SQRT_APPROX( opus_int32 x )
|
| +static OPUS_INLINE opus_int32 silk_SQRT_APPROX( opus_int32 x )
|
| {
|
| opus_int32 y, lz, frac_Q7;
|
|
|
| @@ -94,7 +94,7 @@ static inline opus_int32 silk_SQRT_APPROX( opus_int32 x )
|
| }
|
|
|
| /* Divide two int32 values and return result as int32 in a given Q-domain */
|
| -static inline opus_int32 silk_DIV32_varQ( /* O returns a good approximation of "(a32 << Qres) / b32" */
|
| +static OPUS_INLINE opus_int32 silk_DIV32_varQ( /* O returns a good approximation of "(a32 << Qres) / b32" */
|
| const opus_int32 a32, /* I numerator (Q0) */
|
| const opus_int32 b32, /* I denominator (Q0) */
|
| const opus_int Qres /* I Q-domain of result (>= 0) */
|
| @@ -140,7 +140,7 @@ static inline opus_int32 silk_DIV32_varQ( /* O returns a good approximation
|
| }
|
|
|
| /* Invert int32 value and return result as int32 in a given Q-domain */
|
| -static inline opus_int32 silk_INVERSE32_varQ( /* O returns a good approximation of "(1 << Qres) / b32" */
|
| +static OPUS_INLINE opus_int32 silk_INVERSE32_varQ( /* O returns a good approximation of "(1 << Qres) / b32" */
|
| const opus_int32 b32, /* I denominator (Q0) */
|
| const opus_int Qres /* I Q-domain of result (> 0) */
|
| )
|
|
|