2019-11-03 19:53:08 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2019-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2019-11-03 19:53:08 +01:00
|
|
|
*
|
|
|
|
* Strawberry is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Strawberry is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2020-09-19 02:06:15 +02:00
|
|
|
#include <windows.h>
|
2019-11-03 19:53:08 +01:00
|
|
|
#include <initguid.h>
|
|
|
|
#include <devpkey.h>
|
2021-08-24 17:52:08 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
# include <functiondiscoverykeys.h>
|
|
|
|
#else
|
|
|
|
# include <functiondiscoverykeys_devpkey.h>
|
|
|
|
#endif
|
2019-11-03 19:53:08 +01:00
|
|
|
#include <mmdeviceapi.h>
|
|
|
|
|
|
|
|
#include <QList>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "mmdevicefinder.h"
|
|
|
|
#include "core/logging.h"
|
|
|
|
|
2021-08-24 17:52:08 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
DEFINE_GUID(IID_IMMDeviceEnumerator, 0xa95664d2, 0x9614, 0x4f35, 0xa7, 0x46, 0xde, 0x8d, 0xb6, 0x36, 0x17, 0xe6);
|
|
|
|
DEFINE_GUID(CLSID_MMDeviceEnumerator, 0xbcde0395, 0xe52f, 0x467c, 0x8e, 0x3d, 0xc4, 0x57, 0x92, 0x91, 0x69, 0x2e);
|
|
|
|
#endif
|
|
|
|
|
2019-11-03 19:53:08 +01:00
|
|
|
MMDeviceFinder::MMDeviceFinder() : DeviceFinder("mmdevice", { "wasapisink" }) {}
|
|
|
|
|
|
|
|
QList<DeviceFinder::Device> MMDeviceFinder::ListDevices() {
|
|
|
|
|
2020-10-15 16:06:07 +02:00
|
|
|
HRESULT hr_coinit = CoInitializeEx(NULL, COINIT_MULTITHREADED);
|
2019-11-03 19:53:08 +01:00
|
|
|
|
|
|
|
QList<Device> devices;
|
|
|
|
Device default_device;
|
|
|
|
default_device.description = "Default device";
|
|
|
|
default_device.iconname = GuessIconName(default_device.description);
|
|
|
|
devices.append(default_device);
|
|
|
|
|
2020-10-15 16:06:07 +02:00
|
|
|
IMMDeviceEnumerator *enumerator = nullptr;
|
|
|
|
HRESULT hr = CoCreateInstance(CLSID_MMDeviceEnumerator, nullptr, CLSCTX_ALL, IID_IMMDeviceEnumerator, (void**)&enumerator);
|
|
|
|
if (hr == S_OK) {
|
|
|
|
IMMDeviceCollection *collection = nullptr;
|
|
|
|
hr = enumerator->EnumAudioEndpoints(eRender, DEVICE_STATE_ACTIVE, &collection);
|
|
|
|
if (hr == S_OK) {
|
|
|
|
UINT count;
|
|
|
|
hr = collection->GetCount(&count);
|
|
|
|
if (hr == S_OK) {
|
2021-08-23 21:21:08 +02:00
|
|
|
for (ULONG i = 0; i < count; i++) {
|
2020-10-15 16:06:07 +02:00
|
|
|
IMMDevice *endpoint = nullptr;
|
|
|
|
hr = collection->Item(i, &endpoint);
|
|
|
|
if (hr == S_OK) {
|
|
|
|
LPWSTR pwszid = nullptr;
|
|
|
|
hr = endpoint->GetId(&pwszid);
|
|
|
|
if (hr == S_OK) {
|
|
|
|
IPropertyStore *props = nullptr;
|
|
|
|
hr = endpoint->OpenPropertyStore(STGM_READ, &props);
|
|
|
|
if (hr == S_OK) {
|
|
|
|
PROPVARIANT var_name;
|
|
|
|
PropVariantInit(&var_name);
|
|
|
|
hr = props->GetValue(PKEY_Device_FriendlyName, &var_name);
|
|
|
|
if (hr == S_OK) {
|
|
|
|
Device device;
|
|
|
|
device.description = QString::fromWCharArray(var_name.pwszVal);
|
|
|
|
device.iconname = GuessIconName(device.description);
|
|
|
|
device.value = QString::fromStdWString(pwszid);
|
|
|
|
devices.append(device);
|
|
|
|
PropVariantClear(&var_name);
|
|
|
|
}
|
2020-10-17 03:19:13 +02:00
|
|
|
else {
|
|
|
|
qLog(Error) << "IPropertyStore::GetValue failed." << Qt::hex << DWORD(hr);
|
|
|
|
}
|
2020-10-15 16:06:07 +02:00
|
|
|
props->Release();
|
|
|
|
}
|
2020-10-17 03:19:13 +02:00
|
|
|
else {
|
|
|
|
qLog(Error) << "IPropertyStore::OpenPropertyStore failed." << Qt::hex << DWORD(hr);
|
|
|
|
}
|
2020-10-15 16:06:07 +02:00
|
|
|
CoTaskMemFree(pwszid);
|
|
|
|
}
|
2020-10-17 03:19:13 +02:00
|
|
|
else {
|
|
|
|
qLog(Error) << "IMMDevice::GetId failed." << Qt::hex << DWORD(hr);
|
|
|
|
}
|
2020-10-15 16:06:07 +02:00
|
|
|
endpoint->Release();
|
|
|
|
}
|
2020-10-17 03:19:13 +02:00
|
|
|
else {
|
|
|
|
qLog(Error) << "IMMDeviceCollection::Item failed." << Qt::hex << DWORD(hr);
|
|
|
|
}
|
2020-10-15 16:06:07 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-17 03:19:13 +02:00
|
|
|
else {
|
|
|
|
qLog(Error) << "IMMDeviceCollection::GetCount failed." << Qt::hex << DWORD(hr);
|
|
|
|
}
|
2020-10-15 16:06:07 +02:00
|
|
|
collection->Release();
|
2019-11-03 19:53:08 +01:00
|
|
|
}
|
2020-10-17 03:19:13 +02:00
|
|
|
else {
|
|
|
|
qLog(Error) << "EnumAudioEndpoints failed." << Qt::hex << DWORD(hr);
|
|
|
|
}
|
2020-10-15 16:06:07 +02:00
|
|
|
enumerator->Release();
|
2019-11-03 19:53:08 +01:00
|
|
|
}
|
2020-10-17 03:19:13 +02:00
|
|
|
else {
|
|
|
|
qLog(Error) << "CoCreateInstance failed." << Qt::hex << DWORD(hr);
|
|
|
|
}
|
2020-10-15 16:06:07 +02:00
|
|
|
|
|
|
|
if (hr_coinit == S_OK || hr_coinit == S_FALSE) CoUninitialize();
|
2019-11-03 19:53:08 +01:00
|
|
|
|
|
|
|
return devices;
|
|
|
|
|
|
|
|
}
|