diff options
author | Chris Robinson <[email protected]> | 2011-07-04 07:14:45 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-07-04 07:20:38 -0700 |
commit | d307ee8c2f0823f80b427766ace50243db0999d5 (patch) | |
tree | 7ffadef9d33578ebe3e5c0656d2aeac05de143cc /OpenAL32 | |
parent | 202f57552ad353912c54522605531e9737c790b0 (diff) |
Implement a lerped lookup of the HRTF coefficients/delays
Code supplied by Christopher Fitzgerald
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 26a3bf30..1fb75e18 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -523,7 +523,7 @@ const ALCchar *DevFmtChannelsString(enum DevFmtChannels chans); #define HRIR_MASK (HRIR_LENGTH-1) void InitHrtf(void); ALCboolean IsHrtfCompatible(ALCdevice *device); -void GetHrtfCoeffs(ALfloat elevation, ALfloat angle, const ALshort **left, const ALshort **right, ALuint *ldelay, ALuint *rdelay); +void GetLerpedHrtfCoeffs(ALfloat elevation, ALfloat azimuth, ALfloat gain, ALfloat (*coeffs)[2], ALuint *delays); void al_print(const char *fname, unsigned int line, const char *fmt, ...) PRINTF_STYLE(3,4); |