diff options
author | Chris Robinson <[email protected]> | 2022-10-21 23:33:06 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-10-21 23:33:06 -0700 |
commit | 7a91637d483210404935fc0b859bc886097a058e (patch) | |
tree | 44c0b3a28999be552953ef7bf36ab38832e8d448 /core/voice.cpp | |
parent | ee40a2e7e4867a769765d447a15ac88832eb8aa0 (diff) |
Add separate filter options for UHJ encoding and decoding
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>(); |