wined3d: Make sure volumes have memory allocated.
[wine] / dlls / quartz / dsoundrender.c
1 /*
2  * Direct Sound Audio Renderer
3  *
4  * Copyright 2004 Christian Costa
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22
23 #include "quartz_private.h"
24 #include "control_private.h"
25 #include "pin.h"
26
27 #include "uuids.h"
28 #include "mmreg.h"
29 #include "vfwmsgs.h"
30 #include "fourcc.h"
31 #include "windef.h"
32 #include "winbase.h"
33 #include "dshow.h"
34 #include "evcode.h"
35 #include "strmif.h"
36 #include "dsound.h"
37
38 #include "wine/unicode.h"
39 #include "wine/debug.h"
40
41 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
42
43 static const WCHAR wcsInputPinName[] = {'i','n','p','u','t',' ','p','i','n',0};
44
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;
49
50 typedef struct DSoundRenderImpl
51 {
52     const IBaseFilterVtbl * lpVtbl;
53     const IBasicAudioVtbl *IBasicAudio_vtbl;
54
55     LONG refCount;
56     CRITICAL_SECTION csFilter;
57     FILTER_STATE state;
58     REFERENCE_TIME rtStreamStart;
59     IReferenceClock * pClock;
60     FILTER_INFO filterInfo;
61
62     InputPin * pInputPin;
63     IPin ** ppPins;
64
65     LPDIRECTSOUND dsound;
66     LPDIRECTSOUNDBUFFER dsbuffer;
67     DWORD write_pos;
68     BOOL init;
69     BOOL started;
70 } DSoundRenderImpl;
71
72 static HRESULT DSoundRender_InputPin_Construct(const PIN_INFO * pPinInfo, SAMPLEPROC pSampleProc, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
73 {
74     InputPin * pPinImpl;
75
76     *ppPin = NULL;
77
78     if (pPinInfo->dir != PINDIR_INPUT)
79     {
80         ERR("Pin direction(%x) != PINDIR_INPUT\n", pPinInfo->dir);
81         return E_INVALIDARG;
82     }
83
84     pPinImpl = CoTaskMemAlloc(sizeof(*pPinImpl));
85
86     if (!pPinImpl)
87         return E_OUTOFMEMORY;
88
89     if (SUCCEEDED(InputPin_Init(pPinInfo, pSampleProc, pUserData, pQueryAccept, pCritSec, pPinImpl)))
90     {
91         pPinImpl->pin.lpVtbl = &DSoundRender_InputPin_Vtbl;
92         pPinImpl->lpVtblMemInput = &MemInputPin_Vtbl;
93         
94         *ppPin = (IPin *)(&pPinImpl->pin.lpVtbl);
95         return S_OK;
96     }
97     return E_FAIL;
98 }
99
100
101 #define DSBUFFERSIZE 8192
102
103 static HRESULT DSoundRender_CreateSoundBuffer(IBaseFilter * iface)
104 {
105     HRESULT hr;
106     WAVEFORMATEX wav_fmt;
107     AM_MEDIA_TYPE amt;
108     WAVEFORMATEX* format;
109     DSBUFFERDESC buf_desc;
110     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
111
112     hr = IPin_ConnectionMediaType(This->ppPins[0], &amt);
113     if (FAILED(hr)) {
114         ERR("Unable to retrieve media type\n");
115         return hr;
116     }
117
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);
122
123     dump_AM_MEDIA_TYPE(&amt);
124     
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);
133     
134     hr = DirectSoundCreate(NULL, &This->dsound, NULL);
135     if (FAILED(hr)) {
136         ERR("Cannot create Direct Sound object\n");
137         return hr;
138     }
139
140     wav_fmt = *format;
141     wav_fmt.cbSize = 0;
142
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);
148     if (FAILED(hr)) {
149         ERR("Can't create sound buffer !\n");
150         IDirectSound_Release(This->dsound);
151         return hr;
152     }
153
154     This->write_pos = 0;
155     
156     return hr;
157 }
158
159 static HRESULT DSoundRender_SendSampleData(DSoundRenderImpl* This, LPBYTE data, DWORD size)
160 {
161     HRESULT hr;
162     LPBYTE lpbuf1 = NULL;
163     LPBYTE lpbuf2 = NULL;
164     DWORD dwsize1 = 0;
165     DWORD dwsize2 = 0;
166     DWORD size2;
167     DWORD play_pos,buf_free;
168
169     if (This->state != State_Running) {
170         DWORD state;
171         if (SUCCEEDED(IDirectSoundBuffer_GetStatus(This->dsbuffer, &state))) {
172             if (state & DSBSTATUS_PLAYING) {
173                 IDirectSoundBuffer_Stop(This->dsbuffer);
174                 This->started = FALSE;
175             }
176         }
177         return S_OK;
178     }
179
180     while (1)
181     {
182         hr = IDirectSoundBuffer_GetCurrentPosition(This->dsbuffer, &play_pos, NULL);
183         if (hr != DS_OK)
184         {
185             ERR("Error GetCurrentPosition: %x\n", hr);
186             break;
187         }
188         if (This->write_pos < play_pos)
189              buf_free = play_pos-This->write_pos;
190         else
191              buf_free = DSBUFFERSIZE - This->write_pos + play_pos;
192
193         /* This situation is ambiguous; Assume full when playing */
194         if(buf_free == DSBUFFERSIZE && This->started)
195         {
196             Sleep(10);
197             continue;
198         }
199
200         size2 = min(buf_free, size);
201         hr = IDirectSoundBuffer_Lock(This->dsbuffer, This->write_pos, size2, &lpbuf1, &dwsize1, &lpbuf2, &dwsize2, 0);
202         if (hr != DS_OK) {
203             ERR("Unable to lock sound buffer! (%x)\n", hr);
204             break;
205         }
206         /* TRACE("write_pos=%d, size=%d, sz1=%d, sz2=%d\n", This->write_pos, size2, dwsize1, dwsize2); */
207
208         memcpy(lpbuf1, data, dwsize1);
209         if (dwsize2)
210             memcpy(lpbuf2, data + dwsize1, dwsize2);
211
212         hr = IDirectSoundBuffer_Unlock(This->dsbuffer, lpbuf1, dwsize1, lpbuf2, dwsize2);
213         if (hr != DS_OK)
214             ERR("Unable to unlock sound buffer! (%x)\n", hr);
215         if (!This->started)
216         {
217             hr = IDirectSoundBuffer_Play(This->dsbuffer, 0, 0, DSBPLAY_LOOPING);
218             if (hr == DS_OK)
219                 This->started = TRUE;
220             else
221                 ERR("Can't start playing! (%x)\n", hr);
222         }
223         size -= dwsize1 + dwsize2;
224         data += dwsize1 + dwsize2;
225         This->write_pos = (This->write_pos + dwsize1 + dwsize2) % DSBUFFERSIZE;
226
227         if (!size)
228             break;
229         Sleep(10);
230     }
231
232     return hr;
233 }
234
235 static HRESULT DSoundRender_Sample(LPVOID iface, IMediaSample * pSample)
236 {
237     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
238     LPBYTE pbSrcStream = NULL;
239     long cbSrcStream = 0;
240     REFERENCE_TIME tStart, tStop;
241     HRESULT hr;
242
243     TRACE("%p %p\n", iface, pSample);
244     
245     hr = IMediaSample_GetPointer(pSample, &pbSrcStream);
246     if (FAILED(hr))
247     {
248         ERR("Cannot get pointer to sample data (%x)\n", hr);
249         return hr;
250     }
251
252     hr = IMediaSample_GetTime(pSample, &tStart, &tStop);
253     if (FAILED(hr))
254         ERR("Cannot get sample time (%x)\n", hr);
255
256     cbSrcStream = IMediaSample_GetActualDataLength(pSample);
257
258     TRACE("Sample data ptr = %p, size = %ld\n", pbSrcStream, cbSrcStream);
259
260 #if 0 /* For debugging purpose */
261     {
262         int i;
263         for(i = 0; i < cbSrcStream; i++)
264         {
265             if ((i!=0) && !(i%16))
266                 TRACE("\n");
267             TRACE("%02x ", pbSrcStream[i]);
268         }
269         TRACE("\n");
270     }
271 #endif
272   
273     if (!This->init)
274     {
275         hr = DSoundRender_CreateSoundBuffer(iface);
276         if (SUCCEEDED(hr))
277             This->init = TRUE;
278         else
279         {
280             ERR("Unable to create DSound buffer\n");
281             return hr;
282         }
283     }
284     
285     hr = DSoundRender_SendSampleData(This, pbSrcStream, cbSrcStream);
286
287     return hr;
288 }
289
290 static HRESULT DSoundRender_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt)
291 {
292     WAVEFORMATEX* format = (WAVEFORMATEX*)pmt->pbFormat;
293     TRACE("wFormatTag = %x %x\n", format->wFormatTag, WAVE_FORMAT_PCM);
294     TRACE("nChannels = %d\n", format->nChannels);
295     TRACE("nSamplesPerSec = %d\n", format->nAvgBytesPerSec);
296     TRACE("nAvgBytesPerSec = %d\n", format->nAvgBytesPerSec);
297     TRACE("nBlockAlign = %d\n", format->nBlockAlign);
298     TRACE("wBitsPerSample = %d\n", format->wBitsPerSample);
299
300     if (IsEqualIID(&pmt->majortype, &MEDIATYPE_Audio) && IsEqualIID(&pmt->subtype, &MEDIASUBTYPE_PCM))
301         return S_OK;
302     return S_FALSE;
303 }
304
305 HRESULT DSoundRender_create(IUnknown * pUnkOuter, LPVOID * ppv)
306 {
307     HRESULT hr;
308     PIN_INFO piInput;
309     DSoundRenderImpl * pDSoundRender;
310
311     TRACE("(%p, %p)\n", pUnkOuter, ppv);
312
313     *ppv = NULL;
314
315     if (pUnkOuter)
316         return CLASS_E_NOAGGREGATION;
317     
318     pDSoundRender = CoTaskMemAlloc(sizeof(DSoundRenderImpl));
319
320     pDSoundRender->lpVtbl = &DSoundRender_Vtbl;
321     pDSoundRender->IBasicAudio_vtbl = &IBasicAudio_Vtbl;
322     pDSoundRender->refCount = 1;
323     InitializeCriticalSection(&pDSoundRender->csFilter);
324     pDSoundRender->state = State_Stopped;
325     pDSoundRender->pClock = NULL;
326     pDSoundRender->init = FALSE;
327     pDSoundRender->started = FALSE;
328     ZeroMemory(&pDSoundRender->filterInfo, sizeof(FILTER_INFO));
329
330     pDSoundRender->ppPins = CoTaskMemAlloc(1 * sizeof(IPin *));
331
332     /* construct input pin */
333     piInput.dir = PINDIR_INPUT;
334     piInput.pFilter = (IBaseFilter *)pDSoundRender;
335     lstrcpynW(piInput.achName, wcsInputPinName, sizeof(piInput.achName) / sizeof(piInput.achName[0]));
336     hr = DSoundRender_InputPin_Construct(&piInput, DSoundRender_Sample, (LPVOID)pDSoundRender, DSoundRender_QueryAccept, &pDSoundRender->csFilter, (IPin **)&pDSoundRender->pInputPin);
337
338     if (SUCCEEDED(hr))
339     {
340         pDSoundRender->ppPins[0] = (IPin *)pDSoundRender->pInputPin;
341         *ppv = (LPVOID)pDSoundRender;
342     }
343     else
344     {
345         CoTaskMemFree(pDSoundRender->ppPins);
346         DeleteCriticalSection(&pDSoundRender->csFilter);
347         CoTaskMemFree(pDSoundRender);
348     }
349
350     return hr;
351 }
352
353 static HRESULT WINAPI DSoundRender_QueryInterface(IBaseFilter * iface, REFIID riid, LPVOID * ppv)
354 {
355     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
356     TRACE("(%p, %p)->(%s, %p)\n", This, iface, qzdebugstr_guid(riid), ppv);
357
358     *ppv = NULL;
359
360     if (IsEqualIID(riid, &IID_IUnknown))
361         *ppv = (LPVOID)This;
362     else if (IsEqualIID(riid, &IID_IPersist))
363         *ppv = (LPVOID)This;
364     else if (IsEqualIID(riid, &IID_IMediaFilter))
365         *ppv = (LPVOID)This;
366     else if (IsEqualIID(riid, &IID_IBaseFilter))
367         *ppv = (LPVOID)This;
368     else if (IsEqualIID(riid, &IID_IBasicAudio))
369         *ppv = (LPVOID)&(This->IBasicAudio_vtbl);
370
371     if (*ppv)
372     {
373         IUnknown_AddRef((IUnknown *)(*ppv));
374         return S_OK;
375     }
376
377     FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
378
379     return E_NOINTERFACE;
380 }
381
382 static ULONG WINAPI DSoundRender_AddRef(IBaseFilter * iface)
383 {
384     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
385     ULONG refCount = InterlockedIncrement(&This->refCount);
386
387     TRACE("(%p/%p)->() AddRef from %d\n", This, iface, refCount - 1);
388
389     return refCount;
390 }
391
392 static ULONG WINAPI DSoundRender_Release(IBaseFilter * iface)
393 {
394     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
395     ULONG refCount = InterlockedDecrement(&This->refCount);
396
397     TRACE("(%p/%p)->() Release from %d\n", This, iface, refCount + 1);
398
399     if (!refCount)
400     {
401         DeleteCriticalSection(&This->csFilter);
402         if (This->pClock)
403             IReferenceClock_Release(This->pClock);
404
405         if (This->dsbuffer)
406             IDirectSoundBuffer_Release(This->dsbuffer);
407         This->dsbuffer = NULL;
408         if (This->dsound)
409             IDirectSound_Release(This->dsound);
410         This->dsound = NULL;
411        
412         IPin_Release(This->ppPins[0]);
413         
414         HeapFree(GetProcessHeap(), 0, This->ppPins);
415         This->lpVtbl = NULL;
416         This->IBasicAudio_vtbl = NULL;
417         
418         TRACE("Destroying Audio Renderer\n");
419         CoTaskMemFree(This);
420         
421         return 0;
422     }
423     else
424         return refCount;
425 }
426
427 /** IPersist methods **/
428
429 static HRESULT WINAPI DSoundRender_GetClassID(IBaseFilter * iface, CLSID * pClsid)
430 {
431     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
432     TRACE("(%p/%p)->(%p)\n", This, iface, pClsid);
433
434     *pClsid = CLSID_DSoundRender;
435
436     return S_OK;
437 }
438
439 /** IMediaFilter methods **/
440
441 static HRESULT WINAPI DSoundRender_Stop(IBaseFilter * iface)
442 {
443     HRESULT hr = S_OK;
444     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
445
446     TRACE("(%p/%p)->()\n", This, iface);
447
448     EnterCriticalSection(&This->csFilter);
449     {
450         This->state = State_Stopped;
451     }
452     LeaveCriticalSection(&This->csFilter);
453     
454     return hr;
455 }
456
457 static HRESULT WINAPI DSoundRender_Pause(IBaseFilter * iface)
458 {
459     HRESULT hr = S_OK;
460     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
461     
462     TRACE("(%p/%p)->()\n", This, iface);
463
464     EnterCriticalSection(&This->csFilter);
465     {
466         This->state = State_Paused;
467     }
468     LeaveCriticalSection(&This->csFilter);
469
470     return hr;
471 }
472
473 static HRESULT WINAPI DSoundRender_Run(IBaseFilter * iface, REFERENCE_TIME tStart)
474 {
475     HRESULT hr = S_OK;
476     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
477
478     TRACE("(%p/%p)->(%s)\n", This, iface, wine_dbgstr_longlong(tStart));
479
480     EnterCriticalSection(&This->csFilter);
481     {
482         This->rtStreamStart = tStart;
483         This->state = State_Running;
484     }
485     LeaveCriticalSection(&This->csFilter);
486
487     return hr;
488 }
489
490 static HRESULT WINAPI DSoundRender_GetState(IBaseFilter * iface, DWORD dwMilliSecsTimeout, FILTER_STATE *pState)
491 {
492     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
493
494     TRACE("(%p/%p)->(%d, %p)\n", This, iface, dwMilliSecsTimeout, pState);
495
496     EnterCriticalSection(&This->csFilter);
497     {
498         *pState = This->state;
499     }
500     LeaveCriticalSection(&This->csFilter);
501
502     return S_OK;
503 }
504
505 static HRESULT WINAPI DSoundRender_SetSyncSource(IBaseFilter * iface, IReferenceClock *pClock)
506 {
507     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
508
509     TRACE("(%p/%p)->(%p)\n", This, iface, pClock);
510
511     EnterCriticalSection(&This->csFilter);
512     {
513         if (This->pClock)
514             IReferenceClock_Release(This->pClock);
515         This->pClock = pClock;
516         if (This->pClock)
517             IReferenceClock_AddRef(This->pClock);
518     }
519     LeaveCriticalSection(&This->csFilter);
520
521     return S_OK;
522 }
523
524 static HRESULT WINAPI DSoundRender_GetSyncSource(IBaseFilter * iface, IReferenceClock **ppClock)
525 {
526     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
527
528     TRACE("(%p/%p)->(%p)\n", This, iface, ppClock);
529
530     EnterCriticalSection(&This->csFilter);
531     {
532         *ppClock = This->pClock;
533         IReferenceClock_AddRef(This->pClock);
534     }
535     LeaveCriticalSection(&This->csFilter);
536     
537     return S_OK;
538 }
539
540 /** IBaseFilter implementation **/
541
542 static HRESULT WINAPI DSoundRender_EnumPins(IBaseFilter * iface, IEnumPins **ppEnum)
543 {
544     ENUMPINDETAILS epd;
545     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
546
547     TRACE("(%p/%p)->(%p)\n", This, iface, ppEnum);
548
549     epd.cPins = 1; /* input pin */
550     epd.ppPins = This->ppPins;
551     return IEnumPinsImpl_Construct(&epd, ppEnum);
552 }
553
554 static HRESULT WINAPI DSoundRender_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin **ppPin)
555 {
556     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
557
558     TRACE("(%p/%p)->(%s,%p)\n", This, iface, debugstr_w(Id), ppPin);
559     
560     FIXME("DSoundRender::FindPin(...)\n");
561
562     /* FIXME: critical section */
563
564     return E_NOTIMPL;
565 }
566
567 static HRESULT WINAPI DSoundRender_QueryFilterInfo(IBaseFilter * iface, FILTER_INFO *pInfo)
568 {
569     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
570
571     TRACE("(%p/%p)->(%p)\n", This, iface, pInfo);
572
573     strcpyW(pInfo->achName, This->filterInfo.achName);
574     pInfo->pGraph = This->filterInfo.pGraph;
575
576     if (pInfo->pGraph)
577         IFilterGraph_AddRef(pInfo->pGraph);
578     
579     return S_OK;
580 }
581
582 static HRESULT WINAPI DSoundRender_JoinFilterGraph(IBaseFilter * iface, IFilterGraph *pGraph, LPCWSTR pName)
583 {
584     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
585
586     TRACE("(%p/%p)->(%p, %s)\n", This, iface, pGraph, debugstr_w(pName));
587
588     EnterCriticalSection(&This->csFilter);
589     {
590         if (pName)
591             strcpyW(This->filterInfo.achName, pName);
592         else
593             *This->filterInfo.achName = '\0';
594         This->filterInfo.pGraph = pGraph; /* NOTE: do NOT increase ref. count */
595     }
596     LeaveCriticalSection(&This->csFilter);
597
598     return S_OK;
599 }
600
601 static HRESULT WINAPI DSoundRender_QueryVendorInfo(IBaseFilter * iface, LPWSTR *pVendorInfo)
602 {
603     DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
604     TRACE("(%p/%p)->(%p)\n", This, iface, pVendorInfo);
605     return E_NOTIMPL;
606 }
607
608 static const IBaseFilterVtbl DSoundRender_Vtbl =
609 {
610     DSoundRender_QueryInterface,
611     DSoundRender_AddRef,
612     DSoundRender_Release,
613     DSoundRender_GetClassID,
614     DSoundRender_Stop,
615     DSoundRender_Pause,
616     DSoundRender_Run,
617     DSoundRender_GetState,
618     DSoundRender_SetSyncSource,
619     DSoundRender_GetSyncSource,
620     DSoundRender_EnumPins,
621     DSoundRender_FindPin,
622     DSoundRender_QueryFilterInfo,
623     DSoundRender_JoinFilterGraph,
624     DSoundRender_QueryVendorInfo
625 };
626
627 static HRESULT WINAPI DSoundRender_InputPin_EndOfStream(IPin * iface)
628 {
629     InputPin* This = (InputPin*)iface;
630     IMediaEventSink* pEventSink;
631     HRESULT hr;
632
633     TRACE("(%p/%p)->()\n", This, iface);
634
635     hr = IFilterGraph_QueryInterface(((DSoundRenderImpl*)This->pin.pinInfo.pFilter)->filterInfo.pGraph, &IID_IMediaEventSink, (LPVOID*)&pEventSink);
636     if (SUCCEEDED(hr))
637     {
638         /* FIXME: We should wait that all audio data has been played */
639         hr = IMediaEventSink_Notify(pEventSink, EC_COMPLETE, S_OK, 0);
640         IMediaEventSink_Release(pEventSink);
641     }
642
643     return hr;
644 }
645
646 static const IPinVtbl DSoundRender_InputPin_Vtbl = 
647 {
648     InputPin_QueryInterface,
649     IPinImpl_AddRef,
650     InputPin_Release,
651     InputPin_Connect,
652     InputPin_ReceiveConnection,
653     IPinImpl_Disconnect,
654     IPinImpl_ConnectedTo,
655     IPinImpl_ConnectionMediaType,
656     IPinImpl_QueryPinInfo,
657     IPinImpl_QueryDirection,
658     IPinImpl_QueryId,
659     IPinImpl_QueryAccept,
660     IPinImpl_EnumMediaTypes,
661     IPinImpl_QueryInternalConnections,
662     DSoundRender_InputPin_EndOfStream,
663     InputPin_BeginFlush,
664     InputPin_EndFlush,
665     InputPin_NewSegment
666 };
667
668 static const IMemInputPinVtbl MemInputPin_Vtbl = 
669 {
670     MemInputPin_QueryInterface,
671     MemInputPin_AddRef,
672     MemInputPin_Release,
673     MemInputPin_GetAllocator,
674     MemInputPin_NotifyAllocator,
675     MemInputPin_GetAllocatorRequirements,
676     MemInputPin_Receive,
677     MemInputPin_ReceiveMultiple,
678     MemInputPin_ReceiveCanBlock
679 };
680
681 /*** IUnknown methods ***/
682 static HRESULT WINAPI Basicaudio_QueryInterface(IBasicAudio *iface,
683                                                 REFIID riid,
684                                                 LPVOID*ppvObj) {
685     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
686
687     TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
688
689     return DSoundRender_QueryInterface((IBaseFilter*)This, riid, ppvObj);
690 }
691
692 static ULONG WINAPI Basicaudio_AddRef(IBasicAudio *iface) {
693     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
694
695     TRACE("(%p/%p)->()\n", This, iface);
696
697     return DSoundRender_AddRef((IBaseFilter*)This);
698 }
699
700 static ULONG WINAPI Basicaudio_Release(IBasicAudio *iface) {
701     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
702
703     TRACE("(%p/%p)->()\n", This, iface);
704
705     return DSoundRender_Release((IBaseFilter*)This);
706 }
707
708 /*** IDispatch methods ***/
709 static HRESULT WINAPI Basicaudio_GetTypeInfoCount(IBasicAudio *iface,
710                                                   UINT*pctinfo) {
711     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
712
713     TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pctinfo);
714
715     return S_OK;
716 }
717
718 static HRESULT WINAPI Basicaudio_GetTypeInfo(IBasicAudio *iface,
719                                              UINT iTInfo,
720                                              LCID lcid,
721                                              ITypeInfo**ppTInfo) {
722     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
723
724     TRACE("(%p/%p)->(%d, %d, %p): stub !!!\n", This, iface, iTInfo, lcid, ppTInfo);
725
726     return S_OK;
727 }
728
729 static HRESULT WINAPI Basicaudio_GetIDsOfNames(IBasicAudio *iface,
730                                                REFIID riid,
731                                                LPOLESTR*rgszNames,
732                                                UINT cNames,
733                                                LCID lcid,
734                                                DISPID*rgDispId) {
735     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
736
737     TRACE("(%p/%p)->(%s (%p), %p, %d, %d, %p): stub !!!\n", This, iface, debugstr_guid(riid), riid, rgszNames, cNames, lcid, rgDispId);
738
739     return S_OK;
740 }
741
742 static HRESULT WINAPI Basicaudio_Invoke(IBasicAudio *iface,
743                                         DISPID dispIdMember,
744                                         REFIID riid,
745                                         LCID lcid,
746                                         WORD wFlags,
747                                         DISPPARAMS*pDispParams,
748                                         VARIANT*pVarResult,
749                                         EXCEPINFO*pExepInfo,
750                                         UINT*puArgErr) {
751     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
752
753     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);
754
755     return S_OK;
756 }
757
758 /*** IBasicAudio methods ***/
759 static HRESULT WINAPI Basicaudio_put_Volume(IBasicAudio *iface,
760                                             long lVolume) {
761     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
762
763     TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, lVolume);
764
765     return S_OK;
766 }
767
768 static HRESULT WINAPI Basicaudio_get_Volume(IBasicAudio *iface,
769                                             long *plVolume) {
770     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
771
772     TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, plVolume);
773
774     return S_OK;
775 }
776
777 static HRESULT WINAPI Basicaudio_put_Balance(IBasicAudio *iface,
778                                              long lBalance) {
779     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
780
781     TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, lBalance);
782
783     return S_OK;
784 }
785
786 static HRESULT WINAPI Basicaudio_get_Balance(IBasicAudio *iface,
787                                              long *plBalance) {
788     ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
789
790     TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, plBalance);
791
792     return S_OK;
793 }
794
795 static const IBasicAudioVtbl IBasicAudio_Vtbl =
796 {
797     Basicaudio_QueryInterface,
798     Basicaudio_AddRef,
799     Basicaudio_Release,
800     Basicaudio_GetTypeInfoCount,
801     Basicaudio_GetTypeInfo,
802     Basicaudio_GetIDsOfNames,
803     Basicaudio_Invoke,
804     Basicaudio_put_Volume,
805     Basicaudio_get_Volume,
806     Basicaudio_put_Balance,
807     Basicaudio_get_Balance
808 };