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
21 #include "quartz_private.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
37 /* NOTE: buffer can still be filled completely,
38 * but we start waiting until only this amount is buffered
40 static const REFERENCE_TIME DSoundRenderer_Max_Fill
= 150 * 10000;
44 struct strmbase_filter filter
;
45 struct strmbase_passthrough passthrough
;
46 IAMDirectSound IAMDirectSound_iface
;
47 IBasicAudio IBasicAudio_iface
;
48 IQualityControl IQualityControl_iface
;
49 IUnknown
*system_clock
;
51 struct strmbase_sink sink
;
53 /* Signaled when the filter has completed a state change. The filter waits
54 * for this event in IBaseFilter::GetState(). */
56 /* Signaled when a flush or state change occurs, i.e. anything that needs
57 * to immediately unblock the streaming thread. */
59 REFERENCE_TIME stream_start
;
62 IDirectSound8
*dsound
;
63 LPDIRECTSOUNDBUFFER dsbuffer
;
65 DWORD last_playpos
, writepos
;
71 static struct dsound_render
*impl_from_strmbase_pin(struct strmbase_pin
*iface
)
73 return CONTAINING_RECORD(iface
, struct dsound_render
, sink
.pin
);
76 static struct dsound_render
*impl_from_strmbase_filter(struct strmbase_filter
*iface
)
78 return CONTAINING_RECORD(iface
, struct dsound_render
, filter
);
81 static struct dsound_render
*impl_from_IBasicAudio(IBasicAudio
*iface
)
83 return CONTAINING_RECORD(iface
, struct dsound_render
, IBasicAudio_iface
);
86 static struct dsound_render
*impl_from_IAMDirectSound(IAMDirectSound
*iface
)
88 return CONTAINING_RECORD(iface
, struct dsound_render
, IAMDirectSound_iface
);
91 static REFERENCE_TIME
time_from_pos(struct dsound_render
*This
, DWORD pos
)
93 WAVEFORMATEX
*wfx
= (WAVEFORMATEX
*)This
->sink
.pin
.mt
.pbFormat
;
94 REFERENCE_TIME ret
= 10000000;
95 ret
= ret
* pos
/ wfx
->nAvgBytesPerSec
;
99 static DWORD
pos_from_time(struct dsound_render
*This
, REFERENCE_TIME time
)
101 WAVEFORMATEX
*wfx
= (WAVEFORMATEX
*)This
->sink
.pin
.mt
.pbFormat
;
102 REFERENCE_TIME ret
= time
;
103 ret
*= wfx
->nAvgBytesPerSec
;
105 ret
-= ret
% wfx
->nBlockAlign
;
109 static void DSoundRender_UpdatePositions(struct dsound_render
*This
, DWORD
*seqwritepos
, DWORD
*minwritepos
)
111 WAVEFORMATEX
*wfx
= (WAVEFORMATEX
*)This
->sink
.pin
.mt
.pbFormat
;
113 DWORD size1
, size2
, playpos
, writepos
, old_writepos
, old_playpos
, adv
;
114 BOOL writepos_set
= This
->writepos
< This
->buf_size
;
116 /* Update position and zero */
117 old_writepos
= This
->writepos
;
118 old_playpos
= This
->last_playpos
;
119 if (old_writepos
<= old_playpos
)
120 old_writepos
+= This
->buf_size
;
122 IDirectSoundBuffer_GetCurrentPosition(This
->dsbuffer
, &playpos
, &writepos
);
123 if (old_playpos
> playpos
)
124 adv
= This
->buf_size
+ playpos
- old_playpos
;
126 adv
= playpos
- old_playpos
;
127 This
->last_playpos
= playpos
;
129 TRACE("Moving from %u to %u: clearing %u bytes\n", old_playpos
, playpos
, adv
);
130 IDirectSoundBuffer_Lock(This
->dsbuffer
, old_playpos
, adv
, (void**)&buf1
, &size1
, (void**)&buf2
, &size2
, 0);
131 memset(buf1
, wfx
->wBitsPerSample
== 8 ? 128 : 0, size1
);
132 memset(buf2
, wfx
->wBitsPerSample
== 8 ? 128 : 0, size2
);
133 IDirectSoundBuffer_Unlock(This
->dsbuffer
, buf1
, size1
, buf2
, size2
);
135 *minwritepos
= writepos
;
136 if (!writepos_set
|| old_writepos
< writepos
) {
138 This
->writepos
= This
->buf_size
;
139 FIXME("Underrun of data occurred!\n");
141 *seqwritepos
= writepos
;
143 *seqwritepos
= This
->writepos
;
146 static HRESULT
DSoundRender_GetWritePos(struct dsound_render
*This
,
147 DWORD
*ret_writepos
, REFERENCE_TIME write_at
, DWORD
*pfree
, DWORD
*skip
)
149 DWORD writepos
, min_writepos
, playpos
;
150 REFERENCE_TIME max_lag
= 50 * 10000;
151 REFERENCE_TIME cur
, writepos_t
, delta_t
;
153 DSoundRender_UpdatePositions(This
, &writepos
, &min_writepos
);
154 playpos
= This
->last_playpos
;
155 if (This
->filter
.clock
)
157 IReferenceClock_GetTime(This
->filter
.clock
, &cur
);
158 cur
-= This
->stream_start
;
162 if (writepos
== min_writepos
)
167 *ret_writepos
= writepos
;
171 if (writepos
>= playpos
)
172 writepos_t
= cur
+ time_from_pos(This
, writepos
- playpos
);
174 writepos_t
= cur
+ time_from_pos(This
, This
->buf_size
+ writepos
- playpos
);
176 /* write_at: Starting time of sample */
177 /* cur: current time of play position */
178 /* writepos_t: current time of our pointer play position */
179 delta_t
= write_at
- writepos_t
;
180 if (delta_t
>= -max_lag
&& delta_t
<= max_lag
) {
181 TRACE("Continuing from old position\n");
182 *ret_writepos
= writepos
;
183 } else if (delta_t
< 0) {
184 REFERENCE_TIME past
, min_writepos_t
;
185 WARN("Delta too big %s/%s, overwriting old data or even skipping\n", debugstr_time(delta_t
), debugstr_time(max_lag
));
186 if (min_writepos
>= playpos
)
187 min_writepos_t
= cur
+ time_from_pos(This
, min_writepos
- playpos
);
189 min_writepos_t
= cur
+ time_from_pos(This
, This
->buf_size
- playpos
+ min_writepos
);
190 past
= min_writepos_t
- write_at
;
192 DWORD skipbytes
= pos_from_time(This
, past
);
193 WARN("Skipping %u bytes\n", skipbytes
);
195 *ret_writepos
= min_writepos
;
197 DWORD aheadbytes
= pos_from_time(This
, -past
);
198 WARN("Advancing %u bytes\n", aheadbytes
);
199 *ret_writepos
= (min_writepos
+ aheadbytes
) % This
->buf_size
;
201 } else /* delta_t > 0 */ {
203 WARN("Delta too big %s/%s, too far ahead\n", debugstr_time(delta_t
), debugstr_time(max_lag
));
204 aheadbytes
= pos_from_time(This
, delta_t
);
205 WARN("Advancing %u bytes\n", aheadbytes
);
206 if (delta_t
>= DSoundRenderer_Max_Fill
)
208 *ret_writepos
= (min_writepos
+ aheadbytes
) % This
->buf_size
;
211 if (playpos
>= *ret_writepos
)
212 *pfree
= playpos
- *ret_writepos
;
214 *pfree
= This
->buf_size
+ playpos
- *ret_writepos
;
215 if (time_from_pos(This
, This
->buf_size
- *pfree
) >= DSoundRenderer_Max_Fill
) {
216 TRACE("Blocked: too full %s / %s\n", debugstr_time(time_from_pos(This
, This
->buf_size
- *pfree
)),
217 debugstr_time(DSoundRenderer_Max_Fill
));
223 static HRESULT
DSoundRender_HandleEndOfStream(struct dsound_render
*This
)
225 while (This
->filter
.state
== State_Running
)
228 DSoundRender_UpdatePositions(This
, &pos1
, &pos2
);
232 WaitForSingleObject(This
->flush_event
, 10);
238 static HRESULT
DSoundRender_SendSampleData(struct dsound_render
*This
,
239 REFERENCE_TIME tStart
, REFERENCE_TIME tStop
, const BYTE
*data
, DWORD size
)
243 while (size
&& This
->filter
.state
!= State_Stopped
) {
244 DWORD writepos
, skip
= 0, free
, size1
, size2
, ret
;
247 if (This
->filter
.state
== State_Running
)
248 hr
= DSoundRender_GetWritePos(This
, &writepos
, tStart
, &free
, &skip
);
253 ret
= WaitForSingleObject(This
->flush_event
, 10);
254 if (This
->sink
.flushing
|| This
->filter
.state
== State_Stopped
)
255 return This
->filter
.state
== State_Paused
? S_OK
: VFW_E_WRONG_STATE
;
256 if (ret
!= WAIT_TIMEOUT
)
263 FIXME("Sample dropped %u of %u bytes\n", skip
, size
);
269 hr
= IDirectSoundBuffer_Lock(This
->dsbuffer
, writepos
, min(free
, size
), (void**)&buf1
, &size1
, (void**)&buf2
, &size2
, 0);
271 ERR("Unable to lock sound buffer! (%x)\n", hr
);
274 memcpy(buf1
, data
, size1
);
276 memcpy(buf2
, data
+size1
, size2
);
277 IDirectSoundBuffer_Unlock(This
->dsbuffer
, buf1
, size1
, buf2
, size2
);
278 This
->writepos
= (writepos
+ size1
+ size2
) % This
->buf_size
;
279 TRACE("Wrote %u bytes at %u, next at %u - (%u/%u)\n", size1
+size2
, writepos
, This
->writepos
, free
, size
);
280 data
+= size1
+ size2
;
281 size
-= size1
+ size2
;
286 static HRESULT
DSoundRender_PrepareReceive(struct dsound_render
*This
, IMediaSample
*pSample
)
291 if (IMediaSample_GetMediaType(pSample
, &amt
) == S_OK
)
293 AM_MEDIA_TYPE
*orig
= &This
->sink
.pin
.mt
;
294 WAVEFORMATEX
*origfmt
= (WAVEFORMATEX
*)orig
->pbFormat
;
295 WAVEFORMATEX
*newfmt
= (WAVEFORMATEX
*)amt
->pbFormat
;
297 TRACE("Format change.\n");
298 strmbase_dump_media_type(amt
);
300 if (origfmt
->wFormatTag
== newfmt
->wFormatTag
&&
301 origfmt
->nChannels
== newfmt
->nChannels
&&
302 origfmt
->nBlockAlign
== newfmt
->nBlockAlign
&&
303 origfmt
->wBitsPerSample
== newfmt
->wBitsPerSample
&&
304 origfmt
->cbSize
== newfmt
->cbSize
)
306 if (origfmt
->nSamplesPerSec
!= newfmt
->nSamplesPerSec
)
308 hr
= IDirectSoundBuffer_SetFrequency(This
->dsbuffer
,
309 newfmt
->nSamplesPerSec
);
311 return VFW_E_TYPE_NOT_ACCEPTED
;
313 CopyMediaType(orig
, amt
);
314 IMediaSample_SetMediaType(pSample
, NULL
);
318 return VFW_E_TYPE_NOT_ACCEPTED
;
323 static HRESULT
DSoundRender_DoRenderSample(struct dsound_render
*This
, IMediaSample
*pSample
)
325 LPBYTE pbSrcStream
= NULL
;
326 LONG cbSrcStream
= 0;
327 REFERENCE_TIME tStart
, tStop
;
330 hr
= IMediaSample_GetPointer(pSample
, &pbSrcStream
);
333 ERR("Cannot get pointer to sample data (%x)\n", hr
);
337 hr
= IMediaSample_GetTime(pSample
, &tStart
, &tStop
);
339 ERR("Cannot get sample time (%x)\n", hr
);
343 if (IMediaSample_IsPreroll(pSample
) == S_OK
)
349 cbSrcStream
= IMediaSample_GetActualDataLength(pSample
);
350 TRACE("Sample data ptr = %p, size = %d\n", pbSrcStream
, cbSrcStream
);
352 return DSoundRender_SendSampleData(This
, tStart
, tStop
, pbSrcStream
, cbSrcStream
);
355 static HRESULT WINAPI
dsound_render_sink_Receive(struct strmbase_sink
*iface
, IMediaSample
*sample
)
357 struct dsound_render
*filter
= impl_from_strmbase_pin(&iface
->pin
);
358 REFERENCE_TIME start
, stop
;
361 if (filter
->eos
|| filter
->sink
.flushing
)
364 if (filter
->filter
.state
== State_Stopped
)
365 return VFW_E_WRONG_STATE
;
367 if (FAILED(hr
= DSoundRender_PrepareReceive(filter
, sample
)))
370 if (filter
->filter
.clock
&& SUCCEEDED(IMediaSample_GetTime(sample
, &start
, &stop
)))
371 strmbase_passthrough_update_time(&filter
->passthrough
, start
);
373 if (filter
->filter
.state
== State_Paused
)
374 SetEvent(filter
->state_event
);
376 return DSoundRender_DoRenderSample(filter
, sample
);
379 static HRESULT
dsound_render_sink_query_interface(struct strmbase_pin
*iface
, REFIID iid
, void **out
)
381 struct dsound_render
*filter
= impl_from_strmbase_pin(iface
);
383 if (IsEqualGUID(iid
, &IID_IMemInputPin
))
384 *out
= &filter
->sink
.IMemInputPin_iface
;
386 return E_NOINTERFACE
;
388 IUnknown_AddRef((IUnknown
*)*out
);
392 static HRESULT
dsound_render_sink_query_accept(struct strmbase_pin
*iface
, const AM_MEDIA_TYPE
* pmt
)
394 if (!IsEqualIID(&pmt
->majortype
, &MEDIATYPE_Audio
))
400 static HRESULT
dsound_render_sink_connect(struct strmbase_sink
*iface
, IPin
*peer
, const AM_MEDIA_TYPE
*mt
)
402 struct dsound_render
*This
= impl_from_strmbase_pin(&iface
->pin
);
403 const WAVEFORMATEX
*format
= (WAVEFORMATEX
*)mt
->pbFormat
;
405 DSBUFFERDESC buf_desc
;
407 This
->buf_size
= format
->nAvgBytesPerSec
;
409 memset(&buf_desc
,0,sizeof(DSBUFFERDESC
));
410 buf_desc
.dwSize
= sizeof(DSBUFFERDESC
);
411 buf_desc
.dwFlags
= DSBCAPS_CTRLVOLUME
| DSBCAPS_CTRLPAN
|
412 DSBCAPS_CTRLFREQUENCY
| DSBCAPS_GLOBALFOCUS
|
413 DSBCAPS_GETCURRENTPOSITION2
;
414 buf_desc
.dwBufferBytes
= This
->buf_size
;
415 buf_desc
.lpwfxFormat
= (WAVEFORMATEX
*)format
;
416 hr
= IDirectSound8_CreateSoundBuffer(This
->dsound
, &buf_desc
, &This
->dsbuffer
, NULL
);
417 This
->writepos
= This
->buf_size
;
419 ERR("Can't create sound buffer (%x)\n", hr
);
423 hr
= IDirectSoundBuffer_SetVolume(This
->dsbuffer
, This
->volume
);
425 ERR("Can't set volume to %d (%x)\n", This
->volume
, hr
);
427 hr
= IDirectSoundBuffer_SetPan(This
->dsbuffer
, This
->pan
);
429 ERR("Can't set pan to %d (%x)\n", This
->pan
, hr
);
433 if (FAILED(hr
) && hr
!= VFW_E_ALREADY_CONNECTED
)
436 IDirectSoundBuffer_Release(This
->dsbuffer
);
437 This
->dsbuffer
= NULL
;
443 static void dsound_render_sink_disconnect(struct strmbase_sink
*iface
)
445 struct dsound_render
*This
= impl_from_strmbase_pin(&iface
->pin
);
447 TRACE("(%p)->()\n", iface
);
450 IDirectSoundBuffer_Release(This
->dsbuffer
);
451 This
->dsbuffer
= NULL
;
454 static HRESULT
dsound_render_sink_eos(struct strmbase_sink
*iface
)
456 struct dsound_render
*filter
= impl_from_strmbase_pin(&iface
->pin
);
457 IFilterGraph
*graph
= filter
->filter
.graph
;
458 IMediaEventSink
*event_sink
;
464 if (filter
->filter
.state
== State_Running
&& graph
465 && SUCCEEDED(IFilterGraph_QueryInterface(graph
,
466 &IID_IMediaEventSink
, (void **)&event_sink
)))
468 IMediaEventSink_Notify(event_sink
, EC_COMPLETE
, S_OK
,
469 (LONG_PTR
)&filter
->filter
.IBaseFilter_iface
);
470 IMediaEventSink_Release(event_sink
);
472 strmbase_passthrough_eos(&filter
->passthrough
);
473 SetEvent(filter
->state_event
);
475 DSoundRender_HandleEndOfStream(filter
);
477 IDirectSoundBuffer_Lock(filter
->dsbuffer
, 0, 0, &buffer
, &size
, NULL
, NULL
, DSBLOCK_ENTIREBUFFER
);
478 memset(buffer
, 0, size
);
479 IDirectSoundBuffer_Unlock(filter
->dsbuffer
, buffer
, size
, NULL
, 0);
484 static HRESULT
dsound_render_sink_begin_flush(struct strmbase_sink
*iface
)
486 struct dsound_render
*filter
= impl_from_strmbase_pin(&iface
->pin
);
488 SetEvent(filter
->flush_event
);
492 static HRESULT
dsound_render_sink_end_flush(struct strmbase_sink
*iface
)
494 struct dsound_render
*filter
= impl_from_strmbase_pin(&iface
->pin
);
496 EnterCriticalSection(&filter
->filter
.stream_cs
);
499 strmbase_passthrough_invalidate_time(&filter
->passthrough
);
500 ResetEvent(filter
->flush_event
);
502 if (filter
->dsbuffer
)
508 IDirectSoundBuffer_Lock(filter
->dsbuffer
, 0, 0, &buffer
, &size
, NULL
, NULL
, DSBLOCK_ENTIREBUFFER
);
509 memset(buffer
, 0, size
);
510 IDirectSoundBuffer_Unlock(filter
->dsbuffer
, buffer
, size
, NULL
, 0);
511 filter
->writepos
= filter
->buf_size
;
514 LeaveCriticalSection(&filter
->filter
.stream_cs
);
518 static const struct strmbase_sink_ops sink_ops
=
520 .base
.pin_query_interface
= dsound_render_sink_query_interface
,
521 .base
.pin_query_accept
= dsound_render_sink_query_accept
,
522 .pfnReceive
= dsound_render_sink_Receive
,
523 .sink_connect
= dsound_render_sink_connect
,
524 .sink_disconnect
= dsound_render_sink_disconnect
,
525 .sink_eos
= dsound_render_sink_eos
,
526 .sink_begin_flush
= dsound_render_sink_begin_flush
,
527 .sink_end_flush
= dsound_render_sink_end_flush
,
530 static void dsound_render_destroy(struct strmbase_filter
*iface
)
532 struct dsound_render
*filter
= impl_from_strmbase_filter(iface
);
534 if (filter
->dsbuffer
)
535 IDirectSoundBuffer_Release(filter
->dsbuffer
);
536 filter
->dsbuffer
= NULL
;
538 IDirectSound8_Release(filter
->dsound
);
539 filter
->dsound
= NULL
;
541 if (filter
->sink
.pin
.peer
)
542 IPin_Disconnect(filter
->sink
.pin
.peer
);
543 IPin_Disconnect(&filter
->sink
.pin
.IPin_iface
);
544 strmbase_sink_cleanup(&filter
->sink
);
546 CloseHandle(filter
->state_event
);
547 CloseHandle(filter
->flush_event
);
549 strmbase_passthrough_cleanup(&filter
->passthrough
);
550 strmbase_filter_cleanup(&filter
->filter
);
554 static struct strmbase_pin
*dsound_render_get_pin(struct strmbase_filter
*iface
, unsigned int index
)
556 struct dsound_render
*filter
= impl_from_strmbase_filter(iface
);
559 return &filter
->sink
.pin
;
563 static HRESULT
dsound_render_query_interface(struct strmbase_filter
*iface
, REFIID iid
, void **out
)
565 struct dsound_render
*filter
= impl_from_strmbase_filter(iface
);
567 if (IsEqualGUID(iid
, &IID_IAMDirectSound
))
568 *out
= &filter
->IAMDirectSound_iface
;
569 else if (IsEqualGUID(iid
, &IID_IBasicAudio
))
570 *out
= &filter
->IBasicAudio_iface
;
571 else if (IsEqualGUID(iid
, &IID_IMediaPosition
))
572 *out
= &filter
->passthrough
.IMediaPosition_iface
;
573 else if (IsEqualGUID(iid
, &IID_IMediaSeeking
))
574 *out
= &filter
->passthrough
.IMediaSeeking_iface
;
575 else if (IsEqualGUID(iid
, &IID_IQualityControl
))
576 *out
= &filter
->IQualityControl_iface
;
577 else if (IsEqualGUID(iid
, &IID_IReferenceClock
))
578 return IUnknown_QueryInterface(filter
->system_clock
, iid
, out
);
580 return E_NOINTERFACE
;
582 IUnknown_AddRef((IUnknown
*)*out
);
586 static HRESULT
dsound_render_init_stream(struct strmbase_filter
*iface
)
588 struct dsound_render
*filter
= impl_from_strmbase_filter(iface
);
590 if (filter
->sink
.pin
.peer
)
591 ResetEvent(filter
->state_event
);
593 ResetEvent(filter
->flush_event
);
595 return filter
->sink
.pin
.peer
? S_FALSE
: S_OK
;
598 static HRESULT
dsound_render_start_stream(struct strmbase_filter
*iface
, REFERENCE_TIME start
)
600 struct dsound_render
*filter
= impl_from_strmbase_filter(iface
);
601 IFilterGraph
*graph
= filter
->filter
.graph
;
602 IMediaEventSink
*event_sink
;
604 filter
->stream_start
= start
;
606 SetEvent(filter
->state_event
);
608 if (filter
->sink
.pin
.peer
)
609 IDirectSoundBuffer_Play(filter
->dsbuffer
, 0, 0, DSBPLAY_LOOPING
);
611 if ((filter
->eos
|| !filter
->sink
.pin
.peer
) && graph
612 && SUCCEEDED(IFilterGraph_QueryInterface(graph
,
613 &IID_IMediaEventSink
, (void **)&event_sink
)))
615 IMediaEventSink_Notify(event_sink
, EC_COMPLETE
, S_OK
,
616 (LONG_PTR
)&filter
->filter
.IBaseFilter_iface
);
617 IMediaEventSink_Release(event_sink
);
623 static HRESULT
dsound_render_stop_stream(struct strmbase_filter
*iface
)
625 struct dsound_render
*filter
= impl_from_strmbase_filter(iface
);
627 if (filter
->sink
.pin
.peer
)
629 IDirectSoundBuffer_Stop(filter
->dsbuffer
);
630 filter
->writepos
= filter
->buf_size
;
635 static HRESULT
dsound_render_cleanup_stream(struct strmbase_filter
*iface
)
637 struct dsound_render
*filter
= impl_from_strmbase_filter(iface
);
639 strmbase_passthrough_invalidate_time(&filter
->passthrough
);
640 SetEvent(filter
->state_event
);
641 SetEvent(filter
->flush_event
);
646 static HRESULT
dsound_render_wait_state(struct strmbase_filter
*iface
, DWORD timeout
)
648 struct dsound_render
*filter
= impl_from_strmbase_filter(iface
);
650 if (WaitForSingleObject(filter
->state_event
, timeout
) == WAIT_TIMEOUT
)
651 return VFW_S_STATE_INTERMEDIATE
;
655 static const struct strmbase_filter_ops filter_ops
=
657 .filter_destroy
= dsound_render_destroy
,
658 .filter_get_pin
= dsound_render_get_pin
,
659 .filter_query_interface
= dsound_render_query_interface
,
660 .filter_init_stream
= dsound_render_init_stream
,
661 .filter_start_stream
= dsound_render_start_stream
,
662 .filter_stop_stream
= dsound_render_stop_stream
,
663 .filter_cleanup_stream
= dsound_render_cleanup_stream
,
664 .filter_wait_state
= dsound_render_wait_state
,
667 /*** IUnknown methods ***/
668 static HRESULT WINAPI
Basicaudio_QueryInterface(IBasicAudio
*iface
,
671 struct dsound_render
*This
= impl_from_IBasicAudio(iface
);
673 TRACE("(%p/%p)->(%s, %p)\n", This
, iface
, debugstr_guid(riid
), ppvObj
);
675 return IUnknown_QueryInterface(This
->filter
.outer_unk
, riid
, ppvObj
);
678 static ULONG WINAPI
Basicaudio_AddRef(IBasicAudio
*iface
) {
679 struct dsound_render
*This
= impl_from_IBasicAudio(iface
);
681 TRACE("(%p/%p)->()\n", This
, iface
);
683 return IUnknown_AddRef(This
->filter
.outer_unk
);
686 static ULONG WINAPI
Basicaudio_Release(IBasicAudio
*iface
) {
687 struct dsound_render
*This
= impl_from_IBasicAudio(iface
);
689 TRACE("(%p/%p)->()\n", This
, iface
);
691 return IUnknown_Release(This
->filter
.outer_unk
);
694 HRESULT WINAPI
basic_audio_GetTypeInfoCount(IBasicAudio
*iface
, UINT
*count
)
696 TRACE("iface %p, count %p.\n", iface
, count
);
701 HRESULT WINAPI
basic_audio_GetTypeInfo(IBasicAudio
*iface
, UINT index
,
702 LCID lcid
, ITypeInfo
**typeinfo
)
704 TRACE("iface %p, index %u, lcid %#x, typeinfo %p.\n", iface
, index
, lcid
, typeinfo
);
705 return strmbase_get_typeinfo(IBasicAudio_tid
, typeinfo
);
708 HRESULT WINAPI
basic_audio_GetIDsOfNames(IBasicAudio
*iface
, REFIID iid
,
709 LPOLESTR
*names
, UINT count
, LCID lcid
, DISPID
*ids
)
714 TRACE("iface %p, iid %s, names %p, count %u, lcid %#x, ids %p.\n",
715 iface
, debugstr_guid(iid
), names
, count
, lcid
, ids
);
717 if (SUCCEEDED(hr
= strmbase_get_typeinfo(IBasicAudio_tid
, &typeinfo
)))
719 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, names
, count
, ids
);
720 ITypeInfo_Release(typeinfo
);
725 static HRESULT WINAPI
basic_audio_Invoke(IBasicAudio
*iface
, DISPID id
, REFIID iid
, LCID lcid
,
726 WORD flags
, DISPPARAMS
*params
, VARIANT
*result
, EXCEPINFO
*excepinfo
, UINT
*error_arg
)
731 TRACE("iface %p, id %d, iid %s, lcid %#x, flags %#x, params %p, result %p, excepinfo %p, error_arg %p.\n",
732 iface
, id
, debugstr_guid(iid
), lcid
, flags
, params
, result
, excepinfo
, error_arg
);
734 if (SUCCEEDED(hr
= strmbase_get_typeinfo(IBasicAudio_tid
, &typeinfo
)))
736 hr
= ITypeInfo_Invoke(typeinfo
, iface
, id
, flags
, params
, result
, excepinfo
, error_arg
);
737 ITypeInfo_Release(typeinfo
);
742 static HRESULT WINAPI
Basicaudio_put_Volume(IBasicAudio
*iface
,
744 struct dsound_render
*This
= impl_from_IBasicAudio(iface
);
746 TRACE("(%p/%p)->(%d)\n", This
, iface
, lVolume
);
748 if (lVolume
> DSBVOLUME_MAX
|| lVolume
< DSBVOLUME_MIN
)
751 if (This
->dsbuffer
) {
752 if (FAILED(IDirectSoundBuffer_SetVolume(This
->dsbuffer
, lVolume
)))
756 This
->volume
= lVolume
;
760 static HRESULT WINAPI
Basicaudio_get_Volume(IBasicAudio
*iface
,
762 struct dsound_render
*This
= impl_from_IBasicAudio(iface
);
764 TRACE("(%p/%p)->(%p)\n", This
, iface
, plVolume
);
769 *plVolume
= This
->volume
;
773 static HRESULT WINAPI
Basicaudio_put_Balance(IBasicAudio
*iface
,
775 struct dsound_render
*This
= impl_from_IBasicAudio(iface
);
777 TRACE("(%p/%p)->(%d)\n", This
, iface
, lBalance
);
779 if (lBalance
< DSBPAN_LEFT
|| lBalance
> DSBPAN_RIGHT
)
782 if (This
->dsbuffer
) {
783 if (FAILED(IDirectSoundBuffer_SetPan(This
->dsbuffer
, lBalance
)))
787 This
->pan
= lBalance
;
791 static HRESULT WINAPI
Basicaudio_get_Balance(IBasicAudio
*iface
,
793 struct dsound_render
*This
= impl_from_IBasicAudio(iface
);
795 TRACE("(%p/%p)->(%p)\n", This
, iface
, plBalance
);
800 *plBalance
= This
->pan
;
804 static const IBasicAudioVtbl IBasicAudio_Vtbl
=
806 Basicaudio_QueryInterface
,
809 basic_audio_GetTypeInfoCount
,
810 basic_audio_GetTypeInfo
,
811 basic_audio_GetIDsOfNames
,
813 Basicaudio_put_Volume
,
814 Basicaudio_get_Volume
,
815 Basicaudio_put_Balance
,
816 Basicaudio_get_Balance
819 /*** IUnknown methods ***/
820 static HRESULT WINAPI
AMDirectSound_QueryInterface(IAMDirectSound
*iface
,
824 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
826 TRACE("(%p/%p)->(%s, %p)\n", This
, iface
, debugstr_guid(riid
), ppvObj
);
828 return IUnknown_QueryInterface(This
->filter
.outer_unk
, riid
, ppvObj
);
831 static ULONG WINAPI
AMDirectSound_AddRef(IAMDirectSound
*iface
)
833 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
835 TRACE("(%p/%p)->()\n", This
, iface
);
837 return IUnknown_AddRef(This
->filter
.outer_unk
);
840 static ULONG WINAPI
AMDirectSound_Release(IAMDirectSound
*iface
)
842 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
844 TRACE("(%p/%p)->()\n", This
, iface
);
846 return IUnknown_Release(This
->filter
.outer_unk
);
849 /*** IAMDirectSound methods ***/
850 static HRESULT WINAPI
AMDirectSound_GetDirectSoundInterface(IAMDirectSound
*iface
, IDirectSound
**ds
)
852 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
854 FIXME("(%p/%p)->(%p): stub\n", This
, iface
, ds
);
859 static HRESULT WINAPI
AMDirectSound_GetPrimaryBufferInterface(IAMDirectSound
*iface
, IDirectSoundBuffer
**buf
)
861 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
863 FIXME("(%p/%p)->(%p): stub\n", This
, iface
, buf
);
868 static HRESULT WINAPI
AMDirectSound_GetSecondaryBufferInterface(IAMDirectSound
*iface
, IDirectSoundBuffer
**buf
)
870 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
872 FIXME("(%p/%p)->(%p): stub\n", This
, iface
, buf
);
877 static HRESULT WINAPI
AMDirectSound_ReleaseDirectSoundInterface(IAMDirectSound
*iface
, IDirectSound
*ds
)
879 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
881 FIXME("(%p/%p)->(%p): stub\n", This
, iface
, ds
);
886 static HRESULT WINAPI
AMDirectSound_ReleasePrimaryBufferInterface(IAMDirectSound
*iface
, IDirectSoundBuffer
*buf
)
888 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
890 FIXME("(%p/%p)->(%p): stub\n", This
, iface
, buf
);
895 static HRESULT WINAPI
AMDirectSound_ReleaseSecondaryBufferInterface(IAMDirectSound
*iface
, IDirectSoundBuffer
*buf
)
897 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
899 FIXME("(%p/%p)->(%p): stub\n", This
, iface
, buf
);
904 static HRESULT WINAPI
AMDirectSound_SetFocusWindow(IAMDirectSound
*iface
, HWND hwnd
, BOOL bgaudible
)
906 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
908 FIXME("(%p/%p)->(%p,%d): stub\n", This
, iface
, hwnd
, bgaudible
);
913 static HRESULT WINAPI
AMDirectSound_GetFocusWindow(IAMDirectSound
*iface
, HWND
*hwnd
, BOOL
*bgaudible
)
915 struct dsound_render
*This
= impl_from_IAMDirectSound(iface
);
917 FIXME("(%p/%p)->(%p,%p): stub\n", This
, iface
, hwnd
, bgaudible
);
922 static const IAMDirectSoundVtbl IAMDirectSound_Vtbl
=
924 AMDirectSound_QueryInterface
,
925 AMDirectSound_AddRef
,
926 AMDirectSound_Release
,
927 AMDirectSound_GetDirectSoundInterface
,
928 AMDirectSound_GetPrimaryBufferInterface
,
929 AMDirectSound_GetSecondaryBufferInterface
,
930 AMDirectSound_ReleaseDirectSoundInterface
,
931 AMDirectSound_ReleasePrimaryBufferInterface
,
932 AMDirectSound_ReleaseSecondaryBufferInterface
,
933 AMDirectSound_SetFocusWindow
,
934 AMDirectSound_GetFocusWindow
937 static struct dsound_render
*impl_from_IQualityControl(IQualityControl
*iface
)
939 return CONTAINING_RECORD(iface
, struct dsound_render
, IQualityControl_iface
);
942 static HRESULT WINAPI
dsound_render_qc_QueryInterface(IQualityControl
*iface
,
943 REFIID iid
, void **out
)
945 struct dsound_render
*filter
= impl_from_IQualityControl(iface
);
946 return IUnknown_QueryInterface(filter
->filter
.outer_unk
, iid
, out
);
949 static ULONG WINAPI
dsound_render_qc_AddRef(IQualityControl
*iface
)
951 struct dsound_render
*filter
= impl_from_IQualityControl(iface
);
952 return IUnknown_AddRef(filter
->filter
.outer_unk
);
955 static ULONG WINAPI
dsound_render_qc_Release(IQualityControl
*iface
)
957 struct dsound_render
*filter
= impl_from_IQualityControl(iface
);
958 return IUnknown_Release(filter
->filter
.outer_unk
);
961 static HRESULT WINAPI
dsound_render_qc_Notify(IQualityControl
*iface
,
962 IBaseFilter
*sender
, Quality q
)
964 struct dsound_render
*filter
= impl_from_IQualityControl(iface
);
966 FIXME("filter %p, sender %p, type %#x, proportion %u, late %s, timestamp %s, stub!\n",
967 filter
, sender
, q
.Type
, q
.Proportion
, debugstr_time(q
.Late
), debugstr_time(q
.TimeStamp
));
972 static HRESULT WINAPI
dsound_render_qc_SetSink(IQualityControl
*iface
, IQualityControl
*sink
)
974 struct dsound_render
*filter
= impl_from_IQualityControl(iface
);
976 FIXME("filter %p, sink %p, stub!\n", filter
, sink
);
981 static const IQualityControlVtbl dsound_render_qc_vtbl
=
983 dsound_render_qc_QueryInterface
,
984 dsound_render_qc_AddRef
,
985 dsound_render_qc_Release
,
986 dsound_render_qc_Notify
,
987 dsound_render_qc_SetSink
,
990 HRESULT
dsound_render_create(IUnknown
*outer
, IUnknown
**out
)
992 static const DSBUFFERDESC buffer_desc
= {
993 .dwSize
= sizeof(DSBUFFERDESC
),
994 .dwFlags
= DSBCAPS_PRIMARYBUFFER
,
997 struct dsound_render
*object
;
998 IDirectSoundBuffer
*buffer
;
1001 if (!(object
= calloc(1, sizeof(*object
))))
1002 return E_OUTOFMEMORY
;
1004 strmbase_filter_init(&object
->filter
, outer
, &CLSID_DSoundRender
, &filter_ops
);
1006 if (FAILED(hr
= system_clock_create(&object
->filter
.IUnknown_inner
, &object
->system_clock
)))
1008 strmbase_filter_cleanup(&object
->filter
);
1013 if (FAILED(hr
= DirectSoundCreate8(NULL
, &object
->dsound
, NULL
)))
1015 IUnknown_Release(object
->system_clock
);
1016 strmbase_filter_cleanup(&object
->filter
);
1021 if (FAILED(hr
= IDirectSound8_SetCooperativeLevel(object
->dsound
,
1022 GetDesktopWindow(), DSSCL_PRIORITY
)))
1024 IDirectSound8_Release(object
->dsound
);
1025 IUnknown_Release(object
->system_clock
);
1026 strmbase_filter_cleanup(&object
->filter
);
1031 if (SUCCEEDED(hr
= IDirectSound8_CreateSoundBuffer(object
->dsound
,
1032 &buffer_desc
, &buffer
, NULL
)))
1034 IDirectSoundBuffer_Play(buffer
, 0, 0, DSBPLAY_LOOPING
);
1035 IDirectSoundBuffer_Release(buffer
);
1038 strmbase_passthrough_init(&object
->passthrough
, (IUnknown
*)&object
->filter
.IBaseFilter_iface
);
1039 ISeekingPassThru_Init(&object
->passthrough
.ISeekingPassThru_iface
, TRUE
, &object
->sink
.pin
.IPin_iface
);
1041 strmbase_sink_init(&object
->sink
, &object
->filter
, L
"Audio Input pin (rendered)", &sink_ops
, NULL
);
1043 object
->state_event
= CreateEventW(NULL
, TRUE
, TRUE
, NULL
);
1044 object
->flush_event
= CreateEventW(NULL
, TRUE
, TRUE
, NULL
);
1046 object
->IBasicAudio_iface
.lpVtbl
= &IBasicAudio_Vtbl
;
1047 object
->IAMDirectSound_iface
.lpVtbl
= &IAMDirectSound_Vtbl
;
1048 object
->IQualityControl_iface
.lpVtbl
= &dsound_render_qc_vtbl
;
1050 TRACE("Created DirectSound renderer %p.\n", object
);
1051 *out
= &object
->filter
.IUnknown_inner
;