diff options
author | Chris Robinson <[email protected]> | 2014-03-23 16:28:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-23 16:28:55 -0700 |
commit | 72986882f549275c6c946b325a9c75b1547f37f1 (patch) | |
tree | b8c7cf332193cf293f9f5c0e8a9c85c99d00d060 /Alc/mixer_defs.h | |
parent | a25260ea8a63629b0daa03a7beb9b72b53588d2b (diff) |
Remove the click removal buffers for auxiliary effect slots
Diffstat (limited to 'Alc/mixer_defs.h')
-rw-r--r-- | Alc/mixer_defs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Alc/mixer_defs.h b/Alc/mixer_defs.h index 34430517..a371e65a 100644 --- a/Alc/mixer_defs.h +++ b/Alc/mixer_defs.h @@ -18,16 +18,16 @@ void Resample_cubic32_C(const ALfloat *src, ALuint frac, ALuint increment, ALflo /* C mixers */ void MixDirect_Hrtf_C(struct DirectParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); void MixDirect_C(struct DirectParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); -void MixSend_C(struct SendParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); +void MixSend_C(struct SendParams*,const ALfloat*restrict,ALuint,ALuint); /* SSE mixers */ void MixDirect_Hrtf_SSE(struct DirectParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); void MixDirect_SSE(struct DirectParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); -void MixSend_SSE(struct SendParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); +void MixSend_SSE(struct SendParams*,const ALfloat*restrict,ALuint,ALuint); /* Neon mixers */ void MixDirect_Hrtf_Neon(struct DirectParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); void MixDirect_Neon(struct DirectParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); -void MixSend_Neon(struct SendParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); +void MixSend_Neon(struct SendParams*,const ALfloat*restrict,ALuint,ALuint); #endif /* MIXER_DEFS_H */ |