diff options
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r-- | Alc/hrtf.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -28,8 +28,12 @@ struct HrtfEntry { ALuint sampleRate; ALsizei irSize; - ALfloat distance; - ALubyte evCount; + struct Field { + ALfloat distance; + ALubyte evCount; + }; + ALsizei fdCount; + Field *field; const ALubyte *azCount; const ALushort *evOffset; |