diff options
Diffstat (limited to 'core/voice.cpp')
-rw-r--r-- | core/voice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/voice.cpp b/core/voice.cpp index ae8582da..8d6737ca 100644 --- a/core/voice.cpp +++ b/core/voice.cpp @@ -856,7 +856,7 @@ void Voice::prepare(DeviceBase *device) mDecoderPadding = 0; if(mFmtChannels == FmtSuperStereo) { - switch(UhjQuality) + switch(UhjDecodeQuality) { case UhjQualityType::IIR: mDecoder = std::make_unique<UhjStereoDecoderIIR>(); @@ -874,7 +874,7 @@ void Voice::prepare(DeviceBase *device) } else if(IsUHJ(mFmtChannels)) { - switch(UhjQuality) + switch(UhjDecodeQuality) { case UhjQualityType::IIR: mDecoder = std::make_unique<UhjDecoderIIR>(); |