wined3d: Get rid of the IWineD3DStateBlockImpl typedef.
[wine] / dlls / mmdevapi / audiovolume.c
1 /*
2  * Copyright 2010 Maarten Lankhorst for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19
20 #define NONAMELESSUNION
21 #define COBJMACROS
22 #include "config.h"
23
24 #include <stdarg.h>
25 #ifdef HAVE_AL_AL_H
26 #include <AL/al.h>
27 #include <AL/alc.h>
28 #elif defined(HAVE_OPENAL_AL_H)
29 #include <OpenAL/al.h>
30 #include <OpenAL/alc.h>
31 #endif
32
33 #include "windef.h"
34 #include "winbase.h"
35 #include "winnls.h"
36 #include "winreg.h"
37 #include "wine/debug.h"
38 #include "wine/unicode.h"
39
40 #include "ole2.h"
41 #include "mmdeviceapi.h"
42 #include "dshow.h"
43 #include "dsound.h"
44 #include "audioclient.h"
45 #include "endpointvolume.h"
46 #include "audiopolicy.h"
47
48 #include "mmdevapi.h"
49
50 WINE_DEFAULT_DEBUG_CHANNEL(mmdevapi);
51
52 #ifdef HAVE_OPENAL
53
54 static const IAudioEndpointVolumeExVtbl AEVImpl_Vtbl;
55
56 typedef struct AEVImpl {
57     IAudioEndpointVolumeEx IAudioEndpointVolumeEx_iface;
58     LONG ref;
59 } AEVImpl;
60
61 static inline AEVImpl *impl_from_IAudioEndpointVolumeEx(IAudioEndpointVolumeEx *iface)
62 {
63     return CONTAINING_RECORD(iface, AEVImpl, IAudioEndpointVolumeEx_iface);
64 }
65
66 HRESULT AudioEndpointVolume_Create(MMDevice *parent, IAudioEndpointVolume **ppv)
67 {
68     AEVImpl *This;
69     This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*This));
70     *ppv = (IAudioEndpointVolume*)This;
71     if (!This)
72         return E_OUTOFMEMORY;
73     This->IAudioEndpointVolumeEx_iface.lpVtbl = &AEVImpl_Vtbl;
74     This->ref = 1;
75     return S_OK;
76 }
77
78 static void AudioEndpointVolume_Destroy(AEVImpl *This)
79 {
80     HeapFree(GetProcessHeap(), 0, This);
81 }
82
83 static HRESULT WINAPI AEV_QueryInterface(IAudioEndpointVolumeEx *iface, REFIID riid, void **ppv)
84 {
85     AEVImpl *This = impl_from_IAudioEndpointVolumeEx(iface);
86     TRACE("(%p)->(%s,%p)\n", This, debugstr_guid(riid), ppv);
87     if (!ppv)
88         return E_POINTER;
89     *ppv = NULL;
90     if (IsEqualIID(riid, &IID_IUnknown) ||
91         IsEqualIID(riid, &IID_IAudioEndpointVolume) ||
92         IsEqualIID(riid, &IID_IAudioEndpointVolumeEx)) {
93         *ppv = This;
94     }
95     else
96         return E_NOINTERFACE;
97     IUnknown_AddRef((IUnknown *)*ppv);
98     return S_OK;
99 }
100
101 static ULONG WINAPI AEV_AddRef(IAudioEndpointVolumeEx *iface)
102 {
103     AEVImpl *This = impl_from_IAudioEndpointVolumeEx(iface);
104     ULONG ref = InterlockedIncrement(&This->ref);
105     TRACE("(%p) new ref %u\n", This, ref);
106     return ref;
107 }
108
109 static ULONG WINAPI AEV_Release(IAudioEndpointVolumeEx *iface)
110 {
111     AEVImpl *This = impl_from_IAudioEndpointVolumeEx(iface);
112     ULONG ref = InterlockedDecrement(&This->ref);
113     TRACE("(%p) new ref %u\n", This, ref);
114     if (!ref)
115         AudioEndpointVolume_Destroy(This);
116     return ref;
117 }
118
119 static HRESULT WINAPI AEV_RegisterControlChangeNotify(IAudioEndpointVolumeEx *iface, IAudioEndpointVolumeCallback *notify)
120 {
121     TRACE("(%p)->(%p)\n", iface, notify);
122     if (!notify)
123         return E_POINTER;
124     FIXME("stub\n");
125     return S_OK;
126 }
127
128 static HRESULT WINAPI AEV_UnregisterControlChangeNotify(IAudioEndpointVolumeEx *iface, IAudioEndpointVolumeCallback *notify)
129 {
130     TRACE("(%p)->(%p)\n", iface, notify);
131     if (!notify)
132         return E_POINTER;
133     FIXME("stub\n");
134     return S_OK;
135 }
136
137 static HRESULT WINAPI AEV_GetChannelCount(IAudioEndpointVolumeEx *iface, UINT *count)
138 {
139     TRACE("(%p)->(%p)\n", iface, count);
140     if (!count)
141         return E_POINTER;
142     FIXME("stub\n");
143     return E_NOTIMPL;
144 }
145
146 static HRESULT WINAPI AEV_SetMasterVolumeLevel(IAudioEndpointVolumeEx *iface, float leveldb, const GUID *ctx)
147 {
148     TRACE("(%p)->(%f,%s)\n", iface, leveldb, debugstr_guid(ctx));
149     FIXME("stub\n");
150     return E_NOTIMPL;
151 }
152
153 static HRESULT WINAPI AEV_SetMasterVolumeLevelScalar(IAudioEndpointVolumeEx *iface, float level, const GUID *ctx)
154 {
155     TRACE("(%p)->(%f,%s)\n", iface, level, debugstr_guid(ctx));
156     FIXME("stub\n");
157     return E_NOTIMPL;
158 }
159
160 static HRESULT WINAPI AEV_GetMasterVolumeLevel(IAudioEndpointVolumeEx *iface, float *leveldb)
161 {
162     TRACE("(%p)->(%p)\n", iface, leveldb);
163     if (!leveldb)
164         return E_POINTER;
165     FIXME("stub\n");
166     return E_NOTIMPL;
167 }
168
169 static HRESULT WINAPI AEV_GetMasterVolumeLevelScalar(IAudioEndpointVolumeEx *iface, float *level)
170 {
171     TRACE("(%p)->(%p)\n", iface, level);
172     if (!level)
173         return E_POINTER;
174     FIXME("stub\n");
175     return E_NOTIMPL;
176 }
177
178 static HRESULT WINAPI AEV_SetChannelVolumeLevel(IAudioEndpointVolumeEx *iface, UINT chan, float leveldb, const GUID *ctx)
179 {
180     TRACE("(%p)->(%f,%s)\n", iface, leveldb, debugstr_guid(ctx));
181     FIXME("stub\n");
182     return E_NOTIMPL;
183 }
184
185 static HRESULT WINAPI AEV_SetChannelVolumeLevelScalar(IAudioEndpointVolumeEx *iface, UINT chan, float level, const GUID *ctx)
186 {
187     TRACE("(%p)->(%u,%f,%s)\n", iface, chan, level, debugstr_guid(ctx));
188     FIXME("stub\n");
189     return E_NOTIMPL;
190 }
191
192 static HRESULT WINAPI AEV_GetChannelVolumeLevel(IAudioEndpointVolumeEx *iface, UINT chan, float *leveldb)
193 {
194     TRACE("(%p)->(%u,%p)\n", iface, chan, leveldb);
195     if (!leveldb)
196         return E_POINTER;
197     FIXME("stub\n");
198     return E_NOTIMPL;
199 }
200
201 static HRESULT WINAPI AEV_GetChannelVolumeLevelScalar(IAudioEndpointVolumeEx *iface, UINT chan, float *level)
202 {
203     TRACE("(%p)->(%u,%p)\n", iface, chan, level);
204     if (!level)
205         return E_POINTER;
206     FIXME("stub\n");
207     return E_NOTIMPL;
208 }
209
210 static HRESULT WINAPI AEV_SetMute(IAudioEndpointVolumeEx *iface, BOOL mute, const GUID *ctx)
211 {
212     TRACE("(%p)->(%u,%s)\n", iface, mute, debugstr_guid(ctx));
213     FIXME("stub\n");
214     return E_NOTIMPL;
215 }
216
217 static HRESULT WINAPI AEV_GetMute(IAudioEndpointVolumeEx *iface, BOOL *mute)
218 {
219     TRACE("(%p)->(%p)\n", iface, mute);
220     if (!mute)
221         return E_POINTER;
222     FIXME("stub\n");
223     return E_NOTIMPL;
224 }
225
226 static HRESULT WINAPI AEV_GetVolumeStepInfo(IAudioEndpointVolumeEx *iface, UINT *stepsize, UINT *stepcount)
227 {
228     TRACE("(%p)->(%p,%p)\n", iface, stepsize, stepcount);
229     if (!stepsize && !stepcount)
230         return E_POINTER;
231     FIXME("stub\n");
232     return E_NOTIMPL;
233 }
234
235 static HRESULT WINAPI AEV_VolumeStepUp(IAudioEndpointVolumeEx *iface, const GUID *ctx)
236 {
237     TRACE("(%p)->(%s)\n", iface, debugstr_guid(ctx));
238     FIXME("stub\n");
239     return E_NOTIMPL;
240 }
241
242 static HRESULT WINAPI AEV_VolumeStepDown(IAudioEndpointVolumeEx *iface, const GUID *ctx)
243 {
244     TRACE("(%p)->(%s)\n", iface, debugstr_guid(ctx));
245     FIXME("stub\n");
246     return E_NOTIMPL;
247 }
248
249 static HRESULT WINAPI AEV_QueryHardwareSupport(IAudioEndpointVolumeEx *iface, DWORD *mask)
250 {
251     TRACE("(%p)->(%p)\n", iface, mask);
252     if (!mask)
253         return E_POINTER;
254     FIXME("stub\n");
255     return E_NOTIMPL;
256 }
257
258 static HRESULT WINAPI AEV_GetVolumeRange(IAudioEndpointVolumeEx *iface, float *mindb, float *maxdb, float *inc)
259 {
260     TRACE("(%p)->(%p,%p,%p)\n", iface, mindb, maxdb, inc);
261     if (!mindb || !maxdb || !inc)
262         return E_POINTER;
263     FIXME("stub\n");
264     return E_NOTIMPL;
265 }
266
267 static HRESULT WINAPI AEV_GetVolumeRangeChannel(IAudioEndpointVolumeEx *iface, UINT chan, float *mindb, float *maxdb, float *inc)
268 {
269     TRACE("(%p)->(%p,%p,%p)\n", iface, mindb, maxdb, inc);
270     if (!mindb || !maxdb || !inc)
271         return E_POINTER;
272     FIXME("stub\n");
273     return E_NOTIMPL;
274 }
275
276 static const IAudioEndpointVolumeExVtbl AEVImpl_Vtbl = {
277     AEV_QueryInterface,
278     AEV_AddRef,
279     AEV_Release,
280     AEV_RegisterControlChangeNotify,
281     AEV_UnregisterControlChangeNotify,
282     AEV_GetChannelCount,
283     AEV_SetMasterVolumeLevel,
284     AEV_SetMasterVolumeLevelScalar,
285     AEV_GetMasterVolumeLevel,
286     AEV_GetMasterVolumeLevelScalar,
287     AEV_SetChannelVolumeLevel,
288     AEV_SetChannelVolumeLevelScalar,
289     AEV_GetChannelVolumeLevel,
290     AEV_GetChannelVolumeLevelScalar,
291     AEV_SetMute,
292     AEV_GetMute,
293     AEV_GetVolumeStepInfo,
294     AEV_VolumeStepUp,
295     AEV_VolumeStepDown,
296     AEV_QueryHardwareSupport,
297     AEV_GetVolumeRange,
298     AEV_GetVolumeRangeChannel
299 };
300
301 #endif