aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alSource.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-17 16:22:39 -0700
committerChris Robinson <[email protected]>2011-06-17 16:22:39 -0700
commitedf78b077efa5a8d3f11ea2059095f33e9f971a8 (patch)
tree3ba00f2c84cfa650291f21865be9b4a18affee86 /OpenAL32/Include/alSource.h
parent753e64c76cabf3ba22a4509f5ee2c7615de00b48 (diff)
Use separate lines for HRTF history and values
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r--OpenAL32/Include/alSource.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index 0572cbc1..e9c50f14 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -11,7 +11,7 @@
extern "C" {
#endif
-#define SRC_HISTORY_BITS (7)
+#define SRC_HISTORY_BITS (6)
#define SRC_HISTORY_LENGTH (1<<SRC_HISTORY_BITS)
#define SRC_HISTORY_MASK (SRC_HISTORY_LENGTH-1)
@@ -94,7 +94,8 @@ typedef struct ALsource
ALuint SampleSize;
/* HRTF info */
- ALfloat HrtfHistory[MAXCHANNELS][SRC_HISTORY_LENGTH][2];
+ ALfloat HrtfHistory[MAXCHANNELS][SRC_HISTORY_LENGTH];
+ ALfloat HrtfValues[MAXCHANNELS][HRIR_LENGTH][2];
ALuint HrtfOffset;
/* Current target parameters used for mixing */