From a9135ec39d8722502e92fc5141661c3479d877d9 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 9 Feb 2016 21:42:24 -0800 Subject: Don't pass the channel count to GetBFormatHrtfCoeffs Since it's hard-coded anyway, there's no need to specify it. --- Alc/hrtf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Alc/hrtf.h') diff --git a/Alc/hrtf.h b/Alc/hrtf.h index 6dcd6948..9f3f0ade 100644 --- a/Alc/hrtf.h +++ b/Alc/hrtf.h @@ -35,6 +35,6 @@ ALuint GetHrtfIrSize(const struct Hrtf *Hrtf); void GetLerpedHrtfCoeffs(const struct Hrtf *Hrtf, ALfloat elevation, ALfloat azimuth, ALfloat dirfact, ALfloat gain, ALfloat (*coeffs)[2], ALuint *delays); ALuint GetMovingHrtfCoeffs(const struct Hrtf *Hrtf, ALfloat elevation, ALfloat azimuth, ALfloat dirfact, ALfloat gain, ALfloat delta, ALint counter, ALfloat (*coeffs)[2], ALuint *delays, ALfloat (*coeffStep)[2], ALint *delayStep); -void GetBFormatHrtfCoeffs(const struct Hrtf *Hrtf, const ALuint num_chans, ALfloat (**coeffs_list)[2], ALuint **delay_list); +void GetBFormatHrtfCoeffs(const struct Hrtf *Hrtf, ALfloat (*coeffs_list[4])[2], ALuint *delay_list[4]); #endif /* ALC_HRTF_H */ -- cgit v1.2.3