aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer/mixer_c.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-12-26 14:59:21 -0800
committerChris Robinson <[email protected]>2018-12-26 14:59:21 -0800
commitc5be03b51e8fd9bda3a46c345bdc945cfd965c2e (patch)
tree9560a78b363b6422e24dfc0c39209441e99c1789 /Alc/mixer/mixer_c.cpp
parent5c449de73f491a73cbc948b3301b8305f20be648 (diff)
Avoid masking in ApplyCoeffs's inner loop
This unfortunately does not apply to NEON, which would need a bit more reworking of its method.
Diffstat (limited to 'Alc/mixer/mixer_c.cpp')
-rw-r--r--Alc/mixer/mixer_c.cpp22
1 files changed, 17 insertions, 5 deletions
diff --git a/Alc/mixer/mixer_c.cpp b/Alc/mixer/mixer_c.cpp
index 7a2a6319..bbf58325 100644
--- a/Alc/mixer/mixer_c.cpp
+++ b/Alc/mixer/mixer_c.cpp
@@ -108,12 +108,24 @@ static inline void ApplyCoeffs(ALsizei Offset, ALfloat (*RESTRICT Values)[2],
const ALfloat (*RESTRICT Coeffs)[2],
ALfloat left, ALfloat right)
{
- ALsizei c;
- for(c = 0;c < IrSize;c++)
+ ALsizei off{Offset&HRIR_MASK};
+ ALsizei count{mini(IrSize, HRIR_LENGTH - off)};
+
+ ASSUME(IrSize > 0);
+ ASSUME(count > 0);
+
+ for(ALsizei c{0};;)
{
- const ALsizei off = (Offset+c)&HRIR_MASK;
- Values[off][0] += Coeffs[c][0] * left;
- Values[off][1] += Coeffs[c][1] * right;
+ for(;c < count;++c)
+ {
+ Values[off][0] += Coeffs[c][0] * left;
+ Values[off][1] += Coeffs[c][1] * right;
+ ++off;
+ }
+ if(c >= IrSize)
+ break;
+ off = 0;
+ count = IrSize;
}
}