aboutsummaryrefslogtreecommitdiffstats
path: root/alc/mixer/mixer_neon.cpp
diff options
context:
space:
mode:
authorChris Robinson <chris.kcat@gmail.com>2020-04-30 17:03:56 -0700
committerChris Robinson <chris.kcat@gmail.com>2020-04-30 17:03:56 -0700
commit6bc3ae178e929cbb9f984b482b3a1732b14428dc (patch)
tree35b61c706988655d68493577004d84e8fe267caa /alc/mixer/mixer_neon.cpp
parent972869f76fe854a57e5cc2ffa38d58ddae9d95d2 (diff)
Use a more efficient type for holding the IrSize
Diffstat (limited to 'alc/mixer/mixer_neon.cpp')
-rw-r--r--alc/mixer/mixer_neon.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/mixer/mixer_neon.cpp b/alc/mixer/mixer_neon.cpp
index ee5b11a2..b62213d4 100644
--- a/alc/mixer/mixer_neon.cpp
+++ b/alc/mixer/mixer_neon.cpp
@@ -24,8 +24,8 @@ namespace {
#define FRAC_PHASE_BITDIFF (FRACTIONBITS - BSINC_PHASE_BITS)
#define FRAC_PHASE_DIFFONE (1<<FRAC_PHASE_BITDIFF)
-inline void ApplyCoeffs(float2 *RESTRICT Values, const ALuint IrSize, const HrirArray &Coeffs,
- const float left, const float right)
+inline void ApplyCoeffs(float2 *RESTRICT Values, const uint_fast32_t IrSize,
+ const HrirArray &Coeffs, const float left, const float right)
{
float32x4_t leftright4;
{
@@ -36,7 +36,7 @@ inline void ApplyCoeffs(float2 *RESTRICT Values, const ALuint IrSize, const Hrir
}
ASSUME(IrSize >= MIN_IR_LENGTH);
- for(ALuint c{0};c < IrSize;c += 2)
+ for(size_t c{0};c < IrSize;c += 2)
{
float32x4_t vals = vld1q_f32(&Values[c][0]);
float32x4_t coefs = vld1q_f32(&Coeffs[c][0]);