2 * Copyright 2010 Maarten Lankhorst for CodeWeavers
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
28 #include "wine/debug.h"
29 #include "wine/unicode.h"
32 #include "mmdeviceapi.h"
35 #include "audioclient.h"
36 #include "endpointvolume.h"
37 #include "audiopolicy.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(mmdevapi
);
43 static const IAudioEndpointVolumeExVtbl AEVImpl_Vtbl
;
45 typedef struct AEVImpl
{
46 IAudioEndpointVolumeEx IAudioEndpointVolumeEx_iface
;
50 static inline AEVImpl
*impl_from_IAudioEndpointVolumeEx(IAudioEndpointVolumeEx
*iface
)
52 return CONTAINING_RECORD(iface
, AEVImpl
, IAudioEndpointVolumeEx_iface
);
55 HRESULT
AudioEndpointVolume_Create(MMDevice
*parent
, IAudioEndpointVolume
**ppv
)
58 This
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*This
));
59 *ppv
= (IAudioEndpointVolume
*)This
;
62 This
->IAudioEndpointVolumeEx_iface
.lpVtbl
= &AEVImpl_Vtbl
;
67 static void AudioEndpointVolume_Destroy(AEVImpl
*This
)
69 HeapFree(GetProcessHeap(), 0, This
);
72 static HRESULT WINAPI
AEV_QueryInterface(IAudioEndpointVolumeEx
*iface
, REFIID riid
, void **ppv
)
74 AEVImpl
*This
= impl_from_IAudioEndpointVolumeEx(iface
);
75 TRACE("(%p)->(%s,%p)\n", This
, debugstr_guid(riid
), ppv
);
79 if (IsEqualIID(riid
, &IID_IUnknown
) ||
80 IsEqualIID(riid
, &IID_IAudioEndpointVolume
) ||
81 IsEqualIID(riid
, &IID_IAudioEndpointVolumeEx
)) {
86 IUnknown_AddRef((IUnknown
*)*ppv
);
90 static ULONG WINAPI
AEV_AddRef(IAudioEndpointVolumeEx
*iface
)
92 AEVImpl
*This
= impl_from_IAudioEndpointVolumeEx(iface
);
93 ULONG ref
= InterlockedIncrement(&This
->ref
);
94 TRACE("(%p) new ref %u\n", This
, ref
);
98 static ULONG WINAPI
AEV_Release(IAudioEndpointVolumeEx
*iface
)
100 AEVImpl
*This
= impl_from_IAudioEndpointVolumeEx(iface
);
101 ULONG ref
= InterlockedDecrement(&This
->ref
);
102 TRACE("(%p) new ref %u\n", This
, ref
);
104 AudioEndpointVolume_Destroy(This
);
108 static HRESULT WINAPI
AEV_RegisterControlChangeNotify(IAudioEndpointVolumeEx
*iface
, IAudioEndpointVolumeCallback
*notify
)
110 TRACE("(%p)->(%p)\n", iface
, notify
);
117 static HRESULT WINAPI
AEV_UnregisterControlChangeNotify(IAudioEndpointVolumeEx
*iface
, IAudioEndpointVolumeCallback
*notify
)
119 TRACE("(%p)->(%p)\n", iface
, notify
);
126 static HRESULT WINAPI
AEV_GetChannelCount(IAudioEndpointVolumeEx
*iface
, UINT
*count
)
128 TRACE("(%p)->(%p)\n", iface
, count
);
135 static HRESULT WINAPI
AEV_SetMasterVolumeLevel(IAudioEndpointVolumeEx
*iface
, float leveldb
, const GUID
*ctx
)
137 TRACE("(%p)->(%f,%s)\n", iface
, leveldb
, debugstr_guid(ctx
));
142 static HRESULT WINAPI
AEV_SetMasterVolumeLevelScalar(IAudioEndpointVolumeEx
*iface
, float level
, const GUID
*ctx
)
144 TRACE("(%p)->(%f,%s)\n", iface
, level
, debugstr_guid(ctx
));
149 static HRESULT WINAPI
AEV_GetMasterVolumeLevel(IAudioEndpointVolumeEx
*iface
, float *leveldb
)
151 TRACE("(%p)->(%p)\n", iface
, leveldb
);
158 static HRESULT WINAPI
AEV_GetMasterVolumeLevelScalar(IAudioEndpointVolumeEx
*iface
, float *level
)
160 TRACE("(%p)->(%p)\n", iface
, level
);
167 static HRESULT WINAPI
AEV_SetChannelVolumeLevel(IAudioEndpointVolumeEx
*iface
, UINT chan
, float leveldb
, const GUID
*ctx
)
169 TRACE("(%p)->(%f,%s)\n", iface
, leveldb
, debugstr_guid(ctx
));
174 static HRESULT WINAPI
AEV_SetChannelVolumeLevelScalar(IAudioEndpointVolumeEx
*iface
, UINT chan
, float level
, const GUID
*ctx
)
176 TRACE("(%p)->(%u,%f,%s)\n", iface
, chan
, level
, debugstr_guid(ctx
));
181 static HRESULT WINAPI
AEV_GetChannelVolumeLevel(IAudioEndpointVolumeEx
*iface
, UINT chan
, float *leveldb
)
183 TRACE("(%p)->(%u,%p)\n", iface
, chan
, leveldb
);
190 static HRESULT WINAPI
AEV_GetChannelVolumeLevelScalar(IAudioEndpointVolumeEx
*iface
, UINT chan
, float *level
)
192 TRACE("(%p)->(%u,%p)\n", iface
, chan
, level
);
199 static HRESULT WINAPI
AEV_SetMute(IAudioEndpointVolumeEx
*iface
, BOOL mute
, const GUID
*ctx
)
201 TRACE("(%p)->(%u,%s)\n", iface
, mute
, debugstr_guid(ctx
));
206 static HRESULT WINAPI
AEV_GetMute(IAudioEndpointVolumeEx
*iface
, BOOL
*mute
)
208 TRACE("(%p)->(%p)\n", iface
, mute
);
215 static HRESULT WINAPI
AEV_GetVolumeStepInfo(IAudioEndpointVolumeEx
*iface
, UINT
*stepsize
, UINT
*stepcount
)
217 TRACE("(%p)->(%p,%p)\n", iface
, stepsize
, stepcount
);
218 if (!stepsize
&& !stepcount
)
224 static HRESULT WINAPI
AEV_VolumeStepUp(IAudioEndpointVolumeEx
*iface
, const GUID
*ctx
)
226 TRACE("(%p)->(%s)\n", iface
, debugstr_guid(ctx
));
231 static HRESULT WINAPI
AEV_VolumeStepDown(IAudioEndpointVolumeEx
*iface
, const GUID
*ctx
)
233 TRACE("(%p)->(%s)\n", iface
, debugstr_guid(ctx
));
238 static HRESULT WINAPI
AEV_QueryHardwareSupport(IAudioEndpointVolumeEx
*iface
, DWORD
*mask
)
240 TRACE("(%p)->(%p)\n", iface
, mask
);
247 static HRESULT WINAPI
AEV_GetVolumeRange(IAudioEndpointVolumeEx
*iface
, float *mindb
, float *maxdb
, float *inc
)
249 TRACE("(%p)->(%p,%p,%p)\n", iface
, mindb
, maxdb
, inc
);
250 if (!mindb
|| !maxdb
|| !inc
)
256 static HRESULT WINAPI
AEV_GetVolumeRangeChannel(IAudioEndpointVolumeEx
*iface
, UINT chan
, float *mindb
, float *maxdb
, float *inc
)
258 TRACE("(%p)->(%p,%p,%p)\n", iface
, mindb
, maxdb
, inc
);
259 if (!mindb
|| !maxdb
|| !inc
)
265 static const IAudioEndpointVolumeExVtbl AEVImpl_Vtbl
= {
269 AEV_RegisterControlChangeNotify
,
270 AEV_UnregisterControlChangeNotify
,
272 AEV_SetMasterVolumeLevel
,
273 AEV_SetMasterVolumeLevelScalar
,
274 AEV_GetMasterVolumeLevel
,
275 AEV_GetMasterVolumeLevelScalar
,
276 AEV_SetChannelVolumeLevel
,
277 AEV_SetChannelVolumeLevelScalar
,
278 AEV_GetChannelVolumeLevel
,
279 AEV_GetChannelVolumeLevelScalar
,
282 AEV_GetVolumeStepInfo
,
285 AEV_QueryHardwareSupport
,
287 AEV_GetVolumeRangeChannel