From 540315b07c086f4c9af1c632e7464433332de4a8 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 15 Jun 2020 02:05:10 -0700 Subject: Handle the front stablizer with the B-Format decoder --- alc/alcmain.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'alc/alcmain.h') 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 { using PostProc = void(ALCdevice::*)(const size_t SamplesToDo); PostProc PostProcess{nullptr}; - std::unique_ptr Stablizer; - std::unique_ptr Limiter; /* Delay buffers used to compensate for speaker distances. */ @@ -347,6 +344,7 @@ struct ALCdevice : public al::intrusive_ref { 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); -- cgit v1.2.3