2 * Direct Sound Audio Renderer
4 * Copyright 2004 Christian Costa
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "quartz_private.h"
24 #include "control_private.h"
38 #include "wine/unicode.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
43 static const WCHAR wcsInputPinName
[] = {'i','n','p','u','t',' ','p','i','n',0};
45 static const IBaseFilterVtbl DSoundRender_Vtbl
;
46 static const IPinVtbl DSoundRender_InputPin_Vtbl
;
47 static const IMemInputPinVtbl MemInputPin_Vtbl
;
48 static const IBasicAudioVtbl IBasicAudio_Vtbl
;
50 typedef struct DSoundRenderImpl
52 const IBaseFilterVtbl
* lpVtbl
;
53 const IBasicAudioVtbl
*IBasicAudio_vtbl
;
56 CRITICAL_SECTION csFilter
;
58 REFERENCE_TIME rtStreamStart
;
59 IReferenceClock
* pClock
;
60 FILTER_INFO filterInfo
;
66 LPDIRECTSOUNDBUFFER dsbuffer
;
72 static HRESULT
DSoundRender_InputPin_Construct(const PIN_INFO
* pPinInfo
, SAMPLEPROC pSampleProc
, LPVOID pUserData
, QUERYACCEPTPROC pQueryAccept
, LPCRITICAL_SECTION pCritSec
, IPin
** ppPin
)
78 if (pPinInfo
->dir
!= PINDIR_INPUT
)
80 ERR("Pin direction(%x) != PINDIR_INPUT\n", pPinInfo
->dir
);
84 pPinImpl
= CoTaskMemAlloc(sizeof(*pPinImpl
));
89 if (SUCCEEDED(InputPin_Init(pPinInfo
, pSampleProc
, pUserData
, pQueryAccept
, pCritSec
, pPinImpl
)))
91 pPinImpl
->pin
.lpVtbl
= &DSoundRender_InputPin_Vtbl
;
92 pPinImpl
->lpVtblMemInput
= &MemInputPin_Vtbl
;
94 *ppPin
= (IPin
*)(&pPinImpl
->pin
.lpVtbl
);
101 #define DSBUFFERSIZE 8192
103 static HRESULT
DSoundRender_CreateSoundBuffer(IBaseFilter
* iface
)
106 WAVEFORMATEX wav_fmt
;
108 WAVEFORMATEX
* format
;
109 DSBUFFERDESC buf_desc
;
110 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
112 hr
= IPin_ConnectionMediaType(This
->ppPins
[0], &amt
);
114 ERR("Unable to retrieve media type\n");
118 TRACE("MajorType %s\n", debugstr_guid(&amt
.majortype
));
119 TRACE("SubType %s\n", debugstr_guid(&amt
.subtype
));
120 TRACE("Format %s\n", debugstr_guid(&amt
.formattype
));
121 TRACE("Size %d\n", amt
.cbFormat
);
123 dump_AM_MEDIA_TYPE(&amt
);
125 format
= (WAVEFORMATEX
*)amt
.pbFormat
;
126 TRACE("wFormatTag = %x %x\n", format
->wFormatTag
, WAVE_FORMAT_PCM
);
127 TRACE("nChannels = %d\n", format
->nChannels
);
128 TRACE("nSamplesPerSec = %u\n", format
->nSamplesPerSec
);
129 TRACE("nAvgBytesPerSec = %u\n", format
->nAvgBytesPerSec
);
130 TRACE("nBlockAlign = %d\n", format
->nBlockAlign
);
131 TRACE("wBitsPerSample = %d\n", format
->wBitsPerSample
);
132 TRACE("cbSize = %d\n", format
->cbSize
);
134 hr
= DirectSoundCreate(NULL
, &This
->dsound
, NULL
);
136 ERR("Cannot create Direct Sound object\n");
143 memset(&buf_desc
,0,sizeof(DSBUFFERDESC
));
144 buf_desc
.dwSize
= sizeof(DSBUFFERDESC
);
145 buf_desc
.dwBufferBytes
= DSBUFFERSIZE
;
146 buf_desc
.lpwfxFormat
= &wav_fmt
;
147 hr
= IDirectSound_CreateSoundBuffer(This
->dsound
, &buf_desc
, &This
->dsbuffer
, NULL
);
149 ERR("Can't create sound buffer !\n");
150 IDirectSound_Release(This
->dsound
);
159 static HRESULT
DSoundRender_SendSampleData(DSoundRenderImpl
* This
, LPBYTE data
, DWORD size
)
162 LPBYTE lpbuf1
= NULL
;
163 LPBYTE lpbuf2
= NULL
;
167 DWORD play_pos
,buf_free
;
171 hr
= IDirectSoundBuffer_GetCurrentPosition(This
->dsbuffer
, &play_pos
, NULL
);
174 ERR("Error GetCurrentPosition: %x\n", hr
);
177 if (This
->write_pos
< play_pos
)
178 buf_free
= play_pos
-This
->write_pos
;
180 buf_free
= DSBUFFERSIZE
- This
->write_pos
+ play_pos
;
182 /* This situation is ambiguous; Assume full when playing */
183 if(buf_free
== DSBUFFERSIZE
&& This
->started
)
189 size2
= min(buf_free
, size
);
190 hr
= IDirectSoundBuffer_Lock(This
->dsbuffer
, This
->write_pos
, size2
, (LPVOID
*)&lpbuf1
, &dwsize1
, (LPVOID
*)&lpbuf2
, &dwsize2
, 0);
192 ERR("Unable to lock sound buffer! (%x)\n", hr
);
195 /* TRACE("write_pos=%d, size=%d, sz1=%d, sz2=%d\n", This->write_pos, size2, dwsize1, dwsize2); */
197 memcpy(lpbuf1
, data
, dwsize1
);
199 memcpy(lpbuf2
, data
+ dwsize1
, dwsize2
);
201 hr
= IDirectSoundBuffer_Unlock(This
->dsbuffer
, lpbuf1
, dwsize1
, lpbuf2
, dwsize2
);
203 ERR("Unable to unlock sound buffer! (%x)\n", hr
);
206 hr
= IDirectSoundBuffer_Play(This
->dsbuffer
, 0, 0, DSBPLAY_LOOPING
);
208 This
->started
= TRUE
;
210 ERR("Can't start playing! (%x)\n", hr
);
212 size
-= dwsize1
+ dwsize2
;
213 data
+= dwsize1
+ dwsize2
;
214 This
->write_pos
= (This
->write_pos
+ dwsize1
+ dwsize2
) % DSBUFFERSIZE
;
224 static HRESULT
DSoundRender_Sample(LPVOID iface
, IMediaSample
* pSample
)
226 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
227 LPBYTE pbSrcStream
= NULL
;
228 long cbSrcStream
= 0;
229 REFERENCE_TIME tStart
, tStop
;
232 TRACE("%p %p\n", iface
, pSample
);
234 if (This
->state
!= State_Running
)
235 return VFW_E_WRONG_STATE
;
237 hr
= IMediaSample_GetPointer(pSample
, &pbSrcStream
);
240 ERR("Cannot get pointer to sample data (%x)\n", hr
);
244 hr
= IMediaSample_GetTime(pSample
, &tStart
, &tStop
);
246 ERR("Cannot get sample time (%x)\n", hr
);
248 cbSrcStream
= IMediaSample_GetActualDataLength(pSample
);
250 TRACE("Sample data ptr = %p, size = %ld\n", pbSrcStream
, cbSrcStream
);
252 #if 0 /* For debugging purpose */
255 for(i
= 0; i
< cbSrcStream
; i
++)
257 if ((i
!=0) && !(i
%16))
259 TRACE("%02x ", pbSrcStream
[i
]);
267 hr
= DSoundRender_CreateSoundBuffer(iface
);
272 ERR("Unable to create DSound buffer\n");
277 hr
= DSoundRender_SendSampleData(This
, pbSrcStream
, cbSrcStream
);
282 static HRESULT
DSoundRender_QueryAccept(LPVOID iface
, const AM_MEDIA_TYPE
* pmt
)
284 WAVEFORMATEX
* format
= (WAVEFORMATEX
*)pmt
->pbFormat
;
285 TRACE("wFormatTag = %x %x\n", format
->wFormatTag
, WAVE_FORMAT_PCM
);
286 TRACE("nChannels = %d\n", format
->nChannels
);
287 TRACE("nSamplesPerSec = %d\n", format
->nAvgBytesPerSec
);
288 TRACE("nAvgBytesPerSec = %d\n", format
->nAvgBytesPerSec
);
289 TRACE("nBlockAlign = %d\n", format
->nBlockAlign
);
290 TRACE("wBitsPerSample = %d\n", format
->wBitsPerSample
);
292 if (IsEqualIID(&pmt
->majortype
, &MEDIATYPE_Audio
) && IsEqualIID(&pmt
->subtype
, &MEDIASUBTYPE_PCM
))
297 HRESULT
DSoundRender_create(IUnknown
* pUnkOuter
, LPVOID
* ppv
)
301 DSoundRenderImpl
* pDSoundRender
;
303 TRACE("(%p, %p)\n", pUnkOuter
, ppv
);
308 return CLASS_E_NOAGGREGATION
;
310 pDSoundRender
= CoTaskMemAlloc(sizeof(DSoundRenderImpl
));
312 return E_OUTOFMEMORY
;
313 ZeroMemory(pDSoundRender
, sizeof(DSoundRenderImpl
));
315 pDSoundRender
->lpVtbl
= &DSoundRender_Vtbl
;
316 pDSoundRender
->IBasicAudio_vtbl
= &IBasicAudio_Vtbl
;
317 pDSoundRender
->refCount
= 1;
318 InitializeCriticalSection(&pDSoundRender
->csFilter
);
319 pDSoundRender
->csFilter
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": DSoundRenderImpl.csFilter");
320 pDSoundRender
->state
= State_Stopped
;
322 pDSoundRender
->ppPins
= CoTaskMemAlloc(1 * sizeof(IPin
*));
323 if (!pDSoundRender
->ppPins
)
325 pDSoundRender
->csFilter
.DebugInfo
->Spare
[0] = 0;
326 DeleteCriticalSection(&pDSoundRender
->csFilter
);
327 CoTaskMemFree(pDSoundRender
);
328 return E_OUTOFMEMORY
;
331 /* construct input pin */
332 piInput
.dir
= PINDIR_INPUT
;
333 piInput
.pFilter
= (IBaseFilter
*)pDSoundRender
;
334 lstrcpynW(piInput
.achName
, wcsInputPinName
, sizeof(piInput
.achName
) / sizeof(piInput
.achName
[0]));
335 hr
= DSoundRender_InputPin_Construct(&piInput
, DSoundRender_Sample
, (LPVOID
)pDSoundRender
, DSoundRender_QueryAccept
, &pDSoundRender
->csFilter
, (IPin
**)&pDSoundRender
->pInputPin
);
339 pDSoundRender
->ppPins
[0] = (IPin
*)pDSoundRender
->pInputPin
;
340 *ppv
= (LPVOID
)pDSoundRender
;
344 CoTaskMemFree(pDSoundRender
->ppPins
);
345 pDSoundRender
->csFilter
.DebugInfo
->Spare
[0] = 0;
346 DeleteCriticalSection(&pDSoundRender
->csFilter
);
347 CoTaskMemFree(pDSoundRender
);
353 static HRESULT WINAPI
DSoundRender_QueryInterface(IBaseFilter
* iface
, REFIID riid
, LPVOID
* ppv
)
355 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
356 TRACE("(%p, %p)->(%s, %p)\n", This
, iface
, qzdebugstr_guid(riid
), ppv
);
360 if (IsEqualIID(riid
, &IID_IUnknown
))
362 else if (IsEqualIID(riid
, &IID_IPersist
))
364 else if (IsEqualIID(riid
, &IID_IMediaFilter
))
366 else if (IsEqualIID(riid
, &IID_IBaseFilter
))
368 else if (IsEqualIID(riid
, &IID_IBasicAudio
))
369 *ppv
= (LPVOID
)&(This
->IBasicAudio_vtbl
);
373 IUnknown_AddRef((IUnknown
*)(*ppv
));
377 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
379 return E_NOINTERFACE
;
382 static ULONG WINAPI
DSoundRender_AddRef(IBaseFilter
* iface
)
384 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
385 ULONG refCount
= InterlockedIncrement(&This
->refCount
);
387 TRACE("(%p/%p)->() AddRef from %d\n", This
, iface
, refCount
- 1);
392 static ULONG WINAPI
DSoundRender_Release(IBaseFilter
* iface
)
394 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
395 ULONG refCount
= InterlockedDecrement(&This
->refCount
);
397 TRACE("(%p)->() Release from %d\n", This
, refCount
+ 1);
403 This
->csFilter
.DebugInfo
->Spare
[0] = 0;
404 DeleteCriticalSection(&This
->csFilter
);
406 IReferenceClock_Release(This
->pClock
);
409 IDirectSoundBuffer_Release(This
->dsbuffer
);
410 This
->dsbuffer
= NULL
;
412 IDirectSound_Release(This
->dsound
);
415 if (SUCCEEDED(IPin_ConnectedTo(This
->ppPins
[0], &pConnectedTo
)))
417 IPin_Disconnect(pConnectedTo
);
418 IPin_Release(pConnectedTo
);
420 IPin_Disconnect(This
->ppPins
[0]);
422 IPin_Release(This
->ppPins
[0]);
424 CoTaskMemFree(This
->ppPins
);
426 This
->IBasicAudio_vtbl
= NULL
;
428 TRACE("Destroying Audio Renderer\n");
437 /** IPersist methods **/
439 static HRESULT WINAPI
DSoundRender_GetClassID(IBaseFilter
* iface
, CLSID
* pClsid
)
441 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
442 TRACE("(%p/%p)->(%p)\n", This
, iface
, pClsid
);
444 *pClsid
= CLSID_DSoundRender
;
449 /** IMediaFilter methods **/
451 static HRESULT WINAPI
DSoundRender_Stop(IBaseFilter
* iface
)
454 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
456 TRACE("(%p/%p)->()\n", This
, iface
);
458 EnterCriticalSection(&This
->csFilter
);
463 hr
= IDirectSoundBuffer_GetStatus(This
->dsbuffer
, &state
);
466 if (state
& DSBSTATUS_PLAYING
)
467 hr
= IDirectSoundBuffer_Stop(This
->dsbuffer
);
472 This
->started
= FALSE
;
473 This
->state
= State_Stopped
;
476 LeaveCriticalSection(&This
->csFilter
);
481 static HRESULT WINAPI
DSoundRender_Pause(IBaseFilter
* iface
)
484 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
486 TRACE("(%p/%p)->()\n", This
, iface
);
488 EnterCriticalSection(&This
->csFilter
);
493 hr
= IDirectSoundBuffer_GetStatus(This
->dsbuffer
, &state
);
496 if (state
& DSBSTATUS_PLAYING
)
497 hr
= IDirectSoundBuffer_Stop(This
->dsbuffer
);
502 This
->started
= FALSE
;
503 This
->state
= State_Paused
;
506 LeaveCriticalSection(&This
->csFilter
);
511 static HRESULT WINAPI
DSoundRender_Run(IBaseFilter
* iface
, REFERENCE_TIME tStart
)
514 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
516 TRACE("(%p/%p)->(%s)\n", This
, iface
, wine_dbgstr_longlong(tStart
));
518 EnterCriticalSection(&This
->csFilter
);
520 This
->rtStreamStart
= tStart
;
521 This
->state
= State_Running
;
523 LeaveCriticalSection(&This
->csFilter
);
528 static HRESULT WINAPI
DSoundRender_GetState(IBaseFilter
* iface
, DWORD dwMilliSecsTimeout
, FILTER_STATE
*pState
)
530 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
532 TRACE("(%p/%p)->(%d, %p)\n", This
, iface
, dwMilliSecsTimeout
, pState
);
534 EnterCriticalSection(&This
->csFilter
);
536 *pState
= This
->state
;
538 LeaveCriticalSection(&This
->csFilter
);
543 static HRESULT WINAPI
DSoundRender_SetSyncSource(IBaseFilter
* iface
, IReferenceClock
*pClock
)
545 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
547 TRACE("(%p/%p)->(%p)\n", This
, iface
, pClock
);
549 EnterCriticalSection(&This
->csFilter
);
552 IReferenceClock_Release(This
->pClock
);
553 This
->pClock
= pClock
;
555 IReferenceClock_AddRef(This
->pClock
);
557 LeaveCriticalSection(&This
->csFilter
);
562 static HRESULT WINAPI
DSoundRender_GetSyncSource(IBaseFilter
* iface
, IReferenceClock
**ppClock
)
564 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
566 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppClock
);
568 EnterCriticalSection(&This
->csFilter
);
570 *ppClock
= This
->pClock
;
571 IReferenceClock_AddRef(This
->pClock
);
573 LeaveCriticalSection(&This
->csFilter
);
578 /** IBaseFilter implementation **/
580 static HRESULT WINAPI
DSoundRender_EnumPins(IBaseFilter
* iface
, IEnumPins
**ppEnum
)
583 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
585 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppEnum
);
587 epd
.cPins
= 1; /* input pin */
588 epd
.ppPins
= This
->ppPins
;
589 return IEnumPinsImpl_Construct(&epd
, ppEnum
);
592 static HRESULT WINAPI
DSoundRender_FindPin(IBaseFilter
* iface
, LPCWSTR Id
, IPin
**ppPin
)
594 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
596 TRACE("(%p/%p)->(%s,%p)\n", This
, iface
, debugstr_w(Id
), ppPin
);
598 FIXME("DSoundRender::FindPin(...)\n");
600 /* FIXME: critical section */
605 static HRESULT WINAPI
DSoundRender_QueryFilterInfo(IBaseFilter
* iface
, FILTER_INFO
*pInfo
)
607 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
609 TRACE("(%p/%p)->(%p)\n", This
, iface
, pInfo
);
611 strcpyW(pInfo
->achName
, This
->filterInfo
.achName
);
612 pInfo
->pGraph
= This
->filterInfo
.pGraph
;
615 IFilterGraph_AddRef(pInfo
->pGraph
);
620 static HRESULT WINAPI
DSoundRender_JoinFilterGraph(IBaseFilter
* iface
, IFilterGraph
*pGraph
, LPCWSTR pName
)
622 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
624 TRACE("(%p/%p)->(%p, %s)\n", This
, iface
, pGraph
, debugstr_w(pName
));
626 EnterCriticalSection(&This
->csFilter
);
629 strcpyW(This
->filterInfo
.achName
, pName
);
631 *This
->filterInfo
.achName
= '\0';
632 This
->filterInfo
.pGraph
= pGraph
; /* NOTE: do NOT increase ref. count */
634 LeaveCriticalSection(&This
->csFilter
);
639 static HRESULT WINAPI
DSoundRender_QueryVendorInfo(IBaseFilter
* iface
, LPWSTR
*pVendorInfo
)
641 DSoundRenderImpl
*This
= (DSoundRenderImpl
*)iface
;
642 TRACE("(%p/%p)->(%p)\n", This
, iface
, pVendorInfo
);
646 static const IBaseFilterVtbl DSoundRender_Vtbl
=
648 DSoundRender_QueryInterface
,
650 DSoundRender_Release
,
651 DSoundRender_GetClassID
,
655 DSoundRender_GetState
,
656 DSoundRender_SetSyncSource
,
657 DSoundRender_GetSyncSource
,
658 DSoundRender_EnumPins
,
659 DSoundRender_FindPin
,
660 DSoundRender_QueryFilterInfo
,
661 DSoundRender_JoinFilterGraph
,
662 DSoundRender_QueryVendorInfo
665 static HRESULT WINAPI
DSoundRender_InputPin_EndOfStream(IPin
* iface
)
667 InputPin
* This
= (InputPin
*)iface
;
668 IMediaEventSink
* pEventSink
;
671 TRACE("(%p/%p)->()\n", This
, iface
);
673 hr
= IFilterGraph_QueryInterface(((DSoundRenderImpl
*)This
->pin
.pinInfo
.pFilter
)->filterInfo
.pGraph
, &IID_IMediaEventSink
, (LPVOID
*)&pEventSink
);
676 /* FIXME: We should wait that all audio data has been played */
677 hr
= IMediaEventSink_Notify(pEventSink
, EC_COMPLETE
, S_OK
, 0);
678 IMediaEventSink_Release(pEventSink
);
684 static const IPinVtbl DSoundRender_InputPin_Vtbl
=
686 InputPin_QueryInterface
,
690 InputPin_ReceiveConnection
,
692 IPinImpl_ConnectedTo
,
693 IPinImpl_ConnectionMediaType
,
694 IPinImpl_QueryPinInfo
,
695 IPinImpl_QueryDirection
,
697 IPinImpl_QueryAccept
,
698 IPinImpl_EnumMediaTypes
,
699 IPinImpl_QueryInternalConnections
,
700 DSoundRender_InputPin_EndOfStream
,
706 static const IMemInputPinVtbl MemInputPin_Vtbl
=
708 MemInputPin_QueryInterface
,
711 MemInputPin_GetAllocator
,
712 MemInputPin_NotifyAllocator
,
713 MemInputPin_GetAllocatorRequirements
,
715 MemInputPin_ReceiveMultiple
,
716 MemInputPin_ReceiveCanBlock
719 /*** IUnknown methods ***/
720 static HRESULT WINAPI
Basicaudio_QueryInterface(IBasicAudio
*iface
,
723 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
725 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
727 return DSoundRender_QueryInterface((IBaseFilter
*)This
, riid
, ppvObj
);
730 static ULONG WINAPI
Basicaudio_AddRef(IBasicAudio
*iface
) {
731 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
733 TRACE("(%p/%p)->()\n", This
, iface
);
735 return DSoundRender_AddRef((IBaseFilter
*)This
);
738 static ULONG WINAPI
Basicaudio_Release(IBasicAudio
*iface
) {
739 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
741 TRACE("(%p/%p)->()\n", This
, iface
);
743 return DSoundRender_Release((IBaseFilter
*)This
);
746 /*** IDispatch methods ***/
747 static HRESULT WINAPI
Basicaudio_GetTypeInfoCount(IBasicAudio
*iface
,
749 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
751 TRACE("(%p/%p)->(%p): stub !!!\n", This
, iface
, pctinfo
);
756 static HRESULT WINAPI
Basicaudio_GetTypeInfo(IBasicAudio
*iface
,
759 ITypeInfo
**ppTInfo
) {
760 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
762 TRACE("(%p/%p)->(%d, %d, %p): stub !!!\n", This
, iface
, iTInfo
, lcid
, ppTInfo
);
767 static HRESULT WINAPI
Basicaudio_GetIDsOfNames(IBasicAudio
*iface
,
773 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
775 TRACE("(%p/%p)->(%s (%p), %p, %d, %d, %p): stub !!!\n", This
, iface
, debugstr_guid(riid
), riid
, rgszNames
, cNames
, lcid
, rgDispId
);
780 static HRESULT WINAPI
Basicaudio_Invoke(IBasicAudio
*iface
,
785 DISPPARAMS
*pDispParams
,
789 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
791 TRACE("(%p/%p)->(%d, %s (%p), %d, %04x, %p, %p, %p, %p): stub !!!\n", This
, iface
, dispIdMember
, debugstr_guid(riid
), riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
796 /*** IBasicAudio methods ***/
797 static HRESULT WINAPI
Basicaudio_put_Volume(IBasicAudio
*iface
,
799 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
801 TRACE("(%p/%p)->(%ld): stub !!!\n", This
, iface
, lVolume
);
806 static HRESULT WINAPI
Basicaudio_get_Volume(IBasicAudio
*iface
,
808 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
810 TRACE("(%p/%p)->(%p): stub !!!\n", This
, iface
, plVolume
);
815 static HRESULT WINAPI
Basicaudio_put_Balance(IBasicAudio
*iface
,
817 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
819 TRACE("(%p/%p)->(%ld): stub !!!\n", This
, iface
, lBalance
);
824 static HRESULT WINAPI
Basicaudio_get_Balance(IBasicAudio
*iface
,
826 ICOM_THIS_MULTI(DSoundRenderImpl
, IBasicAudio_vtbl
, iface
);
828 TRACE("(%p/%p)->(%p): stub !!!\n", This
, iface
, plBalance
);
833 static const IBasicAudioVtbl IBasicAudio_Vtbl
=
835 Basicaudio_QueryInterface
,
838 Basicaudio_GetTypeInfoCount
,
839 Basicaudio_GetTypeInfo
,
840 Basicaudio_GetIDsOfNames
,
842 Basicaudio_put_Volume
,
843 Basicaudio_get_Volume
,
844 Basicaudio_put_Balance
,
845 Basicaudio_get_Balance