diff options
author | Chris Robinson <[email protected]> | 2020-06-15 02:05:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-06-15 02:13:14 -0700 |
commit | 540315b07c086f4c9af1c632e7464433332de4a8 (patch) | |
tree | bb425ee589097ed89fe374134666f18c50df52b3 /alc/front_stablizer.h | |
parent | c951190d3a8bf03ef619c0b3f87388762a7c1743 (diff) |
Handle the front stablizer with the B-Format decoder
Diffstat (limited to 'alc/front_stablizer.h')
-rw-r--r-- | alc/front_stablizer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alc/front_stablizer.h b/alc/front_stablizer.h index da39618e..5e7c267f 100644 --- a/alc/front_stablizer.h +++ b/alc/front_stablizer.h @@ -15,6 +15,7 @@ struct FrontStablizer { FrontStablizer(size_t numchans) : DelayBuf{numchans} { } alignas(16) std::array<float,BUFFERSIZE + DelayLength> Side{}; + alignas(16) std::array<float,BUFFERSIZE + DelayLength> MidDirect{}; alignas(16) std::array<float,DelayLength> MidDelay{}; alignas(16) std::array<float,BUFFERSIZE + DelayLength> TempBuf{}; |