2004-08-24 02:28:35 +00:00
|
|
|
/*
|
|
|
|
* Direct Sound Audio Renderer
|
|
|
|
*
|
|
|
|
* Copyright 2004 Christian Costa
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-08-24 02:28:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "quartz_private.h"
|
|
|
|
#include "control_private.h"
|
|
|
|
#include "pin.h"
|
|
|
|
|
|
|
|
#include "uuids.h"
|
|
|
|
#include "vfwmsgs.h"
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "dshow.h"
|
|
|
|
#include "evcode.h"
|
|
|
|
#include "strmif.h"
|
|
|
|
#include "dsound.h"
|
|
|
|
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(quartz);
|
|
|
|
|
|
|
|
static const WCHAR wcsInputPinName[] = {'i','n','p','u','t',' ','p','i','n',0};
|
|
|
|
|
|
|
|
static const IBaseFilterVtbl DSoundRender_Vtbl;
|
|
|
|
static const IPinVtbl DSoundRender_InputPin_Vtbl;
|
|
|
|
static const IMemInputPinVtbl MemInputPin_Vtbl;
|
|
|
|
static const IBasicAudioVtbl IBasicAudio_Vtbl;
|
2007-04-06 10:48:03 +00:00
|
|
|
static const IReferenceClockVtbl IReferenceClock_Vtbl;
|
2008-03-20 01:29:09 +00:00
|
|
|
static const IMediaSeekingVtbl IMediaSeeking_Vtbl;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
typedef struct DSoundRenderImpl
|
|
|
|
{
|
|
|
|
const IBaseFilterVtbl * lpVtbl;
|
|
|
|
const IBasicAudioVtbl *IBasicAudio_vtbl;
|
2007-04-06 10:48:03 +00:00
|
|
|
const IReferenceClockVtbl *IReferenceClock_vtbl;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2005-07-12 19:21:36 +00:00
|
|
|
LONG refCount;
|
2004-08-24 02:28:35 +00:00
|
|
|
CRITICAL_SECTION csFilter;
|
|
|
|
FILTER_STATE state;
|
|
|
|
REFERENCE_TIME rtStreamStart;
|
|
|
|
IReferenceClock * pClock;
|
|
|
|
FILTER_INFO filterInfo;
|
|
|
|
|
|
|
|
InputPin * pInputPin;
|
|
|
|
IPin ** ppPins;
|
|
|
|
|
|
|
|
LPDIRECTSOUND dsound;
|
|
|
|
LPDIRECTSOUNDBUFFER dsbuffer;
|
2007-04-01 12:50:44 +00:00
|
|
|
DWORD buf_size;
|
2004-08-24 02:28:35 +00:00
|
|
|
DWORD write_pos;
|
2007-04-06 10:48:03 +00:00
|
|
|
DWORD write_loops;
|
2007-03-26 03:13:53 +00:00
|
|
|
|
2007-04-06 10:48:03 +00:00
|
|
|
DWORD last_play_pos;
|
|
|
|
DWORD play_loops;
|
|
|
|
REFERENCE_TIME play_time;
|
2008-03-20 01:29:09 +00:00
|
|
|
MediaSeekingImpl mediaSeeking;
|
2007-04-06 10:48:03 +00:00
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
long volume;
|
|
|
|
long pan;
|
2004-08-24 02:28:35 +00:00
|
|
|
} DSoundRenderImpl;
|
|
|
|
|
2008-03-20 01:29:09 +00:00
|
|
|
static HRESULT sound_mod_stop(IBaseFilter *iface)
|
|
|
|
{
|
|
|
|
FIXME("(%p) stub\n", iface);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT sound_mod_start(IBaseFilter *iface)
|
|
|
|
{
|
|
|
|
FIXME("(%p) stub\n", iface);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT sound_mod_rate(IBaseFilter *iface)
|
|
|
|
{
|
|
|
|
FIXME("(%p) stub\n", iface);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2008-04-04 23:27:29 +00:00
|
|
|
static inline HRESULT DSoundRender_GetPos(DSoundRenderImpl *This, DWORD *pPlayPos, REFERENCE_TIME *pRefTime)
|
2007-04-06 10:48:03 +00:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
EnterCriticalSection(&This->csFilter);
|
|
|
|
{
|
2008-04-04 23:27:29 +00:00
|
|
|
DWORD state;
|
|
|
|
|
|
|
|
hr = IDirectSoundBuffer_GetStatus(This->dsbuffer, &state);
|
|
|
|
if (SUCCEEDED(hr) && !(state & DSBSTATUS_PLAYING) && This->state == State_Running)
|
|
|
|
{
|
|
|
|
LPBYTE buf;
|
|
|
|
DWORD size;
|
|
|
|
TRACE("Not playing, kickstarting the engine\n");
|
|
|
|
This->write_pos = 0;
|
|
|
|
IDirectSoundBuffer_SetCurrentPosition(This->dsbuffer, 0);
|
|
|
|
|
|
|
|
hr = IDirectSoundBuffer_Lock(This->dsbuffer, 0, 0, (void**)&buf, &size, NULL, NULL, DSBLOCK_ENTIREBUFFER);
|
|
|
|
if (hr != DS_OK)
|
|
|
|
ERR("Unable to lock sound buffer! (%x)\n", hr);
|
|
|
|
else
|
|
|
|
memset(buf, 0, size);
|
|
|
|
hr = IDirectSoundBuffer_Unlock(This->dsbuffer, buf, size, NULL, 0);
|
|
|
|
|
|
|
|
hr = IDirectSoundBuffer_Play(This->dsbuffer, 0, 0, DSBPLAY_LOOPING);
|
|
|
|
if (FAILED(hr))
|
|
|
|
ERR("Can't play sound buffer (%x)\n", hr);
|
|
|
|
hr = IDirectSoundBuffer_GetCurrentPosition(This->dsbuffer, &This->last_play_pos, &This->write_pos);
|
|
|
|
*pPlayPos = This->last_play_pos;
|
|
|
|
}
|
|
|
|
else if (SUCCEEDED(hr))
|
|
|
|
hr = IDirectSoundBuffer_GetCurrentPosition(This->dsbuffer, pPlayPos, NULL);
|
|
|
|
if (hr == S_OK)
|
2007-04-06 10:48:03 +00:00
|
|
|
{
|
|
|
|
DWORD play_pos = *pPlayPos;
|
|
|
|
|
|
|
|
if (play_pos < This->last_play_pos)
|
|
|
|
This->play_loops++;
|
|
|
|
This->last_play_pos = play_pos;
|
|
|
|
|
|
|
|
/* If we're really falling behind, kick the play time back */
|
|
|
|
if ((This->play_loops*This->buf_size)+play_pos >=
|
|
|
|
(This->write_loops*This->buf_size)+This->write_pos)
|
|
|
|
This->play_loops--;
|
|
|
|
|
|
|
|
if (pRefTime)
|
|
|
|
{
|
|
|
|
REFERENCE_TIME play_time;
|
|
|
|
play_time = ((REFERENCE_TIME)This->play_loops*10000000) +
|
|
|
|
((REFERENCE_TIME)play_pos*10000000/This->buf_size);
|
|
|
|
|
|
|
|
/* Don't let time run backwards */
|
|
|
|
if(play_time-This->play_time > 0)
|
|
|
|
This->play_time = play_time;
|
|
|
|
else
|
|
|
|
hr = S_FALSE;
|
|
|
|
|
|
|
|
*pRefTime = This->play_time;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&This->csFilter);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2007-08-07 20:01:25 +00:00
|
|
|
static HRESULT DSoundRender_SendSampleData(DSoundRenderImpl* This, const BYTE *data, DWORD size)
|
2004-08-24 02:28:35 +00:00
|
|
|
{
|
2008-04-04 23:27:29 +00:00
|
|
|
HRESULT hr = S_OK;
|
2004-08-24 02:28:35 +00:00
|
|
|
LPBYTE lpbuf1 = NULL;
|
|
|
|
LPBYTE lpbuf2 = NULL;
|
|
|
|
DWORD dwsize1 = 0;
|
|
|
|
DWORD dwsize2 = 0;
|
|
|
|
DWORD size2;
|
|
|
|
DWORD play_pos,buf_free;
|
|
|
|
|
2008-04-04 23:27:29 +00:00
|
|
|
while (size && This->state == State_Running && !This->pInputPin->flushing) {
|
|
|
|
|
|
|
|
hr = DSoundRender_GetPos(This, &play_pos, NULL);
|
2005-04-25 10:49:22 +00:00
|
|
|
if (hr != DS_OK)
|
|
|
|
{
|
2007-04-06 10:48:03 +00:00
|
|
|
ERR("GetPos returned error: %x\n", hr);
|
2005-04-25 10:49:22 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-03-30 10:13:54 +00:00
|
|
|
if (This->write_pos <= play_pos)
|
2005-04-25 10:49:22 +00:00
|
|
|
buf_free = play_pos-This->write_pos;
|
2004-08-24 02:28:35 +00:00
|
|
|
else
|
2007-04-01 12:50:44 +00:00
|
|
|
buf_free = This->buf_size - This->write_pos + play_pos;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2007-03-30 10:13:54 +00:00
|
|
|
/* Wait for enough of the buffer to empty before filling it */
|
2007-04-01 12:50:44 +00:00
|
|
|
if(buf_free < This->buf_size/4)
|
2006-08-18 16:38:38 +00:00
|
|
|
{
|
|
|
|
Sleep(10);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-04-25 10:49:22 +00:00
|
|
|
size2 = min(buf_free, size);
|
2007-03-08 13:48:45 +00:00
|
|
|
hr = IDirectSoundBuffer_Lock(This->dsbuffer, This->write_pos, size2, (LPVOID *)&lpbuf1, &dwsize1, (LPVOID *)&lpbuf2, &dwsize2, 0);
|
2005-04-25 10:49:22 +00:00
|
|
|
if (hr != DS_OK) {
|
2006-10-12 18:57:23 +00:00
|
|
|
ERR("Unable to lock sound buffer! (%x)\n", hr);
|
2005-04-25 10:49:22 +00:00
|
|
|
break;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
2006-10-12 18:57:23 +00:00
|
|
|
/* TRACE("write_pos=%d, size=%d, sz1=%d, sz2=%d\n", This->write_pos, size2, dwsize1, dwsize2); */
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
memcpy(lpbuf1, data, dwsize1);
|
2005-04-25 10:49:22 +00:00
|
|
|
if (dwsize2)
|
2004-08-24 02:28:35 +00:00
|
|
|
memcpy(lpbuf2, data + dwsize1, dwsize2);
|
2005-04-25 10:49:22 +00:00
|
|
|
|
|
|
|
hr = IDirectSoundBuffer_Unlock(This->dsbuffer, lpbuf1, dwsize1, lpbuf2, dwsize2);
|
|
|
|
if (hr != DS_OK)
|
2006-10-12 18:57:23 +00:00
|
|
|
ERR("Unable to unlock sound buffer! (%x)\n", hr);
|
2007-03-25 00:43:57 +00:00
|
|
|
|
2005-04-25 10:49:22 +00:00
|
|
|
size -= dwsize1 + dwsize2;
|
|
|
|
data += dwsize1 + dwsize2;
|
2007-04-06 10:48:03 +00:00
|
|
|
This->write_pos += dwsize1 + dwsize2;
|
|
|
|
if (This->write_pos >= This->buf_size)
|
|
|
|
{
|
|
|
|
This->write_pos -= This->buf_size;
|
|
|
|
This->write_loops++;
|
|
|
|
}
|
2008-04-04 23:27:29 +00:00
|
|
|
}
|
2005-04-25 10:49:22 +00:00
|
|
|
|
|
|
|
return hr;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT DSoundRender_Sample(LPVOID iface, IMediaSample * pSample)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
LPBYTE pbSrcStream = NULL;
|
|
|
|
long cbSrcStream = 0;
|
|
|
|
REFERENCE_TIME tStart, tStop;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("%p %p\n", iface, pSample);
|
2007-03-10 12:09:43 +00:00
|
|
|
|
2008-04-04 23:27:29 +00:00
|
|
|
if (This->state == State_Stopped)
|
2007-03-10 12:09:43 +00:00
|
|
|
return VFW_E_WRONG_STATE;
|
2008-04-04 23:27:29 +00:00
|
|
|
|
2004-08-24 02:28:35 +00:00
|
|
|
hr = IMediaSample_GetPointer(pSample, &pbSrcStream);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
2006-10-12 18:57:23 +00:00
|
|
|
ERR("Cannot get pointer to sample data (%x)\n", hr);
|
2004-08-24 02:28:35 +00:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IMediaSample_GetTime(pSample, &tStart, &tStop);
|
|
|
|
if (FAILED(hr))
|
2006-10-12 18:57:23 +00:00
|
|
|
ERR("Cannot get sample time (%x)\n", hr);
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
cbSrcStream = IMediaSample_GetActualDataLength(pSample);
|
|
|
|
TRACE("Sample data ptr = %p, size = %ld\n", pbSrcStream, cbSrcStream);
|
|
|
|
|
|
|
|
#if 0 /* For debugging purpose */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < cbSrcStream; i++)
|
|
|
|
{
|
|
|
|
if ((i!=0) && !(i%16))
|
2005-09-25 15:23:21 +00:00
|
|
|
TRACE("\n");
|
|
|
|
TRACE("%02x ", pbSrcStream[i]);
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
2005-09-25 15:23:21 +00:00
|
|
|
TRACE("\n");
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
#endif
|
2005-04-25 10:49:22 +00:00
|
|
|
|
2007-04-13 16:32:56 +00:00
|
|
|
return DSoundRender_SendSampleData(This, pbSrcStream, cbSrcStream);
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT DSoundRender_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
|
|
|
WAVEFORMATEX* format = (WAVEFORMATEX*)pmt->pbFormat;
|
|
|
|
TRACE("wFormatTag = %x %x\n", format->wFormatTag, WAVE_FORMAT_PCM);
|
|
|
|
TRACE("nChannels = %d\n", format->nChannels);
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("nSamplesPerSec = %d\n", format->nAvgBytesPerSec);
|
|
|
|
TRACE("nAvgBytesPerSec = %d\n", format->nAvgBytesPerSec);
|
2004-08-24 02:28:35 +00:00
|
|
|
TRACE("nBlockAlign = %d\n", format->nBlockAlign);
|
|
|
|
TRACE("wBitsPerSample = %d\n", format->wBitsPerSample);
|
|
|
|
|
|
|
|
if (IsEqualIID(&pmt->majortype, &MEDIATYPE_Audio) && IsEqualIID(&pmt->subtype, &MEDIASUBTYPE_PCM))
|
|
|
|
return S_OK;
|
|
|
|
return S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT DSoundRender_create(IUnknown * pUnkOuter, LPVOID * ppv)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
PIN_INFO piInput;
|
|
|
|
DSoundRenderImpl * pDSoundRender;
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", pUnkOuter, ppv);
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if (pUnkOuter)
|
|
|
|
return CLASS_E_NOAGGREGATION;
|
|
|
|
|
|
|
|
pDSoundRender = CoTaskMemAlloc(sizeof(DSoundRenderImpl));
|
2007-03-09 13:47:37 +00:00
|
|
|
if (!pDSoundRender)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
ZeroMemory(pDSoundRender, sizeof(DSoundRenderImpl));
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
pDSoundRender->lpVtbl = &DSoundRender_Vtbl;
|
|
|
|
pDSoundRender->IBasicAudio_vtbl = &IBasicAudio_Vtbl;
|
2007-04-06 10:48:03 +00:00
|
|
|
pDSoundRender->IReferenceClock_vtbl = &IReferenceClock_Vtbl;
|
2004-08-24 02:28:35 +00:00
|
|
|
pDSoundRender->refCount = 1;
|
|
|
|
InitializeCriticalSection(&pDSoundRender->csFilter);
|
2007-03-10 21:10:20 +00:00
|
|
|
pDSoundRender->csFilter.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": DSoundRenderImpl.csFilter");
|
2004-08-24 02:28:35 +00:00
|
|
|
pDSoundRender->state = State_Stopped;
|
|
|
|
|
|
|
|
pDSoundRender->ppPins = CoTaskMemAlloc(1 * sizeof(IPin *));
|
2007-03-09 13:47:37 +00:00
|
|
|
if (!pDSoundRender->ppPins)
|
|
|
|
{
|
2007-03-10 21:10:20 +00:00
|
|
|
pDSoundRender->csFilter.DebugInfo->Spare[0] = 0;
|
2007-03-09 13:47:37 +00:00
|
|
|
DeleteCriticalSection(&pDSoundRender->csFilter);
|
|
|
|
CoTaskMemFree(pDSoundRender);
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
/* construct input pin */
|
|
|
|
piInput.dir = PINDIR_INPUT;
|
|
|
|
piInput.pFilter = (IBaseFilter *)pDSoundRender;
|
2005-03-28 14:17:51 +00:00
|
|
|
lstrcpynW(piInput.achName, wcsInputPinName, sizeof(piInput.achName) / sizeof(piInput.achName[0]));
|
2008-04-04 21:29:21 +00:00
|
|
|
hr = InputPin_Construct(&DSoundRender_InputPin_Vtbl, &piInput, DSoundRender_Sample, pDSoundRender, DSoundRender_QueryAccept, NULL, &pDSoundRender->csFilter, (IPin **)&pDSoundRender->pInputPin);
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2007-04-13 16:32:56 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = DirectSoundCreate(NULL, &pDSoundRender->dsound, NULL);
|
|
|
|
if (FAILED(hr))
|
|
|
|
ERR("Cannot create Direct Sound object (%x)\n", hr);
|
|
|
|
}
|
|
|
|
|
2004-08-24 02:28:35 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
2008-03-20 01:29:09 +00:00
|
|
|
MediaSeekingImpl_Init((IBaseFilter*)pDSoundRender, sound_mod_stop, sound_mod_start, sound_mod_rate, &pDSoundRender->mediaSeeking, &pDSoundRender->csFilter);
|
|
|
|
pDSoundRender->mediaSeeking.lpVtbl = &IMediaSeeking_Vtbl;
|
|
|
|
|
2004-08-24 02:28:35 +00:00
|
|
|
pDSoundRender->ppPins[0] = (IPin *)pDSoundRender->pInputPin;
|
|
|
|
*ppv = (LPVOID)pDSoundRender;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-04-13 16:32:56 +00:00
|
|
|
if (pDSoundRender->pInputPin)
|
|
|
|
IPin_Release((IPin*)pDSoundRender->pInputPin);
|
2004-08-24 02:28:35 +00:00
|
|
|
CoTaskMemFree(pDSoundRender->ppPins);
|
2007-03-10 21:10:20 +00:00
|
|
|
pDSoundRender->csFilter.DebugInfo->Spare[0] = 0;
|
2004-08-24 02:28:35 +00:00
|
|
|
DeleteCriticalSection(&pDSoundRender->csFilter);
|
|
|
|
CoTaskMemFree(pDSoundRender);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_QueryInterface(IBaseFilter * iface, REFIID riid, LPVOID * ppv)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
TRACE("(%p, %p)->(%s, %p)\n", This, iface, qzdebugstr_guid(riid), ppv);
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if (IsEqualIID(riid, &IID_IUnknown))
|
|
|
|
*ppv = (LPVOID)This;
|
|
|
|
else if (IsEqualIID(riid, &IID_IPersist))
|
|
|
|
*ppv = (LPVOID)This;
|
|
|
|
else if (IsEqualIID(riid, &IID_IMediaFilter))
|
|
|
|
*ppv = (LPVOID)This;
|
|
|
|
else if (IsEqualIID(riid, &IID_IBaseFilter))
|
|
|
|
*ppv = (LPVOID)This;
|
2007-02-18 07:16:36 +00:00
|
|
|
else if (IsEqualIID(riid, &IID_IBasicAudio))
|
2004-08-24 02:28:35 +00:00
|
|
|
*ppv = (LPVOID)&(This->IBasicAudio_vtbl);
|
2007-04-06 10:48:03 +00:00
|
|
|
else if (IsEqualIID(riid, &IID_IReferenceClock))
|
|
|
|
*ppv = (LPVOID)&(This->IReferenceClock_vtbl);
|
2008-03-20 01:29:09 +00:00
|
|
|
else if (IsEqualIID(riid, &IID_IMediaSeeking))
|
|
|
|
*ppv = &This->mediaSeeking.lpVtbl;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
if (*ppv)
|
|
|
|
{
|
|
|
|
IUnknown_AddRef((IUnknown *)(*ppv));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2008-03-21 22:36:51 +00:00
|
|
|
if (!IsEqualIID(riid, &IID_IPin))
|
|
|
|
FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI DSoundRender_AddRef(IBaseFilter * iface)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2005-01-06 19:36:47 +00:00
|
|
|
ULONG refCount = InterlockedIncrement(&This->refCount);
|
2004-12-27 17:15:58 +00:00
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p/%p)->() AddRef from %d\n", This, iface, refCount - 1);
|
2004-12-27 17:15:58 +00:00
|
|
|
|
2005-01-06 19:36:47 +00:00
|
|
|
return refCount;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI DSoundRender_Release(IBaseFilter * iface)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2005-01-06 19:36:47 +00:00
|
|
|
ULONG refCount = InterlockedDecrement(&This->refCount);
|
2004-12-27 17:15:58 +00:00
|
|
|
|
2007-03-05 14:11:37 +00:00
|
|
|
TRACE("(%p)->() Release from %d\n", This, refCount + 1);
|
2004-12-27 17:15:58 +00:00
|
|
|
|
2005-01-06 19:36:47 +00:00
|
|
|
if (!refCount)
|
2004-08-24 02:28:35 +00:00
|
|
|
{
|
2007-03-13 17:47:47 +00:00
|
|
|
IPin *pConnectedTo;
|
|
|
|
|
2007-03-10 21:10:20 +00:00
|
|
|
if (This->pClock)
|
2004-08-24 02:28:35 +00:00
|
|
|
IReferenceClock_Release(This->pClock);
|
2007-02-18 17:59:41 +00:00
|
|
|
|
|
|
|
if (This->dsbuffer)
|
|
|
|
IDirectSoundBuffer_Release(This->dsbuffer);
|
|
|
|
This->dsbuffer = NULL;
|
|
|
|
if (This->dsound)
|
|
|
|
IDirectSound_Release(This->dsound);
|
|
|
|
This->dsound = NULL;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2007-03-13 17:47:47 +00:00
|
|
|
if (SUCCEEDED(IPin_ConnectedTo(This->ppPins[0], &pConnectedTo)))
|
|
|
|
{
|
|
|
|
IPin_Disconnect(pConnectedTo);
|
|
|
|
IPin_Release(pConnectedTo);
|
|
|
|
}
|
|
|
|
IPin_Disconnect(This->ppPins[0]);
|
|
|
|
|
2004-08-24 02:28:35 +00:00
|
|
|
IPin_Release(This->ppPins[0]);
|
|
|
|
|
2007-03-08 11:03:06 +00:00
|
|
|
CoTaskMemFree(This->ppPins);
|
2004-08-24 02:28:35 +00:00
|
|
|
This->lpVtbl = NULL;
|
|
|
|
This->IBasicAudio_vtbl = NULL;
|
|
|
|
|
2007-03-19 20:26:09 +00:00
|
|
|
This->csFilter.DebugInfo->Spare[0] = 0;
|
|
|
|
DeleteCriticalSection(&This->csFilter);
|
|
|
|
|
2004-08-24 02:28:35 +00:00
|
|
|
TRACE("Destroying Audio Renderer\n");
|
|
|
|
CoTaskMemFree(This);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
2005-01-06 19:36:47 +00:00
|
|
|
return refCount;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** IPersist methods **/
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_GetClassID(IBaseFilter * iface, CLSID * pClsid)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pClsid);
|
|
|
|
|
|
|
|
*pClsid = CLSID_DSoundRender;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** IMediaFilter methods **/
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_Stop(IBaseFilter * iface)
|
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
EnterCriticalSection(&This->csFilter);
|
|
|
|
{
|
2007-03-10 12:09:43 +00:00
|
|
|
DWORD state = 0;
|
|
|
|
if (This->dsbuffer)
|
|
|
|
{
|
|
|
|
hr = IDirectSoundBuffer_GetStatus(This->dsbuffer, &state);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
if (state & DSBSTATUS_PLAYING)
|
|
|
|
hr = IDirectSoundBuffer_Stop(This->dsbuffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
This->state = State_Stopped;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
LeaveCriticalSection(&This->csFilter);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_Pause(IBaseFilter * iface)
|
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
EnterCriticalSection(&This->csFilter);
|
|
|
|
{
|
2007-03-10 12:09:43 +00:00
|
|
|
DWORD state = 0;
|
2008-04-04 23:27:29 +00:00
|
|
|
if (This->state == State_Stopped)
|
|
|
|
This->pInputPin->end_of_stream = 0;
|
|
|
|
|
2007-03-10 12:09:43 +00:00
|
|
|
if (This->dsbuffer)
|
|
|
|
{
|
|
|
|
hr = IDirectSoundBuffer_GetStatus(This->dsbuffer, &state);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
if (state & DSBSTATUS_PLAYING)
|
|
|
|
hr = IDirectSoundBuffer_Stop(This->dsbuffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
This->state = State_Paused;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
LeaveCriticalSection(&This->csFilter);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_Run(IBaseFilter * iface, REFERENCE_TIME tStart)
|
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s)\n", This, iface, wine_dbgstr_longlong(tStart));
|
|
|
|
|
|
|
|
EnterCriticalSection(&This->csFilter);
|
|
|
|
{
|
2008-04-04 23:27:29 +00:00
|
|
|
This->rtStreamStart = tStart;
|
|
|
|
This->state = State_Running;
|
|
|
|
This->pInputPin->end_of_stream = 0;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
LeaveCriticalSection(&This->csFilter);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_GetState(IBaseFilter * iface, DWORD dwMilliSecsTimeout, FILTER_STATE *pState)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p/%p)->(%d, %p)\n", This, iface, dwMilliSecsTimeout, pState);
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
EnterCriticalSection(&This->csFilter);
|
|
|
|
{
|
|
|
|
*pState = This->state;
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&This->csFilter);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_SetSyncSource(IBaseFilter * iface, IReferenceClock *pClock)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pClock);
|
|
|
|
|
|
|
|
EnterCriticalSection(&This->csFilter);
|
|
|
|
{
|
|
|
|
if (This->pClock)
|
|
|
|
IReferenceClock_Release(This->pClock);
|
|
|
|
This->pClock = pClock;
|
|
|
|
if (This->pClock)
|
|
|
|
IReferenceClock_AddRef(This->pClock);
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&This->csFilter);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_GetSyncSource(IBaseFilter * iface, IReferenceClock **ppClock)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, ppClock);
|
|
|
|
|
|
|
|
EnterCriticalSection(&This->csFilter);
|
|
|
|
{
|
|
|
|
*ppClock = This->pClock;
|
|
|
|
IReferenceClock_AddRef(This->pClock);
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&This->csFilter);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** IBaseFilter implementation **/
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_EnumPins(IBaseFilter * iface, IEnumPins **ppEnum)
|
|
|
|
{
|
|
|
|
ENUMPINDETAILS epd;
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, ppEnum);
|
|
|
|
|
|
|
|
epd.cPins = 1; /* input pin */
|
|
|
|
epd.ppPins = This->ppPins;
|
|
|
|
return IEnumPinsImpl_Construct(&epd, ppEnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin **ppPin)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s,%p)\n", This, iface, debugstr_w(Id), ppPin);
|
|
|
|
|
|
|
|
FIXME("DSoundRender::FindPin(...)\n");
|
|
|
|
|
|
|
|
/* FIXME: critical section */
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_QueryFilterInfo(IBaseFilter * iface, FILTER_INFO *pInfo)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pInfo);
|
|
|
|
|
|
|
|
strcpyW(pInfo->achName, This->filterInfo.achName);
|
|
|
|
pInfo->pGraph = This->filterInfo.pGraph;
|
|
|
|
|
|
|
|
if (pInfo->pGraph)
|
|
|
|
IFilterGraph_AddRef(pInfo->pGraph);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_JoinFilterGraph(IBaseFilter * iface, IFilterGraph *pGraph, LPCWSTR pName)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %s)\n", This, iface, pGraph, debugstr_w(pName));
|
|
|
|
|
|
|
|
EnterCriticalSection(&This->csFilter);
|
|
|
|
{
|
|
|
|
if (pName)
|
|
|
|
strcpyW(This->filterInfo.achName, pName);
|
|
|
|
else
|
|
|
|
*This->filterInfo.achName = '\0';
|
|
|
|
This->filterInfo.pGraph = pGraph; /* NOTE: do NOT increase ref. count */
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&This->csFilter);
|
|
|
|
|
2005-03-02 10:12:12 +00:00
|
|
|
return S_OK;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_QueryVendorInfo(IBaseFilter * iface, LPWSTR *pVendorInfo)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
2004-08-24 02:28:35 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pVendorInfo);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IBaseFilterVtbl DSoundRender_Vtbl =
|
|
|
|
{
|
|
|
|
DSoundRender_QueryInterface,
|
|
|
|
DSoundRender_AddRef,
|
|
|
|
DSoundRender_Release,
|
|
|
|
DSoundRender_GetClassID,
|
|
|
|
DSoundRender_Stop,
|
|
|
|
DSoundRender_Pause,
|
|
|
|
DSoundRender_Run,
|
|
|
|
DSoundRender_GetState,
|
|
|
|
DSoundRender_SetSyncSource,
|
|
|
|
DSoundRender_GetSyncSource,
|
|
|
|
DSoundRender_EnumPins,
|
|
|
|
DSoundRender_FindPin,
|
|
|
|
DSoundRender_QueryFilterInfo,
|
|
|
|
DSoundRender_JoinFilterGraph,
|
|
|
|
DSoundRender_QueryVendorInfo
|
|
|
|
};
|
|
|
|
|
2007-04-13 16:32:56 +00:00
|
|
|
static HRESULT WINAPI DSoundRender_InputPin_ReceiveConnection(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
|
|
|
InputPin *This = (InputPin *)iface;
|
|
|
|
PIN_DIRECTION pindirReceive;
|
|
|
|
DSoundRenderImpl *DSImpl;
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p, %p)\n", This, pReceivePin, pmt);
|
|
|
|
dump_AM_MEDIA_TYPE(pmt);
|
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
DSImpl = (DSoundRenderImpl*)This->pin.pinInfo.pFilter;
|
|
|
|
|
|
|
|
if (This->pin.pConnectedTo)
|
|
|
|
hr = VFW_E_ALREADY_CONNECTED;
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr) && This->pin.fnQueryAccept(This->pin.pUserData, pmt) != S_OK)
|
|
|
|
hr = VFW_E_TYPE_NOT_ACCEPTED;
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IPin_QueryDirection(pReceivePin, &pindirReceive);
|
|
|
|
|
|
|
|
if (pindirReceive != PINDIR_OUTPUT)
|
|
|
|
{
|
|
|
|
ERR("Can't connect from non-output pin\n");
|
|
|
|
hr = VFW_E_INVALID_DIRECTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
WAVEFORMATEX *format;
|
|
|
|
DSBUFFERDESC buf_desc;
|
|
|
|
|
|
|
|
TRACE("MajorType %s\n", debugstr_guid(&pmt->majortype));
|
|
|
|
TRACE("SubType %s\n", debugstr_guid(&pmt->subtype));
|
|
|
|
TRACE("Format %s\n", debugstr_guid(&pmt->formattype));
|
|
|
|
TRACE("Size %d\n", pmt->cbFormat);
|
|
|
|
|
|
|
|
format = (WAVEFORMATEX*)pmt->pbFormat;
|
|
|
|
|
|
|
|
DSImpl->buf_size = format->nAvgBytesPerSec;
|
|
|
|
|
|
|
|
memset(&buf_desc,0,sizeof(DSBUFFERDESC));
|
|
|
|
buf_desc.dwSize = sizeof(DSBUFFERDESC);
|
|
|
|
buf_desc.dwFlags = DSBCAPS_CTRLVOLUME | DSBCAPS_CTRLPAN |
|
|
|
|
DSBCAPS_CTRLFREQUENCY |
|
|
|
|
DSBCAPS_GETCURRENTPOSITION2;
|
|
|
|
buf_desc.dwBufferBytes = DSImpl->buf_size;
|
|
|
|
buf_desc.lpwfxFormat = format;
|
|
|
|
hr = IDirectSound_CreateSoundBuffer(DSImpl->dsound, &buf_desc, &DSImpl->dsbuffer, NULL);
|
|
|
|
if (FAILED(hr))
|
|
|
|
ERR("Can't create sound buffer (%x)\n", hr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IDirectSoundBuffer_SetVolume(DSImpl->dsbuffer, DSImpl->volume);
|
|
|
|
if (FAILED(hr))
|
|
|
|
ERR("Can't set volume to %ld (%x)\n", DSImpl->volume, hr);
|
|
|
|
|
|
|
|
hr = IDirectSoundBuffer_SetPan(DSImpl->dsbuffer, DSImpl->pan);
|
|
|
|
if (FAILED(hr))
|
|
|
|
ERR("Can't set pan to %ld (%x)\n", DSImpl->pan, hr);
|
|
|
|
|
|
|
|
DSImpl->write_pos = 0;
|
|
|
|
hr = S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
CopyMediaType(&This->pin.mtCurrent, pmt);
|
|
|
|
This->pin.pConnectedTo = pReceivePin;
|
|
|
|
IPin_AddRef(pReceivePin);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (DSImpl->dsbuffer)
|
|
|
|
IDirectSoundBuffer_Release(DSImpl->dsbuffer);
|
|
|
|
DSImpl->dsbuffer = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI DSoundRender_InputPin_Disconnect(IPin * iface)
|
|
|
|
{
|
|
|
|
IPinImpl *This = (IPinImpl*)iface;
|
|
|
|
DSoundRenderImpl *DSImpl;
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", iface);
|
|
|
|
|
|
|
|
DSImpl = (DSoundRenderImpl*)This->pinInfo.pFilter;
|
|
|
|
if (DSImpl->dsbuffer)
|
|
|
|
IDirectSoundBuffer_Release(DSImpl->dsbuffer);
|
|
|
|
DSImpl->dsbuffer = NULL;
|
|
|
|
|
|
|
|
return IPinImpl_Disconnect(iface);
|
|
|
|
}
|
|
|
|
|
2004-08-24 02:28:35 +00:00
|
|
|
static HRESULT WINAPI DSoundRender_InputPin_EndOfStream(IPin * iface)
|
|
|
|
{
|
|
|
|
InputPin* This = (InputPin*)iface;
|
2008-03-21 21:56:40 +00:00
|
|
|
DSoundRenderImpl *me = (DSoundRenderImpl*)This->pin.pinInfo.pFilter;
|
2005-03-02 10:12:12 +00:00
|
|
|
IMediaEventSink* pEventSink;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2004-08-24 02:28:35 +00:00
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
2008-03-21 21:56:40 +00:00
|
|
|
InputPin_EndOfStream(iface);
|
2005-03-02 10:12:12 +00:00
|
|
|
|
2008-03-21 21:56:40 +00:00
|
|
|
hr = IFilterGraph_QueryInterface(me->filterInfo.pGraph, &IID_IMediaEventSink, (LPVOID*)&pEventSink);
|
2005-03-02 10:12:12 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
2008-03-21 21:56:40 +00:00
|
|
|
BYTE * silence;
|
|
|
|
|
|
|
|
silence = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, me->buf_size);
|
|
|
|
if (silence)
|
|
|
|
{
|
|
|
|
memset(silence, 0, me->buf_size);
|
|
|
|
DSoundRender_SendSampleData((DSoundRenderImpl*)This->pin.pinInfo.pFilter, silence, me->buf_size);
|
|
|
|
HeapFree(GetProcessHeap(), 0, silence);
|
|
|
|
}
|
|
|
|
|
2005-03-02 10:12:12 +00:00
|
|
|
hr = IMediaEventSink_Notify(pEventSink, EC_COMPLETE, S_OK, 0);
|
|
|
|
IMediaEventSink_Release(pEventSink);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2004-08-24 02:28:35 +00:00
|
|
|
}
|
|
|
|
|
2008-04-04 23:27:29 +00:00
|
|
|
static HRESULT WINAPI DSoundRender_InputPin_BeginFlush(IPin * iface)
|
|
|
|
{
|
|
|
|
InputPin *This = (InputPin *)iface;
|
|
|
|
DSoundRenderImpl *pFilter = (DSoundRenderImpl *)This->pin.pinInfo.pFilter;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = InputPin_BeginFlush(iface);
|
|
|
|
|
|
|
|
FIXME("Requested flush\n");
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
if (pFilter->dsbuffer)
|
|
|
|
IDirectSoundBuffer_Stop(pFilter->dsbuffer);
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2007-04-13 16:32:56 +00:00
|
|
|
static const IPinVtbl DSoundRender_InputPin_Vtbl =
|
2004-08-24 02:28:35 +00:00
|
|
|
{
|
|
|
|
InputPin_QueryInterface,
|
|
|
|
IPinImpl_AddRef,
|
|
|
|
InputPin_Release,
|
|
|
|
InputPin_Connect,
|
2007-04-13 16:32:56 +00:00
|
|
|
DSoundRender_InputPin_ReceiveConnection,
|
|
|
|
DSoundRender_InputPin_Disconnect,
|
2004-08-24 02:28:35 +00:00
|
|
|
IPinImpl_ConnectedTo,
|
|
|
|
IPinImpl_ConnectionMediaType,
|
|
|
|
IPinImpl_QueryPinInfo,
|
|
|
|
IPinImpl_QueryDirection,
|
|
|
|
IPinImpl_QueryId,
|
|
|
|
IPinImpl_QueryAccept,
|
|
|
|
IPinImpl_EnumMediaTypes,
|
|
|
|
IPinImpl_QueryInternalConnections,
|
|
|
|
DSoundRender_InputPin_EndOfStream,
|
2008-04-04 23:27:29 +00:00
|
|
|
DSoundRender_InputPin_BeginFlush,
|
2004-08-24 02:28:35 +00:00
|
|
|
InputPin_EndFlush,
|
|
|
|
InputPin_NewSegment
|
|
|
|
};
|
|
|
|
|
|
|
|
static const IMemInputPinVtbl MemInputPin_Vtbl =
|
|
|
|
{
|
|
|
|
MemInputPin_QueryInterface,
|
|
|
|
MemInputPin_AddRef,
|
|
|
|
MemInputPin_Release,
|
|
|
|
MemInputPin_GetAllocator,
|
|
|
|
MemInputPin_NotifyAllocator,
|
|
|
|
MemInputPin_GetAllocatorRequirements,
|
|
|
|
MemInputPin_Receive,
|
|
|
|
MemInputPin_ReceiveMultiple,
|
|
|
|
MemInputPin_ReceiveCanBlock
|
|
|
|
};
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI Basicaudio_QueryInterface(IBasicAudio *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
return DSoundRender_QueryInterface((IBaseFilter*)This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Basicaudio_AddRef(IBasicAudio *iface) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return DSoundRender_AddRef((IBaseFilter*)This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Basicaudio_Release(IBasicAudio *iface) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return DSoundRender_Release((IBaseFilter*)This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IDispatch methods ***/
|
|
|
|
static HRESULT WINAPI Basicaudio_GetTypeInfoCount(IBasicAudio *iface,
|
|
|
|
UINT*pctinfo) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pctinfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_GetTypeInfo(IBasicAudio *iface,
|
|
|
|
UINT iTInfo,
|
|
|
|
LCID lcid,
|
|
|
|
ITypeInfo**ppTInfo) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p/%p)->(%d, %d, %p): stub !!!\n", This, iface, iTInfo, lcid, ppTInfo);
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_GetIDsOfNames(IBasicAudio *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPOLESTR*rgszNames,
|
|
|
|
UINT cNames,
|
|
|
|
LCID lcid,
|
|
|
|
DISPID*rgDispId) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p/%p)->(%s (%p), %p, %d, %d, %p): stub !!!\n", This, iface, debugstr_guid(riid), riid, rgszNames, cNames, lcid, rgDispId);
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_Invoke(IBasicAudio *iface,
|
|
|
|
DISPID dispIdMember,
|
|
|
|
REFIID riid,
|
|
|
|
LCID lcid,
|
|
|
|
WORD wFlags,
|
|
|
|
DISPPARAMS*pDispParams,
|
|
|
|
VARIANT*pVarResult,
|
|
|
|
EXCEPINFO*pExepInfo,
|
|
|
|
UINT*puArgErr) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
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);
|
2004-08-24 02:28:35 +00:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IBasicAudio methods ***/
|
|
|
|
static HRESULT WINAPI Basicaudio_put_Volume(IBasicAudio *iface,
|
|
|
|
long lVolume) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
TRACE("(%p/%p)->(%ld)\n", This, iface, lVolume);
|
|
|
|
|
|
|
|
if (lVolume > DSBVOLUME_MAX || lVolume < DSBVOLUME_MIN)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if (This->dsbuffer) {
|
|
|
|
if (FAILED(IDirectSoundBuffer_SetVolume(This->dsbuffer, lVolume)))
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
This->volume = lVolume;
|
2004-08-24 02:28:35 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_get_Volume(IBasicAudio *iface,
|
|
|
|
long *plVolume) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, plVolume);
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
if (!plVolume)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
*plVolume = This->volume;
|
2004-08-24 02:28:35 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_put_Balance(IBasicAudio *iface,
|
|
|
|
long lBalance) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
TRACE("(%p/%p)->(%ld)\n", This, iface, lBalance);
|
|
|
|
|
|
|
|
if (lBalance < DSBPAN_LEFT || lBalance > DSBPAN_RIGHT)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if (This->dsbuffer) {
|
|
|
|
if (FAILED(IDirectSoundBuffer_SetPan(This->dsbuffer, lBalance)))
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
This->pan = lBalance;
|
2004-08-24 02:28:35 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_get_Balance(IBasicAudio *iface,
|
|
|
|
long *plBalance) {
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, plBalance);
|
|
|
|
|
|
|
|
if (!plBalance)
|
|
|
|
return E_POINTER;
|
2004-08-24 02:28:35 +00:00
|
|
|
|
2007-03-26 03:13:53 +00:00
|
|
|
*plBalance = This->pan;
|
2004-08-24 02:28:35 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IBasicAudioVtbl IBasicAudio_Vtbl =
|
|
|
|
{
|
|
|
|
Basicaudio_QueryInterface,
|
|
|
|
Basicaudio_AddRef,
|
|
|
|
Basicaudio_Release,
|
|
|
|
Basicaudio_GetTypeInfoCount,
|
|
|
|
Basicaudio_GetTypeInfo,
|
|
|
|
Basicaudio_GetIDsOfNames,
|
|
|
|
Basicaudio_Invoke,
|
|
|
|
Basicaudio_put_Volume,
|
|
|
|
Basicaudio_get_Volume,
|
|
|
|
Basicaudio_put_Balance,
|
|
|
|
Basicaudio_get_Balance
|
|
|
|
};
|
2007-04-06 10:48:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI ReferenceClock_QueryInterface(IReferenceClock *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IReferenceClock_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
return DSoundRender_QueryInterface((IBaseFilter*)This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ReferenceClock_AddRef(IReferenceClock *iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IReferenceClock_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return DSoundRender_AddRef((IBaseFilter*)This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ReferenceClock_Release(IReferenceClock *iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IReferenceClock_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return DSoundRender_Release((IBaseFilter*)This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IReferenceClock methods ***/
|
|
|
|
static HRESULT WINAPI ReferenceClock_GetTime(IReferenceClock *iface,
|
|
|
|
REFERENCE_TIME *pTime)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IReferenceClock_vtbl, iface);
|
|
|
|
HRESULT hr = E_FAIL;
|
|
|
|
DWORD play_pos;
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pTime);
|
|
|
|
|
|
|
|
if (This->dsbuffer)
|
2008-04-04 23:27:29 +00:00
|
|
|
hr = DSoundRender_GetPos(This, &play_pos, pTime);
|
2007-04-06 10:48:03 +00:00
|
|
|
if (FAILED(hr))
|
2008-03-14 03:25:36 +00:00
|
|
|
ERR("Could not get reference time (%x)!\n", hr);
|
2007-04-06 10:48:03 +00:00
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ReferenceClock_AdviseTime(IReferenceClock *iface,
|
|
|
|
REFERENCE_TIME rtBaseTime,
|
|
|
|
REFERENCE_TIME rtStreamTime,
|
|
|
|
HEVENT hEvent,
|
|
|
|
DWORD_PTR *pdwAdviseCookie)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IReferenceClock_vtbl, iface);
|
|
|
|
|
|
|
|
FIXME("(%p/%p)->(%s, %s, %p, %p): stub!\n", This, iface, wine_dbgstr_longlong(rtBaseTime), wine_dbgstr_longlong(rtStreamTime), (void*)hEvent, pdwAdviseCookie);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ReferenceClock_AdvisePeriodic(IReferenceClock *iface,
|
|
|
|
REFERENCE_TIME rtBaseTime,
|
|
|
|
REFERENCE_TIME rtStreamTime,
|
|
|
|
HSEMAPHORE hSemaphore,
|
|
|
|
DWORD_PTR *pdwAdviseCookie)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IReferenceClock_vtbl, iface);
|
|
|
|
|
|
|
|
FIXME("(%p/%p)->(%s, %s, %p, %p): stub!\n", This, iface, wine_dbgstr_longlong(rtBaseTime), wine_dbgstr_longlong(rtStreamTime), (void*)hSemaphore, pdwAdviseCookie);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ReferenceClock_Unadvise(IReferenceClock *iface,
|
|
|
|
DWORD_PTR dwAdviseCookie)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(DSoundRenderImpl, IReferenceClock_vtbl, iface);
|
|
|
|
|
|
|
|
FIXME("(%p/%p)->(%p): stub!\n", This, iface, (void*)dwAdviseCookie);
|
|
|
|
|
|
|
|
return S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IReferenceClockVtbl IReferenceClock_Vtbl =
|
|
|
|
{
|
|
|
|
ReferenceClock_QueryInterface,
|
|
|
|
ReferenceClock_AddRef,
|
|
|
|
ReferenceClock_Release,
|
|
|
|
ReferenceClock_GetTime,
|
|
|
|
ReferenceClock_AdviseTime,
|
|
|
|
ReferenceClock_AdvisePeriodic,
|
|
|
|
ReferenceClock_Unadvise
|
|
|
|
};
|
2008-03-20 01:29:09 +00:00
|
|
|
|
|
|
|
static inline DSoundRenderImpl *impl_from_IMediaSeeking( IMediaSeeking *iface )
|
|
|
|
{
|
|
|
|
return (DSoundRenderImpl *)((char*)iface - FIELD_OFFSET(DSoundRenderImpl, mediaSeeking.lpVtbl));
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI sound_seek_QueryInterface(IMediaSeeking * iface, REFIID riid, LPVOID * ppv)
|
|
|
|
{
|
|
|
|
DSoundRenderImpl *This = impl_from_IMediaSeeking(iface);
|
|
|
|
|
|
|
|
return IUnknown_QueryInterface((IUnknown *)This, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI sound_seek_AddRef(IMediaSeeking * iface)
|
|
|
|
{
|
|
|
|
DSoundRenderImpl *This = impl_from_IMediaSeeking(iface);
|
|
|
|
|
|
|
|
return IUnknown_AddRef((IUnknown *)This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI sound_seek_Release(IMediaSeeking * iface)
|
|
|
|
{
|
|
|
|
DSoundRenderImpl *This = impl_from_IMediaSeeking(iface);
|
|
|
|
|
|
|
|
return IUnknown_Release((IUnknown *)This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IMediaSeekingVtbl IMediaSeeking_Vtbl =
|
|
|
|
{
|
|
|
|
sound_seek_QueryInterface,
|
|
|
|
sound_seek_AddRef,
|
|
|
|
sound_seek_Release,
|
|
|
|
MediaSeekingImpl_GetCapabilities,
|
|
|
|
MediaSeekingImpl_CheckCapabilities,
|
|
|
|
MediaSeekingImpl_IsFormatSupported,
|
|
|
|
MediaSeekingImpl_QueryPreferredFormat,
|
|
|
|
MediaSeekingImpl_GetTimeFormat,
|
|
|
|
MediaSeekingImpl_IsUsingTimeFormat,
|
|
|
|
MediaSeekingImpl_SetTimeFormat,
|
|
|
|
MediaSeekingImpl_GetDuration,
|
|
|
|
MediaSeekingImpl_GetStopPosition,
|
|
|
|
MediaSeekingImpl_GetCurrentPosition,
|
|
|
|
MediaSeekingImpl_ConvertTimeFormat,
|
|
|
|
MediaSeekingImpl_SetPositions,
|
|
|
|
MediaSeekingImpl_GetPositions,
|
|
|
|
MediaSeekingImpl_GetAvailable,
|
|
|
|
MediaSeekingImpl_SetRate,
|
|
|
|
MediaSeekingImpl_GetRate,
|
|
|
|
MediaSeekingImpl_GetPreroll
|
|
|
|
};
|