From b7ab8b68962f3c3db486baf3fc8654df696408dc Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 22 Aug 2019 18:53:09 -0700 Subject: Fix a variable declaration --- alc/mixer/mixer_neon.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'alc/mixer/mixer_neon.cpp') diff --git a/alc/mixer/mixer_neon.cpp b/alc/mixer/mixer_neon.cpp index 991443c9..472eae1b 100644 --- a/alc/mixer/mixer_neon.cpp +++ b/alc/mixer/mixer_neon.cpp @@ -94,10 +94,9 @@ const ALfloat *Resample_(const InterpState *state, const ALflo #undef FRAC_PHASE_BITDIFF // Apply the scale and phase interpolated filter. - r4 = vdupq_n_f32(0.0f); + float32x4_t r4{vdupq_n_f32(0.0f)}; { - const ALsizei count = m >> 2; - const float32x4_t pf4 = vdupq_n_f32(pf); + const float32x4_t pf4{vdupq_n_f32(pf)}; const float *fil{filter + m*pi*4}; const float *scd{fil + m}; const float *phd{scd + m}; -- cgit v1.2.3