aboutsummaryrefslogtreecommitdiffstats
path: root/core/device.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-03-30 04:06:00 -0700
committerChris Robinson <[email protected]>2022-03-30 04:06:00 -0700
commitf15106e77f0baa793320aa23aaf876f39b615500 (patch)
treeb90a46eeaef5b8017a868ca2adc2cfde54da973a /core/device.h
parenta033f8c2749cb9af14297fea7c2115f798892494 (diff)
Remove the reversed all-pass trick in MixDirectHrtfBase
Given the minimum phase HRTF, it's not going to stay linear phase anyway.
Diffstat (limited to 'core/device.h')
-rw-r--r--core/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/device.h b/core/device.h
index 48d04f77..58a30f1b 100644
--- a/core/device.h
+++ b/core/device.h
@@ -197,7 +197,7 @@ struct DeviceBase {
};
/* Persistent storage for HRTF mixing. */
- alignas(16) float2 HrtfAccumData[BufferLineSize + HrirLength + HrtfDirectDelay];
+ alignas(16) float2 HrtfAccumData[BufferLineSize + HrirLength];
/* Mixing buffer used by the Dry mix and Real output. */
al::vector<FloatBufferLine, 16> MixBuffer;