diff options
| author | LAGonauta <lagonauta@gmail.com> | 2019-06-15 08:36:47 -0300 |
|---|---|---|
| committer | LAGonauta <lagonauta@gmail.com> | 2019-10-22 22:55:59 -0300 |
| commit | 2ff646b79657f794390ff993b323b7b378ab08e5 (patch) | |
| tree | fb23b760d0927122e1b027fc5ec8cfef9d908b09 /Source/Core/AudioCommon/PulseAudioStream.cpp | |
| parent | 3c9eb37381d23ae63f975a637a4b362b44fffc49 (diff) | |
DSP must be set to LLE to select the decoder
Diffstat (limited to 'Source/Core/AudioCommon/PulseAudioStream.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/PulseAudioStream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/PulseAudioStream.cpp b/Source/Core/AudioCommon/PulseAudioStream.cpp index e480ed9e6e..3d05cc610b 100644 --- a/Source/Core/AudioCommon/PulseAudioStream.cpp +++ b/Source/Core/AudioCommon/PulseAudioStream.cpp @@ -19,7 +19,7 @@ PulseAudio::PulseAudio() = default; bool PulseAudio::Init() { - m_stereo = !SConfig::GetInstance().bDPL2Decoder; + m_stereo = !SConfig::GetInstance().bDPL2Decoder || SConfig::GetInstance().bDSPHLE; m_channels = m_stereo ? 2 : 6; // will tell PA we use a Stereo or 5.0 channel setup NOTICE_LOG(AUDIO, "PulseAudio backend using %d channels", m_channels); |
