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/alcmain.h | |
parent | c951190d3a8bf03ef619c0b3f87388762a7c1743 (diff) |
Handle the front stablizer with the B-Format decoder
Diffstat (limited to 'alc/alcmain.h')
-rw-r--r-- | alc/alcmain.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/alc/alcmain.h b/alc/alcmain.h index a05cc511..8d802d85 100644 --- a/alc/alcmain.h +++ b/alc/alcmain.h @@ -38,7 +38,6 @@ struct ALfilter; struct BackendBase; struct Compressor; struct EffectState; -struct FrontStablizer; struct Uhj2Encoder; struct bs2b; @@ -299,8 +298,6 @@ struct ALCdevice : public al::intrusive_ref<ALCdevice> { using PostProc = void(ALCdevice::*)(const size_t SamplesToDo); PostProc PostProcess{nullptr}; - std::unique_ptr<FrontStablizer> Stablizer; - std::unique_ptr<Compressor> Limiter; /* Delay buffers used to compensate for speaker distances. */ @@ -347,6 +344,7 @@ struct ALCdevice : public al::intrusive_ref<ALCdevice> { void ProcessHrtf(const size_t SamplesToDo); void ProcessAmbiDec(const size_t SamplesToDo); + void ProcessAmbiDecStablized(const size_t SamplesToDo); void ProcessUhj(const size_t SamplesToDo); void ProcessBs2b(const size_t SamplesToDo); |