diff options
author | Chris Robinson <[email protected]> | 2020-12-12 20:21:56 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-12 23:41:38 -0800 |
commit | 225d42538d2397e2698b9edb359c360dde3d00a8 (patch) | |
tree | 33baffc701058760ff3fc3a068cb0e164ab58ccc /core/mixer/hrtfbase.h | |
parent | bb597546e1db888120b0da5c23dbf249a281e6aa (diff) |
Be more consistent with size_t
Diffstat (limited to 'core/mixer/hrtfbase.h')
-rw-r--r-- | core/mixer/hrtfbase.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/mixer/hrtfbase.h b/core/mixer/hrtfbase.h index 8031fe3d..39155adb 100644 --- a/core/mixer/hrtfbase.h +++ b/core/mixer/hrtfbase.h @@ -11,11 +11,11 @@ using uint = unsigned int; -using ApplyCoeffsT = void(&)(float2 *RESTRICT Values, const uint_fast32_t irSize, +using ApplyCoeffsT = void(&)(float2 *RESTRICT Values, const size_t irSize, const HrirArray &Coeffs, const float left, const float right); template<ApplyCoeffsT ApplyCoeffs> -inline void MixHrtfBase(const float *InSamples, float2 *RESTRICT AccumSamples, const uint IrSize, +inline void MixHrtfBase(const float *InSamples, float2 *RESTRICT AccumSamples, const size_t IrSize, const MixHrtfFilter *hrtfparams, const size_t BufferSize) { ASSUME(BufferSize > 0); @@ -40,7 +40,7 @@ inline void MixHrtfBase(const float *InSamples, float2 *RESTRICT AccumSamples, c template<ApplyCoeffsT ApplyCoeffs> inline void MixHrtfBlendBase(const float *InSamples, float2 *RESTRICT AccumSamples, - const uint IrSize, const HrtfFilter *oldparams, const MixHrtfFilter *newparams, + const size_t IrSize, const HrtfFilter *oldparams, const MixHrtfFilter *newparams, const size_t BufferSize) { ASSUME(BufferSize > 0); |