2001-10-01 22:53:58 +02:00
|
|
|
/*
|
|
|
|
* Audio Renderer (CLSID_AudioRender)
|
|
|
|
*
|
|
|
|
* FIXME
|
|
|
|
* - implements IRefereneceClock.
|
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* Copyright (C) Hidenori TAKESHIMA <hidenori@a2.ctktv.ne.jp>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2001-10-01 22:53:58 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WINE_DSHOW_AUDREN_H
|
|
|
|
#define WINE_DSHOW_AUDREN_H
|
|
|
|
|
|
|
|
#include "iunk.h"
|
|
|
|
#include "basefilt.h"
|
2001-10-22 21:03:26 +02:00
|
|
|
#include "seekpass.h"
|
2001-10-01 22:53:58 +02:00
|
|
|
|
|
|
|
#define WINE_QUARTZ_WAVEOUT_COUNT 4
|
|
|
|
|
|
|
|
typedef struct CAudioRendererImpl CAudioRendererImpl;
|
|
|
|
typedef struct CAudioRendererPinImpl CAudioRendererPinImpl;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct AudRen_IBasicAudioImpl
|
|
|
|
{
|
|
|
|
ICOM_VFIELD(IBasicAudio);
|
|
|
|
} AudRen_IBasicAudioImpl;
|
|
|
|
|
|
|
|
struct CAudioRendererImpl
|
|
|
|
{
|
|
|
|
QUARTZ_IUnkImpl unk;
|
|
|
|
CBaseFilterImpl basefilter;
|
|
|
|
AudRen_IBasicAudioImpl basaud;
|
2001-10-22 21:03:26 +02:00
|
|
|
QUARTZ_IFDelegation qiext;
|
2001-10-01 22:53:58 +02:00
|
|
|
|
2001-10-22 21:03:26 +02:00
|
|
|
CSeekingPassThru* pSeekPass;
|
2001-10-01 22:53:58 +02:00
|
|
|
CAudioRendererPinImpl* pPin;
|
|
|
|
|
2002-02-19 19:30:26 +01:00
|
|
|
CRITICAL_SECTION m_csReceive;
|
2001-10-01 22:53:58 +02:00
|
|
|
BOOL m_fInFlush;
|
|
|
|
|
|
|
|
/* for waveOut */
|
|
|
|
BOOL m_fWaveOutInit;
|
|
|
|
HANDLE m_hEventRender;
|
|
|
|
HWAVEOUT m_hWaveOut;
|
|
|
|
DWORD m_dwBlockSize;
|
|
|
|
WAVEHDR* m_phdrCur;
|
|
|
|
WAVEHDR m_hdr[WINE_QUARTZ_WAVEOUT_COUNT];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CAudioRendererPinImpl
|
|
|
|
{
|
|
|
|
QUARTZ_IUnkImpl unk;
|
|
|
|
CPinBaseImpl pin;
|
|
|
|
CMemInputPinBaseImpl meminput;
|
|
|
|
|
|
|
|
CAudioRendererImpl* pRender;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CAudioRendererImpl_THIS(iface,member) CAudioRendererImpl* This = ((CAudioRendererImpl*)(((char*)iface)-offsetof(CAudioRendererImpl,member)))
|
|
|
|
#define CAudioRendererPinImpl_THIS(iface,member) CAudioRendererPinImpl* This = ((CAudioRendererPinImpl*)(((char*)iface)-offsetof(CAudioRendererPinImpl,member)))
|
|
|
|
|
|
|
|
|
|
|
|
HRESULT CAudioRendererImpl_InitIBasicAudio( CAudioRendererImpl* This );
|
|
|
|
void CAudioRendererImpl_UninitIBasicAudio( CAudioRendererImpl* This );
|
|
|
|
|
|
|
|
HRESULT QUARTZ_CreateAudioRenderer(IUnknown* punkOuter,void** ppobj);
|
|
|
|
HRESULT QUARTZ_CreateAudioRendererPin(
|
|
|
|
CAudioRendererImpl* pFilter,
|
|
|
|
CRITICAL_SECTION* pcsPin,
|
2002-02-19 19:30:26 +01:00
|
|
|
CRITICAL_SECTION* pcsPinReceive,
|
2001-10-01 22:53:58 +02:00
|
|
|
CAudioRendererPinImpl** ppPin);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* WINE_DSHOW_AUDREN_H */
|