Browse Source

[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 <shinmegumi@eden-emu.dev>
pull/329/head
Shinmegumi 7 months ago
committed by crueter
parent
commit
32b8aec85a
  1. 2
      src/audio_core/sink/cubeb_sink.cpp

2
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;
}

Loading…
Cancel
Save