We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ef1069 commit 9cca93fCopy full SHA for 9cca93f
www/inc/audio.php
@@ -270,9 +270,13 @@ function updDspAndBtInConfs($cardNum, $outputMode) {
270
}
271
272
// Bluetooth config (inbound)
273
- // NOTE: bluealsaaplay.conf AUDIODEV=_audioout or plughw depending on Bluetooth Config, ALSA output mode
274
if ($_SESSION['peppy_display'] == '1') {
275
- $alsaDevice = 'peppy';
+ if ($_SESSION['camilladsp'] != 'off') {
+ $alsaDevice = 'camilladsp';
276
+ } else {
277
+ $alsaDevice = 'peppy';
278
+ }
279
+ // AUDIODEV=_audioout or plughw depending on Bluetooth Config, ALSA output mode
280
} else if ($_SESSION['alsa_output_mode_bt'] == 'plughw') {
281
$alsaDevice = $outputMode == 'iec958' ? getAlsaIEC958Device() : 'plughw' . ':' . $cardNum . ',0';
282
} else {
0 commit comments