Fix possible crash when switching audio device on WASAPI driver
This commit is contained in:
parent
db26c1205c
commit
10a4925159
1 changed files with 3 additions and 2 deletions
|
@ -65,7 +65,6 @@ const IID IID_IAudioCaptureClient = __uuidof(IAudioCaptureClient);
|
|||
|
||||
#define CAPTURE_BUFFER_CHANNELS 2
|
||||
|
||||
static StringName capture_device_id;
|
||||
static bool default_render_device_changed = false;
|
||||
static bool default_capture_device_changed = false;
|
||||
|
||||
|
@ -128,7 +127,6 @@ public:
|
|||
default_render_device_changed = true;
|
||||
} else if (flow == eCapture) {
|
||||
default_capture_device_changed = true;
|
||||
capture_device_id = String(pwstrDeviceId);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -659,6 +657,9 @@ void AudioDriverWASAPI::thread_func(void *p_udata) {
|
|||
if (err == OK) {
|
||||
ad->start();
|
||||
}
|
||||
|
||||
avail_frames = 0;
|
||||
write_ofs = 0;
|
||||
}
|
||||
|
||||
if (ad->audio_input.active) {
|
||||
|
|
Loading…
Reference in a new issue