diff options
author | Chris Robinson <[email protected]> | 2019-09-16 07:50:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-16 07:50:39 -0700 |
commit | 650764775febeedd2834ce3a0838d6468f4b6b31 (patch) | |
tree | aedf6cac6af6b4a5db0df08be024eca9f93c44b7 /alc/mixer/mixer_neon.cpp | |
parent | fcf850c1dd54dcf5de5bc7afc723ffac51e5c0c9 (diff) |
Fix typo
Diffstat (limited to 'alc/mixer/mixer_neon.cpp')
-rw-r--r-- | alc/mixer/mixer_neon.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/mixer/mixer_neon.cpp b/alc/mixer/mixer_neon.cpp index e7313876..8a98f5de 100644 --- a/alc/mixer/mixer_neon.cpp +++ b/alc/mixer/mixer_neon.cpp @@ -262,7 +262,7 @@ void MixRow_<NEONTag>(const al::span<float> OutBuffer, const al::span<const floa { for(const ALfloat gain : Gains) { - const ALfloat *RESTRICT intput{InSamples}; + const ALfloat *RESTRICT input{InSamples}; InSamples += InStride; if(!(std::fabs(gain) > GAIN_SILENCE_THRESHOLD)) @@ -273,11 +273,11 @@ void MixRow_<NEONTag>(const al::span<float> OutBuffer, const al::span<const floa { const float32x4_t gain4{vdupq_n_f32(gain)}; do { - const float32x4_t val4 = vld1q_f32(intput); + const float32x4_t val4 = vld1q_f32(input); float32x4_t dry4 = vld1q_f32(out_iter); dry4 = vmlaq_f32(dry4, val4, gain4); vst1q_f32(out_iter, dry4); - out_iter += 4; intput += 4; + out_iter += 4; input += 4; } while(--todo); } |