2 * Copyright 2009 Maarten Lankhorst
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #define NONAMELESSUNION
29 #include "wine/debug.h"
30 #include "wine/unicode.h"
33 #include "mmdeviceapi.h"
36 #include "audioclient.h"
37 #include "endpointvolume.h"
38 #include "audiopolicy.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(mmdevapi);
45 static const WCHAR software_mmdevapi[] =
46 { 'S','o','f','t','w','a','r','e','\\',
47 'M','i','c','r','o','s','o','f','t','\\',
48 'W','i','n','d','o','w','s','\\',
49 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
50 'M','M','D','e','v','i','c','e','s','\\',
51 'A','u','d','i','o',0};
52 static const WCHAR reg_render[] =
53 { 'R','e','n','d','e','r',0 };
54 static const WCHAR reg_capture[] =
55 { 'C','a','p','t','u','r','e',0 };
56 static const WCHAR reg_devicestate[] =
57 { 'D','e','v','i','c','e','S','t','a','t','e',0 };
58 static const WCHAR reg_properties[] =
59 { 'P','r','o','p','e','r','t','i','e','s',0 };
61 static HKEY key_render;
62 static HKEY key_capture;
64 typedef struct MMDevPropStoreImpl
66 IPropertyStore IPropertyStore_iface;
72 typedef struct MMDevEnumImpl
74 IMMDeviceEnumerator IMMDeviceEnumerator_iface;
78 static MMDevEnumImpl *MMDevEnumerator;
79 static MMDevice **MMDevice_head;
80 static MMDevice *MMDevice_def_rec, *MMDevice_def_play;
81 static DWORD MMDevice_count;
82 static const IMMDeviceEnumeratorVtbl MMDevEnumVtbl;
83 static const IMMDeviceCollectionVtbl MMDevColVtbl;
84 static const IMMDeviceVtbl MMDeviceVtbl;
85 static const IPropertyStoreVtbl MMDevPropVtbl;
86 static const IMMEndpointVtbl MMEndpointVtbl;
88 typedef struct MMDevColImpl
90 IMMDeviceCollection IMMDeviceCollection_iface;
96 typedef struct IPropertyBagImpl {
97 IPropertyBag IPropertyBag_iface;
101 static const IPropertyBagVtbl PB_Vtbl;
103 static HRESULT MMDevPropStore_Create(MMDevice *This, DWORD access, IPropertyStore **ppv);
105 static inline MMDevPropStore *impl_from_IPropertyStore(IPropertyStore *iface)
107 return CONTAINING_RECORD(iface, MMDevPropStore, IPropertyStore_iface);
110 static inline MMDevEnumImpl *impl_from_IMMDeviceEnumerator(IMMDeviceEnumerator *iface)
112 return CONTAINING_RECORD(iface, MMDevEnumImpl, IMMDeviceEnumerator_iface);
115 static inline MMDevColImpl *impl_from_IMMDeviceCollection(IMMDeviceCollection *iface)
117 return CONTAINING_RECORD(iface, MMDevColImpl, IMMDeviceCollection_iface);
120 static inline IPropertyBagImpl *impl_from_IPropertyBag(IPropertyBag *iface)
122 return CONTAINING_RECORD(iface, IPropertyBagImpl, IPropertyBag_iface);
125 static const WCHAR propkey_formatW[] = {
126 '{','%','0','8','X','-','%','0','4','X','-',
127 '%','0','4','X','-','%','0','2','X','%','0','2','X','-',
128 '%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X',
129 '%','0','2','X','%','0','2','X','}',',','%','d',0 };
131 static HRESULT MMDevPropStore_OpenPropKey(const GUID *guid, DWORD flow, HKEY *propkey)
136 StringFromGUID2(guid, buffer, 39);
137 if ((ret = RegOpenKeyExW(flow == eRender ? key_render : key_capture, buffer, 0, KEY_READ|KEY_WRITE, &key)) != ERROR_SUCCESS)
139 WARN("Opening key %s failed with %u\n", debugstr_w(buffer), ret);
142 ret = RegOpenKeyExW(key, reg_properties, 0, KEY_READ|KEY_WRITE, propkey);
144 if (ret != ERROR_SUCCESS)
146 WARN("Opening key %s failed with %u\n", debugstr_w(reg_properties), ret);
152 HRESULT MMDevice_GetPropValue(const GUID *devguid, DWORD flow, REFPROPERTYKEY key, PROPVARIANT *pv)
155 const GUID *id = &key->fmtid;
161 hr = MMDevPropStore_OpenPropKey(devguid, flow, ®key);
164 wsprintfW( buffer, propkey_formatW, id->Data1, id->Data2, id->Data3,
165 id->Data4[0], id->Data4[1], id->Data4[2], id->Data4[3],
166 id->Data4[4], id->Data4[5], id->Data4[6], id->Data4[7], key->pid );
167 ret = RegGetValueW(regkey, NULL, buffer, RRF_RT_ANY, &type, NULL, &size);
168 if (ret != ERROR_SUCCESS)
170 WARN("Reading %s returned %d\n", debugstr_w(buffer), ret);
172 PropVariantClear(pv);
181 pv->u.pwszVal = CoTaskMemAlloc(size);
185 RegGetValueW(regkey, NULL, buffer, RRF_RT_REG_SZ, NULL, (BYTE*)pv->u.pwszVal, &size);
191 RegGetValueW(regkey, NULL, buffer, RRF_RT_REG_DWORD, NULL, (BYTE*)&pv->u.ulVal, &size);
197 pv->u.blob.cbSize = size;
198 pv->u.blob.pBlobData = CoTaskMemAlloc(size);
199 if (!pv->u.blob.pBlobData)
202 RegGetValueW(regkey, NULL, buffer, RRF_RT_REG_BINARY, NULL, (BYTE*)pv->u.blob.pBlobData, &size);
206 ERR("Unknown/unhandled type: %u\n", type);
207 PropVariantClear(pv);
214 static HRESULT MMDevice_SetPropValue(const GUID *devguid, DWORD flow, REFPROPERTYKEY key, REFPROPVARIANT pv)
217 const GUID *id = &key->fmtid;
222 hr = MMDevPropStore_OpenPropKey(devguid, flow, ®key);
225 wsprintfW( buffer, propkey_formatW, id->Data1, id->Data2, id->Data3,
226 id->Data4[0], id->Data4[1], id->Data4[2], id->Data4[3],
227 id->Data4[4], id->Data4[5], id->Data4[6], id->Data4[7], key->pid );
232 ret = RegSetValueExW(regkey, buffer, 0, REG_DWORD, (const BYTE*)&pv->u.ulVal, sizeof(DWORD));
237 ret = RegSetValueExW(regkey, buffer, 0, REG_BINARY, pv->u.blob.pBlobData, pv->u.blob.cbSize);
238 TRACE("Blob %p %u\n", pv->u.blob.pBlobData, pv->u.blob.cbSize);
244 ret = RegSetValueExW(regkey, buffer, 0, REG_SZ, (const BYTE*)pv->u.pwszVal, sizeof(WCHAR)*(1+lstrlenW(pv->u.pwszVal)));
249 FIXME("Unhandled type %u\n", pv->vt);
254 TRACE("Writing %s returned %u\n", debugstr_w(buffer), ret);
258 /* Creates or updates the state of a device
259 * If GUID is null, a random guid will be assigned
260 * and the device will be created
262 static MMDevice *MMDevice_Create(WCHAR *name, void *devkey, GUID *id, EDataFlow flow, DWORD state, BOOL setdefault)
269 for (i = 0; i < MMDevice_count; ++i)
271 cur = MMDevice_head[i];
272 if (cur->flow == flow && !lstrcmpW(cur->drv_id, name))
275 /* Same device, update state */
278 StringFromGUID2(&cur->devguid, guidstr, sizeof(guidstr)/sizeof(*guidstr));
279 ret = RegOpenKeyExW(flow == eRender ? key_render : key_capture, guidstr, 0, KEY_WRITE, &key);
280 if (ret == ERROR_SUCCESS)
282 RegSetValueExW(key, reg_devicestate, 0, REG_DWORD, (const BYTE*)&state, sizeof(DWORD));
289 /* No device found, allocate new one */
290 cur = HeapAlloc(GetProcessHeap(), 0, sizeof(*cur));
292 HeapFree(GetProcessHeap(), 0, devkey);
295 cur->drv_id = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(name)+1)*sizeof(WCHAR));
298 HeapFree(GetProcessHeap(), 0, cur);
299 HeapFree(GetProcessHeap(), 0, devkey);
302 lstrcpyW(cur->drv_id, name);
304 cur->IMMDevice_iface.lpVtbl = &MMDeviceVtbl;
305 cur->IMMEndpoint_iface.lpVtbl = &MMEndpointVtbl;
307 InitializeCriticalSection(&cur->crst);
308 cur->crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": MMDevice.crst");
317 StringFromGUID2(id, guidstr, sizeof(guidstr)/sizeof(*guidstr));
322 if (!RegCreateKeyExW(root, guidstr, 0, NULL, 0, KEY_WRITE|KEY_READ, NULL, &key, NULL))
325 RegSetValueExW(key, reg_devicestate, 0, REG_DWORD, (const BYTE*)&state, sizeof(DWORD));
326 if (!RegCreateKeyExW(key, reg_properties, 0, NULL, 0, KEY_WRITE|KEY_READ, NULL, &keyprop, NULL))
331 MMDevice_SetPropValue(id, flow, (const PROPERTYKEY*)&DEVPKEY_Device_FriendlyName, &pv);
332 MMDevice_SetPropValue(id, flow, (const PROPERTYKEY*)&DEVPKEY_Device_DeviceDesc, &pv);
333 RegCloseKey(keyprop);
338 MMDevice_head = HeapAlloc(GetProcessHeap(), 0, sizeof(*MMDevice_head));
340 MMDevice_head = HeapReAlloc(GetProcessHeap(), 0, MMDevice_head, sizeof(*MMDevice_head)*(1+MMDevice_count));
341 MMDevice_head[MMDevice_count++] = cur;
347 MMDevice_def_play = cur;
349 MMDevice_def_rec = cur;
354 static HRESULT load_devices_from_reg(void)
361 ret = RegCreateKeyExW(HKEY_LOCAL_MACHINE, software_mmdevapi, 0, NULL, 0, KEY_WRITE|KEY_READ, NULL, &root, NULL);
362 if (ret == ERROR_SUCCESS)
363 ret = RegCreateKeyExW(root, reg_capture, 0, NULL, 0, KEY_READ|KEY_WRITE, NULL, &key_capture, NULL);
364 if (ret == ERROR_SUCCESS)
365 ret = RegCreateKeyExW(root, reg_render, 0, NULL, 0, KEY_READ|KEY_WRITE, NULL, &key_render, NULL);
369 if (ret != ERROR_SUCCESS)
371 RegCloseKey(key_capture);
372 key_render = key_capture = NULL;
373 WARN("Couldn't create key: %u\n", ret);
381 PROPVARIANT pv = { VT_EMPTY };
383 len = sizeof(guidvalue)/sizeof(guidvalue[0]);
384 ret = RegEnumKeyExW(cur, i++, guidvalue, &len, NULL, NULL, NULL, NULL);
385 if (ret == ERROR_NO_MORE_ITEMS)
387 if (cur == key_capture)
396 if (ret != ERROR_SUCCESS)
398 if (SUCCEEDED(CLSIDFromString(guidvalue, &guid))
399 && SUCCEEDED(MMDevice_GetPropValue(&guid, curflow, (const PROPERTYKEY*)&DEVPKEY_Device_FriendlyName, &pv))
400 && pv.vt == VT_LPWSTR)
402 MMDevice_Create(pv.u.pwszVal, NULL, &guid, curflow,
403 DEVICE_STATE_NOTPRESENT, FALSE);
404 CoTaskMemFree(pv.u.pwszVal);
411 static HRESULT set_format(MMDevice *dev)
414 IAudioClient *client;
416 PROPVARIANT pv = { VT_EMPTY };
418 hr = drvs.pGetAudioEndpoint(dev->key, &dev->IMMDevice_iface, dev->flow, &client);
422 hr = IAudioClient_GetMixFormat(client, &fmt);
424 IAudioClient_Release(client);
428 IAudioClient_Release(client);
431 pv.u.blob.cbSize = sizeof(WAVEFORMATEX) + fmt->cbSize;
432 pv.u.blob.pBlobData = (BYTE*)fmt;
433 MMDevice_SetPropValue(&dev->devguid, dev->flow,
434 &PKEY_AudioEngine_DeviceFormat, &pv);
435 MMDevice_SetPropValue(&dev->devguid, dev->flow,
436 &PKEY_AudioEngine_OEMFormat, &pv);
441 static HRESULT load_driver_devices(EDataFlow flow)
448 hr = drvs.pGetEndpointIDs(flow, &ids, &keys, &num, &def);
452 for(i = 0; i < num; ++i){
454 dev = MMDevice_Create(ids[i], keys[i], NULL, flow, DEVICE_STATE_ACTIVE,
457 HeapFree(GetProcessHeap(), 0, ids[i]);
460 HeapFree(GetProcessHeap(), 0, keys);
461 HeapFree(GetProcessHeap(), 0, ids);
466 static void MMDevice_Destroy(MMDevice *This)
469 TRACE("Freeing %s\n", debugstr_w(This->drv_id));
470 /* Since this function is called at destruction time, reordering of the list is unimportant */
471 for (i = 0; i < MMDevice_count; ++i)
473 if (MMDevice_head[i] == This)
475 MMDevice_head[i] = MMDevice_head[--MMDevice_count];
479 This->crst.DebugInfo->Spare[0] = 0;
480 DeleteCriticalSection(&This->crst);
481 HeapFree(GetProcessHeap(), 0, This->drv_id);
482 HeapFree(GetProcessHeap(), 0, This->key);
483 HeapFree(GetProcessHeap(), 0, This);
486 static inline MMDevice *impl_from_IMMDevice(IMMDevice *iface)
488 return CONTAINING_RECORD(iface, MMDevice, IMMDevice_iface);
491 static HRESULT WINAPI MMDevice_QueryInterface(IMMDevice *iface, REFIID riid, void **ppv)
493 MMDevice *This = impl_from_IMMDevice(iface);
494 TRACE("(%p)->(%s,%p)\n", iface, debugstr_guid(riid), ppv);
499 if (IsEqualIID(riid, &IID_IUnknown)
500 || IsEqualIID(riid, &IID_IMMDevice))
502 else if (IsEqualIID(riid, &IID_IMMEndpoint))
503 *ppv = &This->IMMEndpoint_iface;
506 IUnknown_AddRef((IUnknown*)*ppv);
509 WARN("Unknown interface %s\n", debugstr_guid(riid));
510 return E_NOINTERFACE;
513 static ULONG WINAPI MMDevice_AddRef(IMMDevice *iface)
515 MMDevice *This = impl_from_IMMDevice(iface);
518 ref = InterlockedIncrement(&This->ref);
519 TRACE("Refcount now %i\n", ref);
523 static ULONG WINAPI MMDevice_Release(IMMDevice *iface)
525 MMDevice *This = impl_from_IMMDevice(iface);
528 ref = InterlockedDecrement(&This->ref);
529 TRACE("Refcount now %i\n", ref);
533 static HRESULT WINAPI MMDevice_Activate(IMMDevice *iface, REFIID riid, DWORD clsctx, PROPVARIANT *params, void **ppv)
535 HRESULT hr = E_NOINTERFACE;
536 MMDevice *This = impl_from_IMMDevice(iface);
538 TRACE("(%p)->(%p,%x,%p,%p)\n", iface, riid, clsctx, params, ppv);
543 if (IsEqualIID(riid, &IID_IAudioClient)){
544 hr = drvs.pGetAudioEndpoint(This->key, iface, This->flow, (IAudioClient**)ppv);
545 }else if (IsEqualIID(riid, &IID_IAudioEndpointVolume))
546 hr = AudioEndpointVolume_Create(This, (IAudioEndpointVolume**)ppv);
547 else if (IsEqualIID(riid, &IID_IAudioSessionManager)
548 || IsEqualIID(riid, &IID_IAudioSessionManager2))
550 FIXME("IID_IAudioSessionManager unsupported\n");
552 else if (IsEqualIID(riid, &IID_IBaseFilter))
554 if (This->flow == eRender)
555 hr = CoCreateInstance(&CLSID_DSoundRender, NULL, clsctx, riid, ppv);
557 ERR("Not supported for recording?\n");
560 IPersistPropertyBag *ppb;
561 hr = IUnknown_QueryInterface((IUnknown*)*ppv, &IID_IPersistPropertyBag, (void*)&ppb);
564 /* ::Load cannot assume the interface stays alive after the function returns,
565 * so just create the interface on the stack, saves a lot of complicated code */
566 IPropertyBagImpl bag = { { &PB_Vtbl }, This->devguid };
567 hr = IPersistPropertyBag_Load(ppb, &bag.IPropertyBag_iface, NULL);
568 IPersistPropertyBag_Release(ppb);
570 IBaseFilter_Release((IBaseFilter*)*ppv);
574 FIXME("Wine doesn't support IPersistPropertyBag on DSoundRender yet, ignoring..\n");
579 else if (IsEqualIID(riid, &IID_IDeviceTopology))
581 FIXME("IID_IDeviceTopology unsupported\n");
583 else if (IsEqualIID(riid, &IID_IDirectSound)
584 || IsEqualIID(riid, &IID_IDirectSound8))
586 if (This->flow == eRender)
587 hr = CoCreateInstance(&CLSID_DirectSound8, NULL, clsctx, riid, ppv);
590 hr = IDirectSound_Initialize((IDirectSound*)*ppv, &This->devguid);
592 IDirectSound_Release((IDirectSound*)*ppv);
595 else if (IsEqualIID(riid, &IID_IDirectSoundCapture)
596 || IsEqualIID(riid, &IID_IDirectSoundCapture8))
598 if (This->flow == eCapture)
599 hr = CoCreateInstance(&CLSID_DirectSoundCapture8, NULL, clsctx, riid, ppv);
602 hr = IDirectSoundCapture_Initialize((IDirectSoundCapture*)*ppv, &This->devguid);
604 IDirectSoundCapture_Release((IDirectSoundCapture*)*ppv);
608 ERR("Invalid/unknown iid %s\n", debugstr_guid(riid));
613 TRACE("Returning %08x\n", hr);
617 static HRESULT WINAPI MMDevice_OpenPropertyStore(IMMDevice *iface, DWORD access, IPropertyStore **ppv)
619 MMDevice *This = impl_from_IMMDevice(iface);
620 TRACE("(%p)->(%x,%p)\n", This, access, ppv);
624 return MMDevPropStore_Create(This, access, ppv);
627 static HRESULT WINAPI MMDevice_GetId(IMMDevice *iface, WCHAR **itemid)
629 MMDevice *This = impl_from_IMMDevice(iface);
631 GUID *id = &This->devguid;
632 static const WCHAR formatW[] = { '{','0','.','0','.','0','.','0','0','0','0','0','0','0','0','}','.',
633 '{','%','0','8','X','-','%','0','4','X','-',
634 '%','0','4','X','-','%','0','2','X','%','0','2','X','-',
635 '%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X',
636 '%','0','2','X','%','0','2','X','}',0 };
638 TRACE("(%p)->(%p)\n", This, itemid);
641 *itemid = str = CoTaskMemAlloc(56 * sizeof(WCHAR));
643 return E_OUTOFMEMORY;
644 wsprintfW( str, formatW, id->Data1, id->Data2, id->Data3,
645 id->Data4[0], id->Data4[1], id->Data4[2], id->Data4[3],
646 id->Data4[4], id->Data4[5], id->Data4[6], id->Data4[7] );
650 static HRESULT WINAPI MMDevice_GetState(IMMDevice *iface, DWORD *state)
652 MMDevice *This = impl_from_IMMDevice(iface);
653 TRACE("(%p)->(%p)\n", iface, state);
657 *state = This->state;
661 static const IMMDeviceVtbl MMDeviceVtbl =
663 MMDevice_QueryInterface,
667 MMDevice_OpenPropertyStore,
672 static inline MMDevice *impl_from_IMMEndpoint(IMMEndpoint *iface)
674 return CONTAINING_RECORD(iface, MMDevice, IMMEndpoint_iface);
677 static HRESULT WINAPI MMEndpoint_QueryInterface(IMMEndpoint *iface, REFIID riid, void **ppv)
679 MMDevice *This = impl_from_IMMEndpoint(iface);
680 return IMMDevice_QueryInterface(&This->IMMDevice_iface, riid, ppv);
683 static ULONG WINAPI MMEndpoint_AddRef(IMMEndpoint *iface)
685 MMDevice *This = impl_from_IMMEndpoint(iface);
686 return IMMDevice_AddRef(&This->IMMDevice_iface);
689 static ULONG WINAPI MMEndpoint_Release(IMMEndpoint *iface)
691 MMDevice *This = impl_from_IMMEndpoint(iface);
692 return IMMDevice_Release(&This->IMMDevice_iface);
695 static HRESULT WINAPI MMEndpoint_GetDataFlow(IMMEndpoint *iface, EDataFlow *flow)
697 MMDevice *This = impl_from_IMMEndpoint(iface);
704 static const IMMEndpointVtbl MMEndpointVtbl =
706 MMEndpoint_QueryInterface,
709 MMEndpoint_GetDataFlow
712 static HRESULT MMDevCol_Create(IMMDeviceCollection **ppv, EDataFlow flow, DWORD state)
716 This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
719 return E_OUTOFMEMORY;
720 This->IMMDeviceCollection_iface.lpVtbl = &MMDevColVtbl;
724 *ppv = &This->IMMDeviceCollection_iface;
728 static void MMDevCol_Destroy(MMDevColImpl *This)
730 HeapFree(GetProcessHeap(), 0, This);
733 static HRESULT WINAPI MMDevCol_QueryInterface(IMMDeviceCollection *iface, REFIID riid, void **ppv)
735 MMDevColImpl *This = impl_from_IMMDeviceCollection(iface);
739 if (IsEqualIID(riid, &IID_IUnknown)
740 || IsEqualIID(riid, &IID_IMMDeviceCollection))
745 return E_NOINTERFACE;
746 IUnknown_AddRef((IUnknown*)*ppv);
750 static ULONG WINAPI MMDevCol_AddRef(IMMDeviceCollection *iface)
752 MMDevColImpl *This = impl_from_IMMDeviceCollection(iface);
753 LONG ref = InterlockedIncrement(&This->ref);
754 TRACE("Refcount now %i\n", ref);
758 static ULONG WINAPI MMDevCol_Release(IMMDeviceCollection *iface)
760 MMDevColImpl *This = impl_from_IMMDeviceCollection(iface);
761 LONG ref = InterlockedDecrement(&This->ref);
762 TRACE("Refcount now %i\n", ref);
764 MMDevCol_Destroy(This);
768 static HRESULT WINAPI MMDevCol_GetCount(IMMDeviceCollection *iface, UINT *numdevs)
770 MMDevColImpl *This = impl_from_IMMDeviceCollection(iface);
773 TRACE("(%p)->(%p)\n", This, numdevs);
778 for (i = 0; i < MMDevice_count; ++i)
780 MMDevice *cur = MMDevice_head[i];
781 if ((cur->flow == This->flow || This->flow == eAll)
782 && (cur->state & This->state))
788 static HRESULT WINAPI MMDevCol_Item(IMMDeviceCollection *iface, UINT n, IMMDevice **dev)
790 MMDevColImpl *This = impl_from_IMMDeviceCollection(iface);
793 TRACE("(%p)->(%u, %p)\n", This, n, dev);
797 for (j = 0; j < MMDevice_count; ++j)
799 MMDevice *cur = MMDevice_head[j];
800 if ((cur->flow == This->flow || This->flow == eAll)
801 && (cur->state & This->state)
804 *dev = &cur->IMMDevice_iface;
805 IMMDevice_AddRef(*dev);
809 WARN("Could not obtain item %u\n", n);
814 static const IMMDeviceCollectionVtbl MMDevColVtbl =
816 MMDevCol_QueryInterface,
823 HRESULT MMDevEnum_Create(REFIID riid, void **ppv)
825 MMDevEnumImpl *This = MMDevEnumerator;
829 This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
832 return E_OUTOFMEMORY;
834 This->IMMDeviceEnumerator_iface.lpVtbl = &MMDevEnumVtbl;
835 MMDevEnumerator = This;
837 load_devices_from_reg();
838 load_driver_devices(eRender);
839 load_driver_devices(eCapture);
841 return IUnknown_QueryInterface((IUnknown*)This, riid, ppv);
844 void MMDevEnum_Free(void)
846 while (MMDevice_count)
847 MMDevice_Destroy(MMDevice_head[0]);
848 RegCloseKey(key_render);
849 RegCloseKey(key_capture);
850 key_render = key_capture = NULL;
851 HeapFree(GetProcessHeap(), 0, MMDevEnumerator);
852 MMDevEnumerator = NULL;
855 static HRESULT WINAPI MMDevEnum_QueryInterface(IMMDeviceEnumerator *iface, REFIID riid, void **ppv)
857 MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
861 if (IsEqualIID(riid, &IID_IUnknown)
862 || IsEqualIID(riid, &IID_IMMDeviceEnumerator))
867 return E_NOINTERFACE;
868 IUnknown_AddRef((IUnknown*)*ppv);
872 static ULONG WINAPI MMDevEnum_AddRef(IMMDeviceEnumerator *iface)
874 MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
875 LONG ref = InterlockedIncrement(&This->ref);
876 TRACE("Refcount now %i\n", ref);
880 static ULONG WINAPI MMDevEnum_Release(IMMDeviceEnumerator *iface)
882 MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
883 LONG ref = InterlockedDecrement(&This->ref);
886 TRACE("Refcount now %i\n", ref);
890 static HRESULT WINAPI MMDevEnum_EnumAudioEndpoints(IMMDeviceEnumerator *iface, EDataFlow flow, DWORD mask, IMMDeviceCollection **devices)
892 MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
893 TRACE("(%p)->(%u,%u,%p)\n", This, flow, mask, devices);
897 if (flow >= EDataFlow_enum_count)
899 if (mask & ~DEVICE_STATEMASK_ALL)
901 return MMDevCol_Create(devices, flow, mask);
904 static HRESULT WINAPI MMDevEnum_GetDefaultAudioEndpoint(IMMDeviceEnumerator *iface, EDataFlow flow, ERole role, IMMDevice **device)
906 MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
907 TRACE("(%p)->(%u,%u,%p)\n", This, flow, role, device);
914 *device = &MMDevice_def_play->IMMDevice_iface;
915 else if (flow == eCapture)
916 *device = &MMDevice_def_rec->IMMDevice_iface;
919 WARN("Unknown flow %u\n", flow);
925 IMMDevice_AddRef(*device);
929 static HRESULT WINAPI MMDevEnum_GetDevice(IMMDeviceEnumerator *iface, const WCHAR *name, IMMDevice **device)
931 MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
933 IMMDevice *dev = NULL;
938 TRACE("(%p)->(%s,%p)\n", This, debugstr_w(name), device);
939 for (i = 0; i < MMDevice_count; ++i)
942 dev = &MMDevice_head[i]->IMMDevice_iface;
943 IMMDevice_GetId(dev, &str);
945 if (str && !lstrcmpW(str, name))
948 IUnknown_AddRef(dev);
954 TRACE("Could not find device %s\n", debugstr_w(name));
958 static HRESULT WINAPI MMDevEnum_RegisterEndpointNotificationCallback(IMMDeviceEnumerator *iface, IMMNotificationClient *client)
960 MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
961 TRACE("(%p)->(%p)\n", This, client);
966 static HRESULT WINAPI MMDevEnum_UnregisterEndpointNotificationCallback(IMMDeviceEnumerator *iface, IMMNotificationClient *client)
968 MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
969 TRACE("(%p)->(%p)\n", This, client);
974 static const IMMDeviceEnumeratorVtbl MMDevEnumVtbl =
976 MMDevEnum_QueryInterface,
979 MMDevEnum_EnumAudioEndpoints,
980 MMDevEnum_GetDefaultAudioEndpoint,
982 MMDevEnum_RegisterEndpointNotificationCallback,
983 MMDevEnum_UnregisterEndpointNotificationCallback
986 static HRESULT MMDevPropStore_Create(MMDevice *parent, DWORD access, IPropertyStore **ppv)
988 MMDevPropStore *This;
989 if (access != STGM_READ
990 && access != STGM_WRITE
991 && access != STGM_READWRITE)
993 WARN("Invalid access %08x\n", access);
996 This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
997 *ppv = &This->IPropertyStore_iface;
999 return E_OUTOFMEMORY;
1000 This->IPropertyStore_iface.lpVtbl = &MMDevPropVtbl;
1002 This->parent = parent;
1003 This->access = access;
1007 static void MMDevPropStore_Destroy(MMDevPropStore *This)
1009 HeapFree(GetProcessHeap(), 0, This);
1012 static HRESULT WINAPI MMDevPropStore_QueryInterface(IPropertyStore *iface, REFIID riid, void **ppv)
1014 MMDevPropStore *This = impl_from_IPropertyStore(iface);
1018 if (IsEqualIID(riid, &IID_IUnknown)
1019 || IsEqualIID(riid, &IID_IPropertyStore))
1024 return E_NOINTERFACE;
1025 IUnknown_AddRef((IUnknown*)*ppv);
1029 static ULONG WINAPI MMDevPropStore_AddRef(IPropertyStore *iface)
1031 MMDevPropStore *This = impl_from_IPropertyStore(iface);
1032 LONG ref = InterlockedIncrement(&This->ref);
1033 TRACE("Refcount now %i\n", ref);
1037 static ULONG WINAPI MMDevPropStore_Release(IPropertyStore *iface)
1039 MMDevPropStore *This = impl_from_IPropertyStore(iface);
1040 LONG ref = InterlockedDecrement(&This->ref);
1041 TRACE("Refcount now %i\n", ref);
1043 MMDevPropStore_Destroy(This);
1047 static HRESULT WINAPI MMDevPropStore_GetCount(IPropertyStore *iface, DWORD *nprops)
1049 MMDevPropStore *This = impl_from_IPropertyStore(iface);
1055 TRACE("(%p)->(%p)\n", iface, nprops);
1058 hr = MMDevPropStore_OpenPropKey(&This->parent->devguid, This->parent->flow, &propkey);
1063 DWORD len = sizeof(buffer)/sizeof(*buffer);
1064 if (RegEnumKeyExW(propkey, i, buffer, &len, NULL, NULL, NULL, NULL) != ERROR_SUCCESS)
1068 RegCloseKey(propkey);
1069 TRACE("Returning %i\n", i);
1074 static HRESULT WINAPI MMDevPropStore_GetAt(IPropertyStore *iface, DWORD prop, PROPERTYKEY *key)
1076 MMDevPropStore *This = impl_from_IPropertyStore(iface);
1078 DWORD len = sizeof(buffer)/sizeof(*buffer);
1082 TRACE("(%p)->(%u,%p)\n", iface, prop, key);
1086 hr = MMDevPropStore_OpenPropKey(&This->parent->devguid, This->parent->flow, &propkey);
1090 if (RegEnumKeyExW(propkey, prop, buffer, &len, NULL, NULL, NULL, NULL) != ERROR_SUCCESS
1093 WARN("GetAt %u failed\n", prop);
1094 return E_INVALIDARG;
1096 RegCloseKey(propkey);
1098 CLSIDFromString(buffer, &key->fmtid);
1099 key->pid = atoiW(&buffer[40]);
1103 static HRESULT WINAPI MMDevPropStore_GetValue(IPropertyStore *iface, REFPROPERTYKEY key, PROPVARIANT *pv)
1105 MMDevPropStore *This = impl_from_IPropertyStore(iface);
1106 TRACE("(%p)->(\"%s,%u\", %p\n", This, debugstr_guid(&key->fmtid), key ? key->pid : 0, pv);
1110 if (This->access != STGM_READ
1111 && This->access != STGM_READWRITE)
1112 return STG_E_ACCESSDENIED;
1115 if (IsEqualPropertyKey(*key, PKEY_AudioEndpoint_GUID))
1118 pv->u.pwszVal = CoTaskMemAlloc(39 * sizeof(WCHAR));
1120 return E_OUTOFMEMORY;
1121 StringFromGUID2(&This->parent->devguid, pv->u.pwszVal, 39);
1125 return MMDevice_GetPropValue(&This->parent->devguid, This->parent->flow, key, pv);
1128 static HRESULT WINAPI MMDevPropStore_SetValue(IPropertyStore *iface, REFPROPERTYKEY key, REFPROPVARIANT pv)
1130 MMDevPropStore *This = impl_from_IPropertyStore(iface);
1135 if (This->access != STGM_WRITE
1136 && This->access != STGM_READWRITE)
1137 return STG_E_ACCESSDENIED;
1138 return MMDevice_SetPropValue(&This->parent->devguid, This->parent->flow, key, pv);
1141 static HRESULT WINAPI MMDevPropStore_Commit(IPropertyStore *iface)
1147 static const IPropertyStoreVtbl MMDevPropVtbl =
1149 MMDevPropStore_QueryInterface,
1150 MMDevPropStore_AddRef,
1151 MMDevPropStore_Release,
1152 MMDevPropStore_GetCount,
1153 MMDevPropStore_GetAt,
1154 MMDevPropStore_GetValue,
1155 MMDevPropStore_SetValue,
1156 MMDevPropStore_Commit
1160 /* Property bag for IBaseFilter activation */
1161 static HRESULT WINAPI PB_QueryInterface(IPropertyBag *iface, REFIID riid, void **ppv)
1163 ERR("Should not be called\n");
1165 return E_NOINTERFACE;
1168 static ULONG WINAPI PB_AddRef(IPropertyBag *iface)
1170 ERR("Should not be called\n");
1174 static ULONG WINAPI PB_Release(IPropertyBag *iface)
1176 ERR("Should not be called\n");
1180 static HRESULT WINAPI PB_Read(IPropertyBag *iface, LPCOLESTR name, VARIANT *var, IErrorLog *log)
1182 static const WCHAR dsguid[] = { 'D','S','G','u','i','d', 0 };
1183 IPropertyBagImpl *This = impl_from_IPropertyBag(iface);
1184 TRACE("Trying to read %s, type %u\n", debugstr_w(name), var->n1.n2.vt);
1185 if (!lstrcmpW(name, dsguid))
1188 StringFromGUID2(&This->devguid, guidstr,sizeof(guidstr)/sizeof(*guidstr));
1189 var->n1.n2.vt = VT_BSTR;
1190 var->n1.n2.n3.bstrVal = SysAllocString(guidstr);
1193 ERR("Unknown property '%s' queried\n", debugstr_w(name));
1197 static HRESULT WINAPI PB_Write(IPropertyBag *iface, LPCOLESTR name, VARIANT *var)
1199 ERR("Should not be called\n");
1203 static const IPropertyBagVtbl PB_Vtbl =