shithub: opus

Download patch

ref: 55480908beebc07c91d26968e855f548bd7eea66
parent: 833d2f0ed7ccfa01d560bccec81d45153c5f3b79
author: Jean-Marc Valin <jmvalin@jmvalin.ca>
date: Tue Oct 30 22:36:17 EDT 2018

Make float2int() static with VS

Addresses the rest of https://github.com/xiph/opus/pull/79

--- a/celt/float_cast.h
+++ b/celt/float_cast.h
@@ -99,7 +99,7 @@
 #elif (defined(_MSC_VER) && _MSC_VER >= 1400) && (defined(_M_X64) || (defined(_M_IX86_FP) && _M_IX86_FP >= 1))
         #include <xmmintrin.h>
 
-        __inline long int float2int(float value)
+        static __inline long int float2int(float value)
         {
                 return _mm_cvtss_si32(_mm_load_ss(&value));
         }
@@ -110,7 +110,7 @@
         **      Therefore implement OPUS_INLINE versions of these functions here.
         */
 
-        __inline long int
+        static __inline long int
         float2int (float flt)
         {       int intgr;