diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2020-12-12 20:21:56 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2020-12-12 23:41:38 -0800 |
commit | 225d42538d2397e2698b9edb359c360dde3d00a8 (patch) | |
tree | 33baffc701058760ff3fc3a068cb0e164ab58ccc /core/mixer/mixer_neon.cpp | |
parent | bb597546e1db888120b0da5c23dbf249a281e6aa (diff) |
Be more consistent with size_t
Diffstat (limited to 'core/mixer/mixer_neon.cpp')
-rw-r--r-- | core/mixer/mixer_neon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/mixer/mixer_neon.cpp b/core/mixer/mixer_neon.cpp index af8f6b0c..3c7ddd4e 100644 --- a/core/mixer/mixer_neon.cpp +++ b/core/mixer/mixer_neon.cpp @@ -31,8 +31,8 @@ inline float32x4_t set_f4(float l0, float l1, float l2, float l3) constexpr uint FracPhaseBitDiff{MixerFracBits - BSincPhaseBits}; constexpr uint FracPhaseDiffOne{1 << FracPhaseBitDiff}; -inline void ApplyCoeffs(float2 *RESTRICT Values, const uint_fast32_t IrSize, - const HrirArray &Coeffs, const float left, const float right) +inline void ApplyCoeffs(float2 *RESTRICT Values, const size_t IrSize, const HrirArray &Coeffs, + const float left, const float right) { float32x4_t leftright4; { |