Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/celt
diff options
context:
space:
mode:
Diffstat (limited to 'celt')
-rw-r--r--celt/float_cast.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/celt/float_cast.h b/celt/float_cast.h
index 087f4546..9d34976e 100644
--- a/celt/float_cast.h
+++ b/celt/float_cast.h
@@ -72,12 +72,12 @@ static OPUS_INLINE opus_int32 float2int(float x) {return _mm_cvt_ss2si(_mm_set_s
#include <xmmintrin.h>
static OPUS_INLINE opus_int32 float2int(float value)
{
- /* _mm_load_ss will generate same code as _mm_set_ss
- ** in _MSC_VER >= 1914 /02 so keep __mm_load__ss
+ /* _mm_load_ss will generate same code as _mm_set_ss
+ ** in _MSC_VER >= 1914 /02 so keep __mm_load__ss
** for backward compatibility.
*/
return _mm_cvtss_si32(_mm_load_ss(&value));
- }
+ }
#elif (defined(_MSC_VER) && _MSC_VER >= 1400) && defined (_M_IX86)