From 32b8aec85aa6dbc9a3f0fcf09f84a8e1754c8ee3 Mon Sep 17 00:00:00 2001 From: Shinmegumi Date: Wed, 27 Aug 2025 04:26:14 +0200 Subject: [PATCH] [audio] Force Cubeb to Stereo even if more than 2 channels Force cubeb to stereo just to see if this makes any difference for EoW on Windows. Will test other changes after this. Signed-off-by: Shinmegumi --- src/audio_core/sink/cubeb_sink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio_core/sink/cubeb_sink.cpp b/src/audio_core/sink/cubeb_sink.cpp index a33162b806..87ad6dfb75 100644 --- a/src/audio_core/sink/cubeb_sink.cpp +++ b/src/audio_core/sink/cubeb_sink.cpp @@ -62,7 +62,7 @@ public: params.layout = CUBEB_LAYOUT_STEREO; break; case 6: - params.layout = CUBEB_LAYOUT_3F2_LFE; + params.layout = CUBEB_LAYOUT_STEREO; break; }