Workaround for RtAudio Exception when no Input are connected on MIC IN on some computer

Issue reproduced with Windows11 Pro + ROG CROSSHAIR X670E HERO
Workaround for RtAudio just add try/catch and log the error but allow to start SDR++
pull/1114/head
Benjamin Vernoux 2023-07-02 16:44:47 +02:00
rodzic 8d05c1e181
commit 6cd09f9b60
1 zmienionych plików z 13 dodań i 9 usunięć

Wyświetl plik

@ -45,6 +45,7 @@ public:
int count = audio.getDeviceCount();
RtAudio::DeviceInfo info;
for (int i = 0; i < count; i++) {
try {
info = audio.getDeviceInfo(i);
if (!info.probed) { continue; }
if (info.outputChannels == 0) { continue; }
@ -54,7 +55,10 @@ public:
txtDevList += info.name;
txtDevList += '\0';
}
catch (std::exception e) {
flog::error("AudioSinkModule Error getting audio device info: {0}", e.what());
}
}
selectByName(device);
}