diff options
author | Chris Robinson <[email protected]> | 2017-04-07 08:46:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-04-07 08:46:50 -0700 |
commit | 8f2e4d46ec2de3c813438c363919a3da6aab7a4f (patch) | |
tree | 503a704acfa2ba815859616be0b7d20ffde7d321 /Alc/hrtf.h | |
parent | e267f6b88eaf69d1ea03d9ac62a7c8ea866f5384 (diff) |
Store the HRTF coeffs as a stereo pair
This will make it easier to handle HRTF data sets that have separate left and
right ear responses. Will need an mhr version update to take advantage of that.
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r-- | Alc/hrtf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,8 +30,8 @@ struct Hrtf { const ALubyte *azCount; const ALushort *evOffset; - const ALfloat *coeffs; - const ALubyte *delays; + const ALfloat (*coeffs)[2]; + const ALubyte (*delays)[2]; }; |