| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163 |
- #include "enum-wasapi.hpp"
- #include <obs-module.h>
- #include <obs.h>
- #include <util/platform.h>
- #include <util/windows/HRError.hpp>
- #include <util/windows/ComPtr.hpp>
- #include <util/windows/WinHandle.hpp>
- #include <util/windows/CoTaskMemPtr.hpp>
- #include <util/windows/win-version.h>
- #include <util/threading.h>
- #include <util/util_uint64.h>
- #include <atomic>
- #include <cinttypes>
- #include <avrt.h>
- #include <RTWorkQ.h>
- using namespace std;
- #define OPT_DEVICE_ID "device_id"
- #define OPT_USE_DEVICE_TIMING "use_device_timing"
- static void GetWASAPIDefaults(obs_data_t *settings);
- #define OBS_KSAUDIO_SPEAKER_4POINT1 \
- (KSAUDIO_SPEAKER_SURROUND | SPEAKER_LOW_FREQUENCY)
- typedef HRESULT(STDAPICALLTYPE *PFN_RtwqUnlockWorkQueue)(DWORD);
- typedef HRESULT(STDAPICALLTYPE *PFN_RtwqLockSharedWorkQueue)(PCWSTR usageClass,
- LONG basePriority,
- DWORD *taskId,
- DWORD *id);
- typedef HRESULT(STDAPICALLTYPE *PFN_RtwqCreateAsyncResult)(IUnknown *,
- IRtwqAsyncCallback *,
- IUnknown *,
- IRtwqAsyncResult **);
- typedef HRESULT(STDAPICALLTYPE *PFN_RtwqPutWorkItem)(DWORD, LONG,
- IRtwqAsyncResult *);
- typedef HRESULT(STDAPICALLTYPE *PFN_RtwqPutWaitingWorkItem)(HANDLE, LONG,
- IRtwqAsyncResult *,
- RTWQWORKITEM_KEY *);
- class ARtwqAsyncCallback : public IRtwqAsyncCallback {
- protected:
- ARtwqAsyncCallback(void *source) : source(source) {}
- public:
- STDMETHOD_(ULONG, AddRef)() { return ++refCount; }
- STDMETHOD_(ULONG, Release)() { return --refCount; }
- STDMETHOD(QueryInterface)(REFIID riid, void **ppvObject)
- {
- HRESULT hr = E_NOINTERFACE;
- if (riid == __uuidof(IRtwqAsyncCallback) ||
- riid == __uuidof(IUnknown)) {
- *ppvObject = this;
- AddRef();
- hr = S_OK;
- } else {
- *ppvObject = NULL;
- }
- return hr;
- }
- STDMETHOD(GetParameters)
- (DWORD *pdwFlags, DWORD *pdwQueue)
- {
- *pdwFlags = 0;
- *pdwQueue = queue_id;
- return S_OK;
- }
- STDMETHOD(Invoke)
- (IRtwqAsyncResult *) override = 0;
- DWORD GetQueueId() const { return queue_id; }
- void SetQueueId(DWORD id) { queue_id = id; }
- protected:
- std::atomic<ULONG> refCount = 1;
- void *source;
- DWORD queue_id = 0;
- };
- class WASAPISource {
- ComPtr<IMMNotificationClient> notify;
- ComPtr<IMMDeviceEnumerator> enumerator;
- ComPtr<IAudioClient> client;
- ComPtr<IAudioCaptureClient> capture;
- obs_source_t *source;
- wstring default_id;
- string device_id;
- string device_name;
- PFN_RtwqUnlockWorkQueue rtwq_unlock_work_queue = NULL;
- PFN_RtwqLockSharedWorkQueue rtwq_lock_shared_work_queue = NULL;
- PFN_RtwqCreateAsyncResult rtwq_create_async_result = NULL;
- PFN_RtwqPutWorkItem rtwq_put_work_item = NULL;
- PFN_RtwqPutWaitingWorkItem rtwq_put_waiting_work_item = NULL;
- bool rtwq_supported = false;
- const bool isInputDevice;
- std::atomic<bool> useDeviceTiming = false;
- std::atomic<bool> isDefaultDevice = false;
- bool previouslyFailed = false;
- WinHandle reconnectThread;
- class CallbackStartCapture : public ARtwqAsyncCallback {
- public:
- CallbackStartCapture(WASAPISource *source)
- : ARtwqAsyncCallback(source)
- {
- }
- STDMETHOD(Invoke)
- (IRtwqAsyncResult *) override
- {
- ((WASAPISource *)source)->OnStartCapture();
- return S_OK;
- }
- } startCapture;
- ComPtr<IRtwqAsyncResult> startCaptureAsyncResult;
- class CallbackSampleReady : public ARtwqAsyncCallback {
- public:
- CallbackSampleReady(WASAPISource *source)
- : ARtwqAsyncCallback(source)
- {
- }
- STDMETHOD(Invoke)
- (IRtwqAsyncResult *) override
- {
- ((WASAPISource *)source)->OnSampleReady();
- return S_OK;
- }
- } sampleReady;
- ComPtr<IRtwqAsyncResult> sampleReadyAsyncResult;
- class CallbackRestart : public ARtwqAsyncCallback {
- public:
- CallbackRestart(WASAPISource *source)
- : ARtwqAsyncCallback(source)
- {
- }
- STDMETHOD(Invoke)
- (IRtwqAsyncResult *) override
- {
- ((WASAPISource *)source)->OnRestart();
- return S_OK;
- }
- } restart;
- ComPtr<IRtwqAsyncResult> restartAsyncResult;
- WinHandle captureThread;
- WinHandle idleSignal;
- WinHandle stopSignal;
- WinHandle receiveSignal;
- WinHandle restartSignal;
- WinHandle exitSignal;
- WinHandle initSignal;
- DWORD reconnectDuration = 0;
- WinHandle reconnectSignal;
- speaker_layout speakers;
- audio_format format;
- uint32_t sampleRate;
- static DWORD WINAPI ReconnectThread(LPVOID param);
- static DWORD WINAPI CaptureThread(LPVOID param);
- bool ProcessCaptureData();
- void Start();
- void Stop();
- static ComPtr<IMMDevice> InitDevice(IMMDeviceEnumerator *enumerator,
- bool isDefaultDevice,
- bool isInputDevice,
- const string device_id);
- static ComPtr<IAudioClient> InitClient(IMMDevice *device,
- bool isInputDevice,
- enum speaker_layout &speakers,
- enum audio_format &format,
- uint32_t &sampleRate);
- static void InitFormat(const WAVEFORMATEX *wfex,
- enum speaker_layout &speakers,
- enum audio_format &format, uint32_t &sampleRate);
- static void ClearBuffer(IMMDevice *device);
- static ComPtr<IAudioCaptureClient> InitCapture(IAudioClient *client,
- HANDLE receiveSignal);
- void Initialize();
- bool TryInitialize();
- void UpdateSettings(obs_data_t *settings);
- public:
- WASAPISource(obs_data_t *settings, obs_source_t *source_, bool input);
- ~WASAPISource();
- void Update(obs_data_t *settings);
- void SetDefaultDevice(EDataFlow flow, ERole role, LPCWSTR id);
- void OnStartCapture();
- void OnSampleReady();
- void OnRestart();
- };
- class WASAPINotify : public IMMNotificationClient {
- long refs = 0; /* auto-incremented to 1 by ComPtr */
- WASAPISource *source;
- public:
- WASAPINotify(WASAPISource *source_) : source(source_) {}
- STDMETHODIMP_(ULONG) AddRef()
- {
- return (ULONG)os_atomic_inc_long(&refs);
- }
- STDMETHODIMP_(ULONG) STDMETHODCALLTYPE Release()
- {
- long val = os_atomic_dec_long(&refs);
- if (val == 0)
- delete this;
- return (ULONG)val;
- }
- STDMETHODIMP QueryInterface(REFIID riid, void **ptr)
- {
- if (riid == IID_IUnknown) {
- *ptr = (IUnknown *)this;
- } else if (riid == __uuidof(IMMNotificationClient)) {
- *ptr = (IMMNotificationClient *)this;
- } else {
- *ptr = nullptr;
- return E_NOINTERFACE;
- }
- os_atomic_inc_long(&refs);
- return S_OK;
- }
- STDMETHODIMP OnDefaultDeviceChanged(EDataFlow flow, ERole role,
- LPCWSTR id)
- {
- source->SetDefaultDevice(flow, role, id);
- return S_OK;
- }
- STDMETHODIMP OnDeviceAdded(LPCWSTR) { return S_OK; }
- STDMETHODIMP OnDeviceRemoved(LPCWSTR) { return S_OK; }
- STDMETHODIMP OnDeviceStateChanged(LPCWSTR, DWORD) { return S_OK; }
- STDMETHODIMP OnPropertyValueChanged(LPCWSTR, const PROPERTYKEY)
- {
- return S_OK;
- }
- };
- WASAPISource::WASAPISource(obs_data_t *settings, obs_source_t *source_,
- bool input)
- : source(source_),
- isInputDevice(input),
- startCapture(this),
- sampleReady(this),
- restart(this)
- {
- UpdateSettings(settings);
- idleSignal = CreateEvent(nullptr, true, false, nullptr);
- if (!idleSignal.Valid())
- throw "Could not create idle signal";
- stopSignal = CreateEvent(nullptr, true, false, nullptr);
- if (!stopSignal.Valid())
- throw "Could not create stop signal";
- receiveSignal = CreateEvent(nullptr, false, false, nullptr);
- if (!receiveSignal.Valid())
- throw "Could not create receive signal";
- restartSignal = CreateEvent(nullptr, true, false, nullptr);
- if (!restartSignal.Valid())
- throw "Could not create restart signal";
- exitSignal = CreateEvent(nullptr, true, false, nullptr);
- if (!exitSignal.Valid())
- throw "Could not create exit signal";
- initSignal = CreateEvent(nullptr, false, false, nullptr);
- if (!initSignal.Valid())
- throw "Could not create init signal";
- reconnectSignal = CreateEvent(nullptr, false, false, nullptr);
- if (!reconnectSignal.Valid())
- throw "Could not create reconnect signal";
- reconnectThread = CreateThread(
- nullptr, 0, WASAPISource::ReconnectThread, this, 0, nullptr);
- if (!reconnectThread.Valid())
- throw "Failed to create reconnect thread";
- notify = new WASAPINotify(this);
- if (!notify)
- throw "Could not create WASAPINotify";
- HRESULT hr = CoCreateInstance(__uuidof(MMDeviceEnumerator), nullptr,
- CLSCTX_ALL,
- IID_PPV_ARGS(enumerator.Assign()));
- if (FAILED(hr))
- throw HRError("Failed to create enumerator", hr);
- hr = enumerator->RegisterEndpointNotificationCallback(notify);
- if (FAILED(hr))
- throw HRError("Failed to register endpoint callback", hr);
- /* OBS will already load DLL on startup if it exists */
- const HMODULE rtwq_module = GetModuleHandle(L"RTWorkQ.dll");
- // while RTWQ was introduced in Win 8.1, it silently fails
- // to capture Desktop Audio for some reason. Disable for now.
- struct win_version_info win1703 = {};
- win1703.major = 10;
- win1703.minor = 0;
- win1703.build = 15063;
- win1703.revis = 0;
- struct win_version_info ver;
- get_win_ver(&ver);
- if (win_version_compare(&ver, &win1703) >= 0)
- rtwq_supported = rtwq_module != NULL;
- if (rtwq_supported) {
- rtwq_unlock_work_queue =
- (PFN_RtwqUnlockWorkQueue)GetProcAddress(
- rtwq_module, "RtwqUnlockWorkQueue");
- rtwq_lock_shared_work_queue =
- (PFN_RtwqLockSharedWorkQueue)GetProcAddress(
- rtwq_module, "RtwqLockSharedWorkQueue");
- rtwq_create_async_result =
- (PFN_RtwqCreateAsyncResult)GetProcAddress(
- rtwq_module, "RtwqCreateAsyncResult");
- rtwq_put_work_item = (PFN_RtwqPutWorkItem)GetProcAddress(
- rtwq_module, "RtwqPutWorkItem");
- rtwq_put_waiting_work_item =
- (PFN_RtwqPutWaitingWorkItem)GetProcAddress(
- rtwq_module, "RtwqPutWaitingWorkItem");
- try {
- hr = rtwq_create_async_result(nullptr, &startCapture,
- nullptr,
- &startCaptureAsyncResult);
- if (FAILED(hr)) {
- throw HRError(
- "Could not create startCaptureAsyncResult",
- hr);
- }
- hr = rtwq_create_async_result(nullptr, &sampleReady,
- nullptr,
- &sampleReadyAsyncResult);
- if (FAILED(hr)) {
- throw HRError(
- "Could not create sampleReadyAsyncResult",
- hr);
- }
- hr = rtwq_create_async_result(nullptr, &restart,
- nullptr,
- &restartAsyncResult);
- if (FAILED(hr)) {
- throw HRError(
- "Could not create restartAsyncResult",
- hr);
- }
- DWORD taskId = 0;
- DWORD id = 0;
- hr = rtwq_lock_shared_work_queue(L"Capture", 0, &taskId,
- &id);
- if (FAILED(hr)) {
- throw HRError("RtwqLockSharedWorkQueue failed",
- hr);
- }
- startCapture.SetQueueId(id);
- sampleReady.SetQueueId(id);
- restart.SetQueueId(id);
- } catch (HRError &err) {
- blog(LOG_ERROR, "RTWQ setup failed: %s (0x%08X)",
- err.str, err.hr);
- rtwq_supported = false;
- }
- }
- if (!rtwq_supported) {
- captureThread = CreateThread(nullptr, 0,
- WASAPISource::CaptureThread, this,
- 0, nullptr);
- if (!captureThread.Valid()) {
- enumerator->UnregisterEndpointNotificationCallback(
- notify);
- throw "Failed to create capture thread";
- }
- }
- Start();
- }
- void WASAPISource::Start()
- {
- if (rtwq_supported) {
- rtwq_put_work_item(startCapture.GetQueueId(), 0,
- startCaptureAsyncResult);
- } else {
- SetEvent(initSignal);
- }
- }
- void WASAPISource::Stop()
- {
- SetEvent(stopSignal);
- blog(LOG_INFO, "WASAPI: Device '%s' Terminated", device_name.c_str());
- if (rtwq_supported)
- SetEvent(receiveSignal);
- WaitForSingleObject(idleSignal, INFINITE);
- SetEvent(exitSignal);
- WaitForSingleObject(reconnectThread, INFINITE);
- if (rtwq_supported)
- rtwq_unlock_work_queue(sampleReady.GetQueueId());
- else
- WaitForSingleObject(captureThread, INFINITE);
- }
- WASAPISource::~WASAPISource()
- {
- enumerator->UnregisterEndpointNotificationCallback(notify);
- Stop();
- }
- void WASAPISource::UpdateSettings(obs_data_t *settings)
- {
- device_id = obs_data_get_string(settings, OPT_DEVICE_ID);
- useDeviceTiming = obs_data_get_bool(settings, OPT_USE_DEVICE_TIMING);
- isDefaultDevice = _strcmpi(device_id.c_str(), "default") == 0;
- blog(LOG_INFO,
- "[win-wasapi: '%s'] update settings:\n"
- "\tdevice id: %s\n"
- "\tuse device timing: %d",
- obs_source_get_name(source), device_id.c_str(),
- (int)useDeviceTiming);
- }
- void WASAPISource::Update(obs_data_t *settings)
- {
- const string newDevice = obs_data_get_string(settings, OPT_DEVICE_ID);
- const bool restart = newDevice.compare(device_id) != 0;
- UpdateSettings(settings);
- if (restart)
- SetEvent(restartSignal);
- }
- ComPtr<IMMDevice> WASAPISource::InitDevice(IMMDeviceEnumerator *enumerator,
- bool isDefaultDevice,
- bool isInputDevice,
- const string device_id)
- {
- ComPtr<IMMDevice> device;
- if (isDefaultDevice) {
- HRESULT res = enumerator->GetDefaultAudioEndpoint(
- isInputDevice ? eCapture : eRender,
- isInputDevice ? eCommunications : eConsole,
- device.Assign());
- if (FAILED(res))
- throw HRError("Failed GetDefaultAudioEndpoint", res);
- } else {
- wchar_t *w_id;
- os_utf8_to_wcs_ptr(device_id.c_str(), device_id.size(), &w_id);
- if (!w_id)
- throw "Failed to widen device id string";
- const HRESULT res =
- enumerator->GetDevice(w_id, device.Assign());
- bfree(w_id);
- if (FAILED(res))
- throw HRError("Failed to enumerate device", res);
- }
- return device;
- }
- #define BUFFER_TIME_100NS (5 * 10000000)
- ComPtr<IAudioClient> WASAPISource::InitClient(IMMDevice *device,
- bool isInputDevice,
- enum speaker_layout &speakers,
- enum audio_format &format,
- uint32_t &sampleRate)
- {
- ComPtr<IAudioClient> client;
- HRESULT res = device->Activate(__uuidof(IAudioClient), CLSCTX_ALL,
- nullptr, (void **)client.Assign());
- if (FAILED(res))
- throw HRError("Failed to activate client context", res);
- CoTaskMemPtr<WAVEFORMATEX> wfex;
- res = client->GetMixFormat(&wfex);
- if (FAILED(res))
- throw HRError("Failed to get mix format", res);
- InitFormat(wfex, speakers, format, sampleRate);
- DWORD flags = AUDCLNT_STREAMFLAGS_EVENTCALLBACK;
- if (!isInputDevice)
- flags |= AUDCLNT_STREAMFLAGS_LOOPBACK;
- res = client->Initialize(AUDCLNT_SHAREMODE_SHARED, flags,
- BUFFER_TIME_100NS, 0, wfex, nullptr);
- if (FAILED(res))
- throw HRError("Failed to initialize audio client", res);
- return client;
- }
- void WASAPISource::ClearBuffer(IMMDevice *device)
- {
- CoTaskMemPtr<WAVEFORMATEX> wfex;
- HRESULT res;
- LPBYTE buffer;
- UINT32 frames;
- ComPtr<IAudioClient> client;
- res = device->Activate(__uuidof(IAudioClient), CLSCTX_ALL, nullptr,
- (void **)client.Assign());
- if (FAILED(res))
- throw HRError("Failed to activate client context", res);
- res = client->GetMixFormat(&wfex);
- if (FAILED(res))
- throw HRError("Failed to get mix format", res);
- res = client->Initialize(AUDCLNT_SHAREMODE_SHARED, 0, BUFFER_TIME_100NS,
- 0, wfex, nullptr);
- if (FAILED(res))
- throw HRError("Failed to initialize audio client", res);
- /* Silent loopback fix. Prevents audio stream from stopping and */
- /* messing up timestamps and other weird glitches during silence */
- /* by playing a silent sample all over again. */
- res = client->GetBufferSize(&frames);
- if (FAILED(res))
- throw HRError("Failed to get buffer size", res);
- ComPtr<IAudioRenderClient> render;
- res = client->GetService(IID_PPV_ARGS(render.Assign()));
- if (FAILED(res))
- throw HRError("Failed to get render client", res);
- res = render->GetBuffer(frames, &buffer);
- if (FAILED(res))
- throw HRError("Failed to get buffer", res);
- memset(buffer, 0, (size_t)frames * (size_t)wfex->nBlockAlign);
- render->ReleaseBuffer(frames, 0);
- }
- static speaker_layout ConvertSpeakerLayout(DWORD layout, WORD channels)
- {
- switch (layout) {
- case KSAUDIO_SPEAKER_2POINT1:
- return SPEAKERS_2POINT1;
- case KSAUDIO_SPEAKER_SURROUND:
- return SPEAKERS_4POINT0;
- case OBS_KSAUDIO_SPEAKER_4POINT1:
- return SPEAKERS_4POINT1;
- case KSAUDIO_SPEAKER_5POINT1_SURROUND:
- return SPEAKERS_5POINT1;
- case KSAUDIO_SPEAKER_7POINT1_SURROUND:
- return SPEAKERS_7POINT1;
- }
- return (speaker_layout)channels;
- }
- void WASAPISource::InitFormat(const WAVEFORMATEX *wfex,
- enum speaker_layout &speakers,
- enum audio_format &format, uint32_t &sampleRate)
- {
- DWORD layout = 0;
- if (wfex->wFormatTag == WAVE_FORMAT_EXTENSIBLE) {
- WAVEFORMATEXTENSIBLE *ext = (WAVEFORMATEXTENSIBLE *)wfex;
- layout = ext->dwChannelMask;
- }
- /* WASAPI is always float */
- speakers = ConvertSpeakerLayout(layout, wfex->nChannels);
- format = AUDIO_FORMAT_FLOAT;
- sampleRate = wfex->nSamplesPerSec;
- }
- ComPtr<IAudioCaptureClient> WASAPISource::InitCapture(IAudioClient *client,
- HANDLE receiveSignal)
- {
- ComPtr<IAudioCaptureClient> capture;
- HRESULT res = client->GetService(IID_PPV_ARGS(capture.Assign()));
- if (FAILED(res))
- throw HRError("Failed to create capture context", res);
- res = client->SetEventHandle(receiveSignal);
- if (FAILED(res))
- throw HRError("Failed to set event handle", res);
- res = client->Start();
- if (FAILED(res))
- throw HRError("Failed to start capture client", res);
- return capture;
- }
- void WASAPISource::Initialize()
- {
- ComPtr<IMMDevice> device = InitDevice(enumerator, isDefaultDevice,
- isInputDevice, device_id);
- device_name = GetDeviceName(device);
- ResetEvent(receiveSignal);
- ComPtr<IAudioClient> temp_client =
- InitClient(device, isInputDevice, speakers, format, sampleRate);
- if (!isInputDevice)
- ClearBuffer(device);
- ComPtr<IAudioCaptureClient> temp_capture =
- InitCapture(temp_client, receiveSignal);
- client = std::move(temp_client);
- capture = std::move(temp_capture);
- if (rtwq_supported) {
- HRESULT hr = rtwq_put_waiting_work_item(
- receiveSignal, 0, sampleReadyAsyncResult, nullptr);
- if (FAILED(hr)) {
- capture.Clear();
- client.Clear();
- throw HRError("RtwqPutWaitingWorkItem failed", hr);
- }
- hr = rtwq_put_waiting_work_item(restartSignal, 0,
- restartAsyncResult, nullptr);
- if (FAILED(hr)) {
- capture.Clear();
- client.Clear();
- throw HRError("RtwqPutWaitingWorkItem failed", hr);
- }
- }
- blog(LOG_INFO, "WASAPI: Device '%s' [%" PRIu32 " Hz] initialized",
- device_name.c_str(), sampleRate);
- }
- bool WASAPISource::TryInitialize()
- {
- bool success = false;
- try {
- Initialize();
- success = true;
- } catch (HRError &error) {
- if (!previouslyFailed) {
- blog(LOG_WARNING,
- "[WASAPISource::TryInitialize]:[%s] %s: %lX",
- device_name.empty() ? device_id.c_str()
- : device_name.c_str(),
- error.str, error.hr);
- }
- } catch (const char *error) {
- if (!previouslyFailed) {
- blog(LOG_WARNING,
- "[WASAPISource::TryInitialize]:[%s] %s",
- device_name.empty() ? device_id.c_str()
- : device_name.c_str(),
- error);
- }
- }
- previouslyFailed = !success;
- return success;
- }
- DWORD WINAPI WASAPISource::ReconnectThread(LPVOID param)
- {
- os_set_thread_name("win-wasapi: reconnect thread");
- WASAPISource *source = (WASAPISource *)param;
- const HANDLE sigs[] = {
- source->exitSignal,
- source->reconnectSignal,
- };
- bool exit = false;
- while (!exit) {
- const DWORD ret = WaitForMultipleObjects(_countof(sigs), sigs,
- false, INFINITE);
- switch (ret) {
- case WAIT_OBJECT_0:
- exit = true;
- break;
- default:
- assert(ret == (WAIT_OBJECT_0 + 1));
- if (source->reconnectDuration > 0) {
- WaitForSingleObject(source->stopSignal,
- source->reconnectDuration);
- }
- source->Start();
- }
- }
- return 0;
- }
- bool WASAPISource::ProcessCaptureData()
- {
- HRESULT res;
- LPBYTE buffer;
- UINT32 frames;
- DWORD flags;
- UINT64 pos, ts;
- UINT captureSize = 0;
- while (true) {
- res = capture->GetNextPacketSize(&captureSize);
- if (FAILED(res)) {
- if (res != AUDCLNT_E_DEVICE_INVALIDATED)
- blog(LOG_WARNING,
- "[WASAPISource::ProcessCaptureData]"
- " capture->GetNextPacketSize"
- " failed: %lX",
- res);
- return false;
- }
- if (!captureSize)
- break;
- res = capture->GetBuffer(&buffer, &frames, &flags, &pos, &ts);
- if (FAILED(res)) {
- if (res != AUDCLNT_E_DEVICE_INVALIDATED)
- blog(LOG_WARNING,
- "[WASAPISource::ProcessCaptureData]"
- " capture->GetBuffer"
- " failed: %lX",
- res);
- return false;
- }
- obs_source_audio data = {};
- data.data[0] = (const uint8_t *)buffer;
- data.frames = (uint32_t)frames;
- data.speakers = speakers;
- data.samples_per_sec = sampleRate;
- data.format = format;
- data.timestamp = useDeviceTiming ? ts * 100 : os_gettime_ns();
- if (!useDeviceTiming)
- data.timestamp -= util_mul_div64(frames, 1000000000ULL,
- sampleRate);
- obs_source_output_audio(source, &data);
- capture->ReleaseBuffer(frames);
- }
- return true;
- }
- #define RECONNECT_INTERVAL 3000
- DWORD WINAPI WASAPISource::CaptureThread(LPVOID param)
- {
- os_set_thread_name("win-wasapi: capture thread");
- const HRESULT hr = CoInitializeEx(0, COINIT_MULTITHREADED);
- const bool com_initialized = SUCCEEDED(hr);
- if (!com_initialized) {
- blog(LOG_ERROR,
- "[WASAPISource::CaptureThread]"
- " CoInitializeEx failed: 0x%08X",
- hr);
- }
- DWORD unused = 0;
- const HANDLE handle = AvSetMmThreadCharacteristics(L"Audio", &unused);
- WASAPISource *source = (WASAPISource *)param;
- const HANDLE inactive_sigs[] = {
- source->exitSignal,
- source->stopSignal,
- source->initSignal,
- };
- const HANDLE active_sigs[] = {
- source->exitSignal,
- source->stopSignal,
- source->receiveSignal,
- source->restartSignal,
- };
- DWORD sig_count = _countof(inactive_sigs);
- const HANDLE *sigs = inactive_sigs;
- bool exit = false;
- while (!exit) {
- bool idle = false;
- bool stop = false;
- bool reconnect = false;
- do {
- /* Windows 7 does not seem to wake up for LOOPBACK */
- const DWORD dwMilliseconds = ((sigs == active_sigs) &&
- !source->isInputDevice)
- ? 10
- : INFINITE;
- const DWORD ret = WaitForMultipleObjects(
- sig_count, sigs, false, dwMilliseconds);
- switch (ret) {
- case WAIT_OBJECT_0: {
- exit = true;
- stop = true;
- idle = true;
- break;
- }
- case WAIT_OBJECT_0 + 1:
- stop = true;
- idle = true;
- break;
- case WAIT_OBJECT_0 + 2:
- case WAIT_TIMEOUT:
- if (sigs == inactive_sigs) {
- assert(ret != WAIT_TIMEOUT);
- if (source->TryInitialize()) {
- sig_count =
- _countof(active_sigs);
- sigs = active_sigs;
- } else {
- blog(LOG_INFO,
- "WASAPI: Device '%s' failed to start",
- source->device_id.c_str());
- stop = true;
- reconnect = true;
- source->reconnectDuration =
- RECONNECT_INTERVAL;
- }
- } else {
- stop = !source->ProcessCaptureData();
- if (stop) {
- blog(LOG_INFO,
- "Device '%s' invalidated. Retrying",
- source->device_name
- .c_str());
- stop = true;
- reconnect = true;
- source->reconnectDuration =
- RECONNECT_INTERVAL;
- }
- }
- break;
- default:
- assert(sigs == active_sigs);
- assert(ret == WAIT_OBJECT_0 + 3);
- stop = true;
- reconnect = true;
- source->reconnectDuration = 0;
- ResetEvent(source->restartSignal);
- }
- } while (!stop);
- sig_count = _countof(inactive_sigs);
- sigs = inactive_sigs;
- if (source->client) {
- source->client->Stop();
- source->capture.Clear();
- source->client.Clear();
- }
- if (idle) {
- SetEvent(source->idleSignal);
- } else if (reconnect) {
- blog(LOG_INFO, "Device '%s' invalidated. Retrying",
- source->device_name.c_str());
- SetEvent(source->reconnectSignal);
- }
- }
- if (handle)
- AvRevertMmThreadCharacteristics(handle);
- if (com_initialized)
- CoUninitialize();
- return 0;
- }
- void WASAPISource::SetDefaultDevice(EDataFlow flow, ERole role, LPCWSTR id)
- {
- if (!isDefaultDevice)
- return;
- const EDataFlow expectedFlow = isInputDevice ? eCapture : eRender;
- const ERole expectedRole = isInputDevice ? eCommunications : eConsole;
- if (flow != expectedFlow || role != expectedRole)
- return;
- if (id) {
- if (default_id.compare(id) == 0)
- return;
- default_id = id;
- } else {
- if (default_id.empty())
- return;
- default_id.clear();
- }
- blog(LOG_INFO, "WASAPI: Default %s device changed",
- isInputDevice ? "input" : "output");
- SetEvent(restartSignal);
- }
- void WASAPISource::OnStartCapture()
- {
- const DWORD ret = WaitForSingleObject(stopSignal, 0);
- switch (ret) {
- case WAIT_OBJECT_0:
- SetEvent(idleSignal);
- break;
- default:
- assert(ret == WAIT_TIMEOUT);
- if (!TryInitialize()) {
- blog(LOG_INFO, "WASAPI: Device '%s' failed to start",
- device_id.c_str());
- reconnectDuration = RECONNECT_INTERVAL;
- SetEvent(reconnectSignal);
- }
- }
- }
- void WASAPISource::OnSampleReady()
- {
- bool stop = false;
- bool reconnect = false;
- if (!ProcessCaptureData()) {
- stop = true;
- reconnect = true;
- reconnectDuration = RECONNECT_INTERVAL;
- }
- if (WaitForSingleObject(restartSignal, 0) == WAIT_OBJECT_0) {
- stop = true;
- reconnect = true;
- reconnectDuration = 0;
- ResetEvent(restartSignal);
- rtwq_put_waiting_work_item(restartSignal, 0, restartAsyncResult,
- nullptr);
- }
- if (WaitForSingleObject(stopSignal, 0) == WAIT_OBJECT_0) {
- stop = true;
- reconnect = false;
- }
- if (!stop) {
- if (FAILED(rtwq_put_waiting_work_item(receiveSignal, 0,
- sampleReadyAsyncResult,
- nullptr))) {
- blog(LOG_ERROR,
- "Could not requeue sample receive work");
- stop = true;
- reconnect = true;
- reconnectDuration = RECONNECT_INTERVAL;
- }
- }
- if (stop) {
- client->Stop();
- capture.Clear();
- client.Clear();
- if (reconnect) {
- blog(LOG_INFO, "Device '%s' invalidated. Retrying",
- device_name.c_str());
- SetEvent(reconnectSignal);
- } else {
- SetEvent(idleSignal);
- }
- }
- }
- void WASAPISource::OnRestart()
- {
- SetEvent(receiveSignal);
- }
- /* ------------------------------------------------------------------------- */
- static const char *GetWASAPIInputName(void *)
- {
- return obs_module_text("AudioInput");
- }
- static const char *GetWASAPIOutputName(void *)
- {
- return obs_module_text("AudioOutput");
- }
- static void GetWASAPIDefaultsInput(obs_data_t *settings)
- {
- obs_data_set_default_string(settings, OPT_DEVICE_ID, "default");
- obs_data_set_default_bool(settings, OPT_USE_DEVICE_TIMING, false);
- }
- static void GetWASAPIDefaultsOutput(obs_data_t *settings)
- {
- obs_data_set_default_string(settings, OPT_DEVICE_ID, "default");
- obs_data_set_default_bool(settings, OPT_USE_DEVICE_TIMING, true);
- }
- static void *CreateWASAPISource(obs_data_t *settings, obs_source_t *source,
- bool input)
- {
- try {
- return new WASAPISource(settings, source, input);
- } catch (const char *error) {
- blog(LOG_ERROR, "[CreateWASAPISource] %s", error);
- }
- return nullptr;
- }
- static void *CreateWASAPIInput(obs_data_t *settings, obs_source_t *source)
- {
- return CreateWASAPISource(settings, source, true);
- }
- static void *CreateWASAPIOutput(obs_data_t *settings, obs_source_t *source)
- {
- return CreateWASAPISource(settings, source, false);
- }
- static void DestroyWASAPISource(void *obj)
- {
- delete static_cast<WASAPISource *>(obj);
- }
- static void UpdateWASAPISource(void *obj, obs_data_t *settings)
- {
- static_cast<WASAPISource *>(obj)->Update(settings);
- }
- static obs_properties_t *GetWASAPIProperties(bool input)
- {
- obs_properties_t *props = obs_properties_create();
- vector<AudioDeviceInfo> devices;
- obs_property_t *device_prop = obs_properties_add_list(
- props, OPT_DEVICE_ID, obs_module_text("Device"),
- OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_STRING);
- GetWASAPIAudioDevices(devices, input);
- if (devices.size())
- obs_property_list_add_string(
- device_prop, obs_module_text("Default"), "default");
- for (size_t i = 0; i < devices.size(); i++) {
- AudioDeviceInfo &device = devices[i];
- obs_property_list_add_string(device_prop, device.name.c_str(),
- device.id.c_str());
- }
- obs_properties_add_bool(props, OPT_USE_DEVICE_TIMING,
- obs_module_text("UseDeviceTiming"));
- return props;
- }
- static obs_properties_t *GetWASAPIPropertiesInput(void *)
- {
- return GetWASAPIProperties(true);
- }
- static obs_properties_t *GetWASAPIPropertiesOutput(void *)
- {
- return GetWASAPIProperties(false);
- }
- void RegisterWASAPIInput()
- {
- obs_source_info info = {};
- info.id = "wasapi_input_capture";
- info.type = OBS_SOURCE_TYPE_INPUT;
- info.output_flags = OBS_SOURCE_AUDIO | OBS_SOURCE_DO_NOT_DUPLICATE;
- info.get_name = GetWASAPIInputName;
- info.create = CreateWASAPIInput;
- info.destroy = DestroyWASAPISource;
- info.update = UpdateWASAPISource;
- info.get_defaults = GetWASAPIDefaultsInput;
- info.get_properties = GetWASAPIPropertiesInput;
- info.icon_type = OBS_ICON_TYPE_AUDIO_INPUT;
- obs_register_source(&info);
- }
- void RegisterWASAPIOutput()
- {
- obs_source_info info = {};
- info.id = "wasapi_output_capture";
- info.type = OBS_SOURCE_TYPE_INPUT;
- info.output_flags = OBS_SOURCE_AUDIO | OBS_SOURCE_DO_NOT_DUPLICATE |
- OBS_SOURCE_DO_NOT_SELF_MONITOR;
- info.get_name = GetWASAPIOutputName;
- info.create = CreateWASAPIOutput;
- info.destroy = DestroyWASAPISource;
- info.update = UpdateWASAPISource;
- info.get_defaults = GetWASAPIDefaultsOutput;
- info.get_properties = GetWASAPIPropertiesOutput;
- info.icon_type = OBS_ICON_TYPE_AUDIO_OUTPUT;
- obs_register_source(&info);
- }
|