aboutsummaryrefslogtreecommitdiffstats
path: root/alc/mixer
diff options
context:
space:
mode:
Diffstat (limited to 'alc/mixer')
-rw-r--r--alc/mixer/mixer_neon.cpp6
-rw-r--r--alc/mixer/mixer_sse.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/alc/mixer/mixer_neon.cpp b/alc/mixer/mixer_neon.cpp
index b4ca61d7..f43063ce 100644
--- a/alc/mixer/mixer_neon.cpp
+++ b/alc/mixer/mixer_neon.cpp
@@ -209,7 +209,7 @@ void Mix_<NEONTag>(const ALfloat *data, const al::span<FloatBufferLine> OutBuffe
const ALfloat step{diff * delta};
ALfloat step_count{0.0f};
/* Mix with applying gain steps in aligned multiples of 4. */
- if(LIKELY(minsize > 3))
+ if LIKELY(minsize > 3)
{
const float32x4_t four4{vdupq_n_f32(4.0f)};
const float32x4_t step4{vdupq_n_f32(step)};
@@ -258,7 +258,7 @@ void Mix_<NEONTag>(const ALfloat *data, const al::span<FloatBufferLine> OutBuffe
if(!(std::fabs(gain) > GAIN_SILENCE_THRESHOLD))
continue;
- if(LIKELY(BufferSize-pos > 3))
+ if LIKELY(BufferSize-pos > 3)
{
ALsizei todo{(BufferSize-pos) >> 2};
const float32x4_t gain4 = vdupq_n_f32(gain);
@@ -289,7 +289,7 @@ void MixRow_<NEONTag>(FloatBufferLine &OutBuffer, const ALfloat *Gains,
continue;
ALsizei pos{0};
- if(LIKELY(BufferSize > 3))
+ if LIKELY(BufferSize > 3)
{
ALsizei todo{BufferSize >> 2};
float32x4_t gain4{vdupq_n_f32(gain)};
diff --git a/alc/mixer/mixer_sse.cpp b/alc/mixer/mixer_sse.cpp
index b52ef256..cff37d2b 100644
--- a/alc/mixer/mixer_sse.cpp
+++ b/alc/mixer/mixer_sse.cpp
@@ -165,7 +165,7 @@ void Mix_<SSETag>(const ALfloat *data, const al::span<FloatBufferLine> OutBuffer
const ALfloat step{diff * delta};
ALfloat step_count{0.0f};
/* Mix with applying gain steps in aligned multiples of 4. */
- if(LIKELY(minsize > 3))
+ if LIKELY(minsize > 3)
{
const __m128 four4{_mm_set1_ps(4.0f)};
const __m128 step4{_mm_set1_ps(step)};
@@ -211,7 +211,7 @@ void Mix_<SSETag>(const ALfloat *data, const al::span<FloatBufferLine> OutBuffer
if(!(std::fabs(gain) > GAIN_SILENCE_THRESHOLD))
continue;
- if(LIKELY(BufferSize-pos > 3))
+ if LIKELY(BufferSize-pos > 3)
{
ALsizei todo{(BufferSize-pos) >> 2};
const __m128 gain4{_mm_set1_ps(gain)};
@@ -242,7 +242,7 @@ void MixRow_<SSETag>(FloatBufferLine &OutBuffer, const ALfloat *Gains,
continue;
ALsizei pos{0};
- if(LIKELY(BufferSize > 3))
+ if LIKELY(BufferSize > 3)
{
ALsizei todo{BufferSize >> 2};
const __m128 gain4 = _mm_set1_ps(gain);