diff options
author | Chris Robinson <[email protected]> | 2022-03-30 04:06:00 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-03-30 04:06:00 -0700 |
commit | f15106e77f0baa793320aa23aaf876f39b615500 (patch) | |
tree | b90a46eeaef5b8017a868ca2adc2cfde54da973a /core/device.h | |
parent | a033f8c2749cb9af14297fea7c2115f798892494 (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.h | 2 |
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; |