diff options
author | Chris Robinson <[email protected]> | 2017-07-31 01:20:42 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-07-31 01:20:42 -0700 |
commit | 88c0d22e7c72109fb5d7b2ee3276680d36971368 (patch) | |
tree | b05a8a6ec59740df39e5500a284c2db11ed832ea /Alc/hrtf.h | |
parent | e5431bbef7741155382920ed10e14dc3263e98cd (diff) |
Don't bother returning the IR length for B-Format decoding
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r-- | Alc/hrtf.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -45,8 +45,7 @@ void GetHrtfCoeffs(const struct Hrtf *Hrtf, ALfloat elevation, ALfloat azimuth, * Produces HRTF filter coefficients for decoding B-Format, given a set of * virtual speaker positions and HF/LF matrices for decoding to them. The * returned coefficients are ordered and scaled according to the matrices. - * Returns the maximum impulse-response length of the generated coefficients. */ -ALsizei BuildBFormatHrtf(const struct Hrtf *Hrtf, DirectHrtfState *state, ALsizei NumChannels, const ALfloat (*restrict AmbiPoints)[2], const ALfloat (*restrict AmbiMatrix)[2][MAX_AMBI_COEFFS], ALsizei AmbiCount); +void BuildBFormatHrtf(const struct Hrtf *Hrtf, DirectHrtfState *state, ALsizei NumChannels, const ALfloat (*restrict AmbiPoints)[2], const ALfloat (*restrict AmbiMatrix)[2][MAX_AMBI_COEFFS], ALsizei AmbiCount); #endif /* ALC_HRTF_H */ |