mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-22 23:05:29 +00:00
Merge pull request #79 from jacquesh/wasapi-device-error-handling
WASAPI: Correctly handle no input or output devices instead of crashing.
This commit is contained in:
commit
c2df644493
11
src/wasapi.c
11
src/wasapi.c
|
@ -25,6 +25,9 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
// Some HRESULT values are not defined by the windows headers
|
||||
#define E_NOTFOUND 0x80070490
|
||||
|
||||
#ifdef __cplusplus
|
||||
// In C++ mode, IsEqualGUID() takes its arguments by reference
|
||||
#define IS_EQUAL_GUID(a, b) IsEqualGUID(*(a), *(b))
|
||||
|
@ -666,9 +669,12 @@ static int refresh_devices(struct SoundIoPrivate *si) {
|
|||
if (FAILED(hr = IMMDeviceEnumerator_GetDefaultAudioEndpoint(siw->device_enumerator, eRender,
|
||||
eMultimedia, &rd.default_render_device)))
|
||||
{
|
||||
if(hr != E_NOTFOUND) {
|
||||
deinit_refresh_devices(&rd);
|
||||
return SoundIoErrorOpeningDevice;
|
||||
}
|
||||
}
|
||||
if(rd.default_render_device) {
|
||||
if (rd.lpwstr) {
|
||||
CoTaskMemFree(rd.lpwstr);
|
||||
rd.lpwstr = NULL;
|
||||
|
@ -681,14 +687,18 @@ static int refresh_devices(struct SoundIoPrivate *si) {
|
|||
deinit_refresh_devices(&rd);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (FAILED(hr = IMMDeviceEnumerator_GetDefaultAudioEndpoint(siw->device_enumerator, eCapture,
|
||||
eMultimedia, &rd.default_capture_device)))
|
||||
{
|
||||
if(hr != E_NOTFOUND) {
|
||||
deinit_refresh_devices(&rd);
|
||||
return SoundIoErrorOpeningDevice;
|
||||
}
|
||||
}
|
||||
if(rd.default_capture_device) {
|
||||
if (rd.lpwstr) {
|
||||
CoTaskMemFree(rd.lpwstr);
|
||||
rd.lpwstr = NULL;
|
||||
|
@ -701,6 +711,7 @@ static int refresh_devices(struct SoundIoPrivate *si) {
|
|||
deinit_refresh_devices(&rd);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (FAILED(hr = IMMDeviceEnumerator_EnumAudioEndpoints(siw->device_enumerator,
|
||||
|
|
Loading…
Reference in a new issue