aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-04-07 08:46:50 -0700
committerChris Robinson <[email protected]>2017-04-07 08:46:50 -0700
commit8f2e4d46ec2de3c813438c363919a3da6aab7a4f (patch)
tree503a704acfa2ba815859616be0b7d20ffde7d321 /Alc/hrtf.h
parente267f6b88eaf69d1ea03d9ac62a7c8ea866f5384 (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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/hrtf.h b/Alc/hrtf.h
index 3ec3e19e..186ba3b2 100644
--- a/Alc/hrtf.h
+++ b/Alc/hrtf.h
@@ -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];
};