diff options
author | Chris Robinson <[email protected]> | 2023-12-21 00:36:28 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-12-21 00:36:28 -0800 |
commit | 8fad6a395c21e6d285590c34eb81f5af492cf4ac (patch) | |
tree | c1919c2bb1e8bba7552c48870d2a2cf6b0b38ce8 /alc/backends | |
parent | e349b63335e9512a8434d72368520315c7b15197 (diff) |
Disable rt-mix by default for PipeWire
Diffstat (limited to 'alc/backends')
-rw-r--r-- | alc/backends/pipewire.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/backends/pipewire.cpp b/alc/backends/pipewire.cpp index c8264796..d3ab8984 100644 --- a/alc/backends/pipewire.cpp +++ b/alc/backends/pipewire.cpp @@ -1688,7 +1688,7 @@ bool PipeWirePlayback::reset() pw_stream_flags flags{PW_STREAM_FLAG_AUTOCONNECT | PW_STREAM_FLAG_INACTIVE | PW_STREAM_FLAG_MAP_BUFFERS}; - if(GetConfigValueBool(mDevice->DeviceName.c_str(), "pipewire", "rt-mix", true)) + if(GetConfigValueBool(mDevice->DeviceName.c_str(), "pipewire", "rt-mix", false)) flags |= PW_STREAM_FLAG_RT_PROCESS; if(int res{pw_stream_connect(mStream.get(), PW_DIRECTION_OUTPUT, PwIdAny, flags, ¶ms, 1)}) throw al::backend_exception{al::backend_error::DeviceError, |