aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alc.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-04-01 05:37:54 -0700
committerChris Robinson <[email protected]>2021-04-01 05:37:54 -0700
commitc6dbc487b38b9f46326bed35f80efa3d35218cd4 (patch)
treef857087ea6115ed7e66624a81a2f99bef9736f7d /alc/alc.cpp
parente4570189211c3c0fef6b8c7a3cb1eae3a3d32cb3 (diff)
Rename Uhj2Encoder to UhjEncoder
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r--alc/alc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp
index d5963d24..95bd5af4 100644
--- a/alc/alc.cpp
+++ b/alc/alc.cpp
@@ -1889,7 +1889,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const int *attrList)
return ALC_NO_ERROR;
device->AvgSpeakerDist = 0.0f;
- device->Uhj_Encoder = nullptr;
+ device->mUhjEncoder = nullptr;
device->AmbiDecoder = nullptr;
device->Bs2b = nullptr;
device->PostProcess = nullptr;
@@ -2000,8 +2000,8 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const int *attrList)
device->AuxiliaryEffectSlotMax, device->NumAuxSends);
nanoseconds::rep sample_delay{0};
- if(device->Uhj_Encoder)
- sample_delay += Uhj2Encoder::sFilterDelay;
+ if(device->mUhjEncoder)
+ sample_delay += UhjEncoder::sFilterDelay;
if(device->mHrtfState)
sample_delay += HrtfDirectDelay;
if(auto *ambidec = device->AmbiDecoder.get())