strmbase: Basic BaseRenderer implementation.
[wine/multimedia.git] / include / wine / strmbase.h
blob5b7952848fe7de3231a3582df5aded59ede50f3c
1 /*
2 * Header file for Wine's strmbase implementation
4 * Copyright 2003 Robert Shearman
5 * Copyright 2010 Aric Stewart, CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 HRESULT WINAPI CopyMediaType(AM_MEDIA_TYPE * pDest, const AM_MEDIA_TYPE *pSrc);
23 void WINAPI FreeMediaType(AM_MEDIA_TYPE * pMediaType);
24 AM_MEDIA_TYPE * WINAPI CreateMediaType(AM_MEDIA_TYPE const * pSrc);
25 void WINAPI DeleteMediaType(AM_MEDIA_TYPE * pMediaType);
27 /* Pin functions */
29 typedef struct BasePin
31 IPin IPin_iface;
32 LONG refCount;
33 LPCRITICAL_SECTION pCritSec;
34 PIN_INFO pinInfo;
35 IPin * pConnectedTo;
36 AM_MEDIA_TYPE mtCurrent;
37 REFERENCE_TIME tStart;
38 REFERENCE_TIME tStop;
39 double dRate;
41 const struct BasePinFuncTable* pFuncsTable;
42 } BasePin;
44 typedef HRESULT (WINAPI *BasePin_CheckMediaType)(BasePin *This, const AM_MEDIA_TYPE *pmt);
45 typedef HRESULT (WINAPI *BasePin_AttemptConnection)(BasePin *This, IPin *pReceivePin, const AM_MEDIA_TYPE *pmt);
46 typedef LONG (WINAPI *BasePin_GetMediaTypeVersion)(BasePin *This);
47 typedef HRESULT (WINAPI *BasePin_GetMediaType)(BasePin *This, int iPosition, AM_MEDIA_TYPE *amt);
49 typedef struct BasePinFuncTable {
50 /* Required for Input Pins*/
51 BasePin_CheckMediaType pfnCheckMediaType;
52 /* Required for Output Pins*/
53 BasePin_AttemptConnection pfnAttemptConnection;
54 /* Required for BasePinImpl_EnumMediaTypes */
55 BasePin_GetMediaTypeVersion pfnGetMediaTypeVersion;
56 BasePin_GetMediaType pfnGetMediaType;
57 } BasePinFuncTable;
59 typedef struct BaseOutputPin
61 /* inheritance C style! */
62 BasePin pin;
63 IMemInputPin * pMemInputPin;
65 const struct BaseOutputPinFuncTable* pFuncsTable;
66 } BaseOutputPin;
68 typedef HRESULT (WINAPI *BaseOutputPin_DecideBufferSize)(BaseOutputPin *This, IMemAllocator *pAlloc, ALLOCATOR_PROPERTIES *ppropInputRequest);
69 typedef HRESULT (WINAPI *BaseOutputPin_DecideAllocator)(BaseOutputPin *This, IMemInputPin *pPin, IMemAllocator **pAlloc);
70 typedef HRESULT (WINAPI *BaseOutputPin_BreakConnect)(BaseOutputPin * This);
72 typedef struct BaseOutputPinFuncTable {
73 /* Required for BaseOutputPinImpl_DecideAllocator */
74 BaseOutputPin_DecideBufferSize pfnDecideBufferSize;
75 /* Required for BaseOutputPinImpl_AttemptConnection */
76 BaseOutputPin_DecideAllocator pfnDecideAllocator;
77 BaseOutputPin_BreakConnect pfnBreakConnect;
78 } BaseOutputPinFuncTable;
80 typedef struct BaseInputPin
82 /* inheritance C style! */
83 BasePin pin;
85 IMemInputPin IMemInputPin_iface;
86 IMemAllocator * pAllocator;
87 BOOL flushing, end_of_stream;
88 IMemAllocator *preferred_allocator;
90 const struct BaseInputPinFuncTable* pFuncsTable;
91 } BaseInputPin;
93 typedef HRESULT (WINAPI *BaseInputPin_Receive)(BaseInputPin *This, IMediaSample *pSample);
95 typedef struct BaseInputPinFuncTable {
96 /* Optional */
97 BaseInputPin_Receive pfnReceive;
98 } BaseInputPinFuncTable;
100 /* Base Pin */
101 HRESULT WINAPI BasePinImpl_GetMediaType(BasePin *This, int iPosition, AM_MEDIA_TYPE *pmt);
102 LONG WINAPI BasePinImpl_GetMediaTypeVersion(BasePin *This);
103 ULONG WINAPI BasePinImpl_AddRef(IPin * iface);
104 HRESULT WINAPI BasePinImpl_Disconnect(IPin * iface);
105 HRESULT WINAPI BasePinImpl_ConnectedTo(IPin * iface, IPin ** ppPin);
106 HRESULT WINAPI BasePinImpl_ConnectionMediaType(IPin * iface, AM_MEDIA_TYPE * pmt);
107 HRESULT WINAPI BasePinImpl_QueryPinInfo(IPin * iface, PIN_INFO * pInfo);
108 HRESULT WINAPI BasePinImpl_QueryDirection(IPin * iface, PIN_DIRECTION * pPinDir);
109 HRESULT WINAPI BasePinImpl_QueryId(IPin * iface, LPWSTR * Id);
110 HRESULT WINAPI BasePinImpl_QueryAccept(IPin * iface, const AM_MEDIA_TYPE * pmt);
111 HRESULT WINAPI BasePinImpl_EnumMediaTypes(IPin * iface, IEnumMediaTypes ** ppEnum);
112 HRESULT WINAPI BasePinImpl_QueryInternalConnections(IPin * iface, IPin ** apPin, ULONG * cPin);
113 HRESULT WINAPI BasePinImpl_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate);
115 /* Base Output Pin */
116 HRESULT WINAPI BaseOutputPinImpl_QueryInterface(IPin * iface, REFIID riid, LPVOID * ppv);
117 ULONG WINAPI BaseOutputPinImpl_Release(IPin * iface);
118 HRESULT WINAPI BaseOutputPinImpl_Connect(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt);
119 HRESULT WINAPI BaseOutputPinImpl_ReceiveConnection(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt);
120 HRESULT WINAPI BaseOutputPinImpl_Disconnect(IPin * iface);
121 HRESULT WINAPI BaseOutputPinImpl_EndOfStream(IPin * iface);
122 HRESULT WINAPI BaseOutputPinImpl_BeginFlush(IPin * iface);
123 HRESULT WINAPI BaseOutputPinImpl_EndFlush(IPin * iface);
125 HRESULT WINAPI BaseOutputPinImpl_GetDeliveryBuffer(BaseOutputPin * This, IMediaSample ** ppSample, REFERENCE_TIME * tStart, REFERENCE_TIME * tStop, DWORD dwFlags);
126 HRESULT WINAPI BaseOutputPinImpl_Deliver(BaseOutputPin * This, IMediaSample * pSample);
127 HRESULT WINAPI BaseOutputPinImpl_BreakConnect(BaseOutputPin * This);
128 HRESULT WINAPI BaseOutputPinImpl_Active(BaseOutputPin * This);
129 HRESULT WINAPI BaseOutputPinImpl_Inactive(BaseOutputPin * This);
130 HRESULT WINAPI BaseOutputPinImpl_InitAllocator(BaseOutputPin *This, IMemAllocator **pMemAlloc);
131 HRESULT WINAPI BaseOutputPinImpl_DecideAllocator(BaseOutputPin *This, IMemInputPin *pPin, IMemAllocator **pAlloc);
132 HRESULT WINAPI BaseOutputPinImpl_AttemptConnection(BasePin *This, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt);
134 HRESULT WINAPI BaseOutputPin_Construct(const IPinVtbl *OutputPin_Vtbl, LONG outputpin_size, const PIN_INFO * pPinInfo, const BasePinFuncTable* pBaseFuncsTable, const BaseOutputPinFuncTable* pBaseOutputFuncsTable, LPCRITICAL_SECTION pCritSec, IPin ** ppPin);
136 /* Base Input Pin */
137 HRESULT WINAPI BaseInputPinImpl_QueryInterface(IPin * iface, REFIID riid, LPVOID * ppv);
138 ULONG WINAPI BaseInputPinImpl_Release(IPin * iface);
139 HRESULT WINAPI BaseInputPinImpl_Connect(IPin * iface, IPin * pConnector, const AM_MEDIA_TYPE * pmt);
140 HRESULT WINAPI BaseInputPinImpl_ReceiveConnection(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt);
141 HRESULT WINAPI BaseInputPinImpl_QueryAccept(IPin * iface, const AM_MEDIA_TYPE * pmt);
142 HRESULT WINAPI BaseInputPinImpl_EndOfStream(IPin * iface);
143 HRESULT WINAPI BaseInputPinImpl_BeginFlush(IPin * iface);
144 HRESULT WINAPI BaseInputPinImpl_EndFlush(IPin * iface);
145 HRESULT WINAPI BaseInputPinImpl_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate);
147 HRESULT BaseInputPin_Construct(const IPinVtbl *InputPin_Vtbl, const PIN_INFO * pPinInfo, const BasePinFuncTable* pBaseFuncsTable, const BaseInputPinFuncTable* pBaseInputFuncsTable, LPCRITICAL_SECTION pCritSec, IMemAllocator *, IPin ** ppPin);
149 typedef struct BaseFilter
151 IBaseFilter IBaseFilter_iface;
152 LONG refCount;
153 CRITICAL_SECTION csFilter;
155 FILTER_STATE state;
156 REFERENCE_TIME rtStreamStart;
157 IReferenceClock * pClock;
158 FILTER_INFO filterInfo;
159 CLSID clsid;
160 LONG pinVersion;
162 const struct BaseFilterFuncTable* pFuncsTable;
163 } BaseFilter;
165 typedef IPin* (WINAPI *BaseFilter_GetPin)(BaseFilter* iface, int iPosition);
166 typedef LONG (WINAPI *BaseFilter_GetPinCount)(BaseFilter* iface);
167 typedef LONG (WINAPI *BaseFilter_GetPinVersion)(BaseFilter* iface);
169 typedef struct BaseFilterFuncTable {
170 /* Required */
171 BaseFilter_GetPin pfnGetPin;
172 BaseFilter_GetPinCount pfnGetPinCount;
173 } BaseFilterFuncTable;
175 HRESULT WINAPI BaseFilterImpl_QueryInterface(IBaseFilter * iface, REFIID riid, LPVOID * ppv);
176 ULONG WINAPI BaseFilterImpl_AddRef(IBaseFilter * iface);
177 ULONG WINAPI BaseFilterImpl_Release(IBaseFilter * iface);
178 HRESULT WINAPI BaseFilterImpl_GetClassID(IBaseFilter * iface, CLSID * pClsid);
179 HRESULT WINAPI BaseFilterImpl_GetState(IBaseFilter * iface, DWORD dwMilliSecsTimeout, FILTER_STATE *pState );
180 HRESULT WINAPI BaseFilterImpl_SetSyncSource(IBaseFilter * iface, IReferenceClock *pClock);
181 HRESULT WINAPI BaseFilterImpl_GetSyncSource(IBaseFilter * iface, IReferenceClock **ppClock);
182 HRESULT WINAPI BaseFilterImpl_EnumPins(IBaseFilter * iface, IEnumPins **ppEnum);
183 HRESULT WINAPI BaseFilterImpl_QueryFilterInfo(IBaseFilter * iface, FILTER_INFO *pInfo);
184 HRESULT WINAPI BaseFilterImpl_JoinFilterGraph(IBaseFilter * iface, IFilterGraph *pGraph, LPCWSTR pName );
185 HRESULT WINAPI BaseFilterImpl_QueryVendorInfo(IBaseFilter * iface, LPWSTR *pVendorInfo);
187 LONG WINAPI BaseFilterImpl_GetPinVersion(BaseFilter* This);
188 VOID WINAPI BaseFilterImpl_IncrementPinVersion(BaseFilter* This);
190 HRESULT WINAPI BaseFilter_Init(BaseFilter * This, const IBaseFilterVtbl *Vtbl, const CLSID *pClsid, DWORD_PTR DebugInfo, const BaseFilterFuncTable* pBaseFuncsTable);
192 /* Enums */
193 HRESULT WINAPI EnumMediaTypes_Construct(BasePin *iface, BasePin_GetMediaType enumFunc, BasePin_GetMediaTypeVersion versionFunc, IEnumMediaTypes ** ppEnum);
195 HRESULT WINAPI EnumPins_Construct(BaseFilter *base, BaseFilter_GetPin receive_pin, BaseFilter_GetPinCount receive_pincount, BaseFilter_GetPinVersion receive_version, IEnumPins ** ppEnum);
197 /* Quality Control */
198 typedef struct QualityControlImpl {
199 const IQualityControlVtbl *lpVtbl;
200 IPin *input;
201 IBaseFilter *self;
202 IQualityControl *tonotify;
204 /* Render stuff */
205 IReferenceClock *clock;
206 REFERENCE_TIME last_in_time, last_left, avg_duration, avg_pt, avg_render, start, stop;
207 REFERENCE_TIME current_jitter, current_rstart, current_rstop, clockstart;
208 double avg_rate;
209 LONG64 rendered, dropped;
210 BOOL qos_handled, is_dropped;
211 } QualityControlImpl;
213 void QualityControlImpl_init(QualityControlImpl *This, IPin *input, IBaseFilter *self);
214 HRESULT WINAPI QualityControlImpl_QueryInterface(IQualityControl *iface, REFIID riid, void **ppv);
215 ULONG WINAPI QualityControlImpl_AddRef(IQualityControl *iface);
216 ULONG WINAPI QualityControlImpl_Release(IQualityControl *iface);
217 HRESULT WINAPI QualityControlImpl_Notify(IQualityControl *iface, IBaseFilter *sender, Quality qm);
218 HRESULT WINAPI QualityControlImpl_SetSink(IQualityControl *iface, IQualityControl *tonotify);
220 void QualityControlRender_Start(QualityControlImpl *This, REFERENCE_TIME tStart);
221 void QualityControlRender_SetClock(QualityControlImpl *This, IReferenceClock *clock);
222 HRESULT QualityControlRender_WaitFor(QualityControlImpl *This, IMediaSample *sample, HANDLE ev);
223 void QualityControlRender_DoQOS(QualityControlImpl *priv);
224 void QualityControlRender_BeginRender(QualityControlImpl *This);
225 void QualityControlRender_EndRender(QualityControlImpl *This);
227 /* Transform Filter */
228 typedef struct TransformFilter
230 BaseFilter filter;
232 IPin **ppPins;
233 ULONG npins;
234 AM_MEDIA_TYPE pmt;
235 CRITICAL_SECTION csReceive;
237 const struct TransformFilterFuncTable * pFuncsTable;
238 QualityControlImpl qcimpl;
239 } TransformFilter;
241 typedef HRESULT (WINAPI *TransformFilter_DecideBufferSize) (TransformFilter *iface, IMemAllocator *pAlloc, ALLOCATOR_PROPERTIES *ppropInputRequest);
242 typedef HRESULT (WINAPI *TransformFilter_StartStreaming) (TransformFilter *iface);
243 typedef HRESULT (WINAPI *TransformFilter_StopStreaming) (TransformFilter *iface);
244 typedef HRESULT (WINAPI *TransformFilter_Receive) (TransformFilter* iface, IMediaSample* pIn);
245 typedef HRESULT (WINAPI *TransformFilter_CompleteConnect) (TransformFilter *iface, PIN_DIRECTION dir, IPin *pPin);
246 typedef HRESULT (WINAPI *TransformFilter_BreakConnect) (TransformFilter *iface, PIN_DIRECTION dir);
247 typedef HRESULT (WINAPI *TransformFilter_SetMediaType) (TransformFilter *iface, PIN_DIRECTION dir, const AM_MEDIA_TYPE *pMediaType);
248 typedef HRESULT (WINAPI *TransformFilter_CheckInputType) (TransformFilter *iface, const AM_MEDIA_TYPE *pMediaType);
249 typedef HRESULT (WINAPI *TransformFilter_EndOfStream) (TransformFilter *iface);
250 typedef HRESULT (WINAPI *TransformFilter_BeginFlush) (TransformFilter *iface);
251 typedef HRESULT (WINAPI *TransformFilter_EndFlush) (TransformFilter *iface);
252 typedef HRESULT (WINAPI *TransformFilter_NewSegment) (TransformFilter *iface,
253 REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate);
254 typedef HRESULT (WINAPI *TransformFilter_Notify) (TransformFilter *iface, IBaseFilter *sender, Quality qm);
256 typedef struct TransformFilterFuncTable {
257 /* Required */
258 TransformFilter_DecideBufferSize pfnDecideBufferSize;
259 /* Optional */
260 TransformFilter_StartStreaming pfnStartStreaming;
261 TransformFilter_Receive pfnReceive;
262 TransformFilter_StopStreaming pfnStopStreaming;
263 TransformFilter_CheckInputType pfnCheckInputType;
264 TransformFilter_SetMediaType pfnSetMediaType;
265 TransformFilter_CompleteConnect pfnCompleteConnect;
266 TransformFilter_BreakConnect pfnBreakConnect;
267 TransformFilter_EndOfStream pfnEndOfStream;
268 TransformFilter_BeginFlush pfnBeginFlush;
269 TransformFilter_EndFlush pfnEndFlush;
270 TransformFilter_NewSegment pfnNewSegment;
271 TransformFilter_Notify pfnNotify;
272 } TransformFilterFuncTable;
274 HRESULT WINAPI TransformFilterImpl_QueryInterface(IBaseFilter * iface, REFIID riid, LPVOID * ppv);
275 ULONG WINAPI TransformFilterImpl_Release(IBaseFilter * iface);
276 HRESULT WINAPI TransformFilterImpl_Stop(IBaseFilter * iface);
277 HRESULT WINAPI TransformFilterImpl_Pause(IBaseFilter * iface);
278 HRESULT WINAPI TransformFilterImpl_Run(IBaseFilter * iface, REFERENCE_TIME tStart);
279 HRESULT WINAPI TransformFilterImpl_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin **ppPin);
281 HRESULT TransformFilter_Construct( const IBaseFilterVtbl *filterVtbl, LONG filter_size, const CLSID* pClsid, const TransformFilterFuncTable* pFuncsTable, IBaseFilter ** ppTransformFilter);
283 /* Source Seeking */
284 typedef HRESULT (WINAPI *SourceSeeking_ChangeRate)(IMediaSeeking *iface);
285 typedef HRESULT (WINAPI *SourceSeeking_ChangeStart)(IMediaSeeking *iface);
286 typedef HRESULT (WINAPI *SourceSeeking_ChangeStop)(IMediaSeeking *iface);
288 typedef struct SourceSeeking
290 IMediaSeeking IMediaSeeking_iface;
292 ULONG refCount;
293 SourceSeeking_ChangeStop fnChangeStop;
294 SourceSeeking_ChangeStart fnChangeStart;
295 SourceSeeking_ChangeRate fnChangeRate;
296 DWORD dwCapabilities;
297 double dRate;
298 LONGLONG llCurrent, llStop, llDuration;
299 GUID timeformat;
300 PCRITICAL_SECTION crst;
301 } SourceSeeking;
303 HRESULT SourceSeeking_Init(SourceSeeking *pSeeking, const IMediaSeekingVtbl *Vtbl, SourceSeeking_ChangeStop fnChangeStop, SourceSeeking_ChangeStart fnChangeStart, SourceSeeking_ChangeRate fnChangeRate, PCRITICAL_SECTION crit_sect);
305 HRESULT WINAPI SourceSeekingImpl_GetCapabilities(IMediaSeeking * iface, DWORD * pCapabilities);
306 HRESULT WINAPI SourceSeekingImpl_CheckCapabilities(IMediaSeeking * iface, DWORD * pCapabilities);
307 HRESULT WINAPI SourceSeekingImpl_IsFormatSupported(IMediaSeeking * iface, const GUID * pFormat);
308 HRESULT WINAPI SourceSeekingImpl_QueryPreferredFormat(IMediaSeeking * iface, GUID * pFormat);
309 HRESULT WINAPI SourceSeekingImpl_GetTimeFormat(IMediaSeeking * iface, GUID * pFormat);
310 HRESULT WINAPI SourceSeekingImpl_IsUsingTimeFormat(IMediaSeeking * iface, const GUID * pFormat);
311 HRESULT WINAPI SourceSeekingImpl_SetTimeFormat(IMediaSeeking * iface, const GUID * pFormat);
312 HRESULT WINAPI SourceSeekingImpl_GetDuration(IMediaSeeking * iface, LONGLONG * pDuration);
313 HRESULT WINAPI SourceSeekingImpl_GetStopPosition(IMediaSeeking * iface, LONGLONG * pStop);
314 HRESULT WINAPI SourceSeekingImpl_GetCurrentPosition(IMediaSeeking * iface, LONGLONG * pCurrent);
315 HRESULT WINAPI SourceSeekingImpl_ConvertTimeFormat(IMediaSeeking * iface, LONGLONG * pTarget, const GUID * pTargetFormat, LONGLONG Source, const GUID * pSourceFormat);
316 HRESULT WINAPI SourceSeekingImpl_SetPositions(IMediaSeeking * iface, LONGLONG * pCurrent, DWORD dwCurrentFlags, LONGLONG * pStop, DWORD dwStopFlags);
317 HRESULT WINAPI SourceSeekingImpl_GetPositions(IMediaSeeking * iface, LONGLONG * pCurrent, LONGLONG * pStop);
318 HRESULT WINAPI SourceSeekingImpl_GetAvailable(IMediaSeeking * iface, LONGLONG * pEarliest, LONGLONG * pLatest);
319 HRESULT WINAPI SourceSeekingImpl_SetRate(IMediaSeeking * iface, double dRate);
320 HRESULT WINAPI SourceSeekingImpl_GetRate(IMediaSeeking * iface, double * dRate);
321 HRESULT WINAPI SourceSeekingImpl_GetPreroll(IMediaSeeking * iface, LONGLONG * pPreroll);
323 /* PosPassThru */
324 HRESULT WINAPI RendererPosPassThru_RegisterMediaTime(IUnknown *iface, REFERENCE_TIME start);
325 HRESULT WINAPI RendererPosPassThru_ResetMediaTime(IUnknown *iface);
326 HRESULT WINAPI RendererPosPassThru_EOS(IUnknown *iface);
328 HRESULT WINAPI CreatePosPassThru(IUnknown* pUnkOuter, BOOL bRenderer, IPin *pPin, IUnknown **ppPassThru);
329 HRESULT WINAPI PosPassThru_Construct(IUnknown* pUnkOuter, LPVOID *ppPassThru);
331 /* Filter Registration */
333 typedef REGPINTYPES AMOVIESETUP_MEDIATYPE;
334 typedef REGFILTERPINS AMOVIESETUP_PIN;
336 typedef struct AMOVIESETUP_FILTER {
337 const CLSID *clsid;
338 const WCHAR *name;
339 DWORD merit;
340 UINT pins;
341 const AMOVIESETUP_PIN *pPin;
342 } AMOVIESETUP_FILTER, *LPAMOVIESETUP_FILTER;
344 typedef IUnknown *(CALLBACK *LPFNNewCOMObject)(LPUNKNOWN pUnkOuter, HRESULT *phr);
345 typedef void (CALLBACK *LPFNInitRoutine)(BOOL bLoading, const CLSID *rclsid);
347 typedef struct tagFactoryTemplate {
348 const WCHAR *m_Name;
349 const CLSID *m_ClsID;
350 LPFNNewCOMObject m_lpfnNew;
351 LPFNInitRoutine m_lpfnInit;
352 const AMOVIESETUP_FILTER *m_pAMovieSetup_Filter;
353 } FactoryTemplate;
355 HRESULT WINAPI AMovieDllRegisterServer2(BOOL bRegister);
356 HRESULT WINAPI AMovieSetupRegisterFilter2(const AMOVIESETUP_FILTER *pFilter, IFilterMapper2 *pIFM2, BOOL bRegister);
358 /* Output Queue */
359 typedef struct tagOutputQueue {
360 CRITICAL_SECTION csQueue;
362 BaseOutputPin * pInputPin;
364 HANDLE hThread;
365 HANDLE hProcessQueue;
367 LONG lBatchSize;
368 BOOL bBatchExact;
369 BOOL bTerminate;
370 BOOL bSendAnyway;
372 struct list *SampleList;
374 const struct OutputQueueFuncTable* pFuncsTable;
375 } OutputQueue;
377 typedef DWORD (WINAPI *OutputQueue_ThreadProc)(OutputQueue *This);
379 typedef struct OutputQueueFuncTable
381 OutputQueue_ThreadProc pfnThreadProc;
382 } OutputQueueFuncTable;
384 HRESULT WINAPI OutputQueue_Construct( BaseOutputPin *pInputPin, BOOL bAuto,
385 BOOL bQueue, LONG lBatchSize, BOOL bBatchExact, DWORD dwPriority,
386 const OutputQueueFuncTable* pFuncsTable, OutputQueue **ppOutputQueue );
387 HRESULT WINAPI OutputQueue_Destroy(OutputQueue *pOutputQueue);
388 HRESULT WINAPI OutputQueue_ReceiveMultiple(OutputQueue *pOutputQueue, IMediaSample **ppSamples, LONG nSamples, LONG *nSamplesProcessed);
389 HRESULT WINAPI OutputQueue_Receive(OutputQueue *pOutputQueue, IMediaSample *pSample);
390 VOID WINAPI OutputQueue_EOS(OutputQueue *pOutputQueue);
391 VOID WINAPI OutputQueue_SendAnyway(OutputQueue *pOutputQueue);
392 DWORD WINAPI OutputQueueImpl_ThreadProc(OutputQueue *pOutputQueue);
394 typedef struct tagBaseWindow
396 HWND hWnd;
397 LONG Width;
398 LONG Height;
399 HINSTANCE hInstance;
400 LPWSTR pClassName;
401 DWORD ClassStyles;
402 DWORD WindowStyles;
403 DWORD WindowStylesEx;
404 HDC hDC;
406 const struct BaseWindowFuncTable* pFuncsTable;
407 } BaseWindow;
409 typedef LPWSTR (WINAPI *BaseWindow_GetClassWindowStyles)(BaseWindow *This, DWORD *pClassStyles, DWORD *pWindowStyles, DWORD *pWindowStylesEx);
410 typedef RECT (WINAPI *BaseWindow_GetDefaultRect)(BaseWindow *This);
411 typedef BOOL (WINAPI *BaseWindow_PossiblyEatMessage)(BaseWindow *This, UINT uMsg, WPARAM wParam, LPARAM lParam);
412 typedef LRESULT (WINAPI *BaseWindow_OnReceiveMessage)(BaseWindow *This, HWND hwnd, INT uMsg, WPARAM wParam, LPARAM lParam);
413 typedef BOOL (WINAPI *BaseWindow_OnSize)(BaseWindow *This, LONG Height, LONG Width);
415 typedef struct BaseWindowFuncTable
417 /* Required */
418 BaseWindow_GetClassWindowStyles pfnGetClassWindowStyles;
419 BaseWindow_GetDefaultRect pfnGetDefaultRect;
420 /* Optional, WinProc Related */
421 BaseWindow_OnReceiveMessage pfnOnReceiveMessage;
422 BaseWindow_PossiblyEatMessage pfnPossiblyEatMessage;
423 BaseWindow_OnSize pfnOnSize;
424 } BaseWindowFuncTable;
426 HRESULT WINAPI BaseWindow_Init(BaseWindow *pBaseWindow, const BaseWindowFuncTable* pFuncsTable);
427 HRESULT WINAPI BaseWindow_Destroy(BaseWindow *pBaseWindow);
429 HRESULT WINAPI BaseWindowImpl_PrepareWindow(BaseWindow *This);
430 HRESULT WINAPI BaseWindowImpl_DoneWithWindow(BaseWindow *This);
431 RECT WINAPI BaseWindowImpl_GetDefaultRect(BaseWindow *This);
432 LRESULT WINAPI BaseWindowImpl_OnReceiveMessage(BaseWindow *This, HWND hwnd, INT uMsg, WPARAM wParam, LPARAM lParam);
433 BOOL WINAPI BaseWindowImpl_OnSize(BaseWindow *This, LONG Height, LONG Width);
435 #ifdef __IVideoWindow_FWD_DEFINED__
436 typedef struct tagBaseControlWindow
438 BaseWindow baseWindow;
439 IVideoWindow IVideoWindow_iface;
441 BOOL AutoShow;
442 HWND hwndDrain;
443 HWND hwndOwner;
444 BaseFilter* pFilter;
445 CRITICAL_SECTION* pInterfaceLock;
446 BasePin* pPin;
447 } BaseControlWindow;
449 HRESULT WINAPI BaseControlWindow_Init(BaseControlWindow *pControlWindow, const IVideoWindowVtbl *lpVtbl, BaseFilter *owner, CRITICAL_SECTION *lock, BasePin* pPin, const BaseWindowFuncTable* pFuncsTable);
451 BOOL WINAPI BaseControlWindowImpl_PossiblyEatMessage(BaseWindow *This, UINT uMsg, WPARAM wParam, LPARAM lParam);
452 HRESULT WINAPI BaseControlWindowImpl_GetTypeInfoCount(IVideoWindow *iface, UINT*pctinfo);
453 HRESULT WINAPI BaseControlWindowImpl_GetTypeInfo(IVideoWindow *iface, UINT iTInfo, LCID lcid, ITypeInfo**ppTInfo);
454 HRESULT WINAPI BaseControlWindowImpl_GetIDsOfNames(IVideoWindow *iface, REFIID riid, LPOLESTR*rgszNames, UINT cNames, LCID lcid, DISPID*rgDispId);
455 HRESULT WINAPI BaseControlWindowImpl_Invoke(IVideoWindow *iface, DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS*pDispParams, VARIANT*pVarResult, EXCEPINFO*pExepInfo, UINT*puArgErr);
456 HRESULT WINAPI BaseControlWindowImpl_put_Caption(IVideoWindow *iface, BSTR strCaption);
457 HRESULT WINAPI BaseControlWindowImpl_get_Caption(IVideoWindow *iface, BSTR *strCaption);
458 HRESULT WINAPI BaseControlWindowImpl_put_WindowStyle(IVideoWindow *iface, LONG WindowStyle);
459 HRESULT WINAPI BaseControlWindowImpl_get_WindowStyle(IVideoWindow *iface, LONG *WindowStyle);
460 HRESULT WINAPI BaseControlWindowImpl_put_WindowStyleEx(IVideoWindow *iface, LONG WindowStyleEx);
461 HRESULT WINAPI BaseControlWindowImpl_get_WindowStyleEx(IVideoWindow *iface, LONG *WindowStyleEx);
462 HRESULT WINAPI BaseControlWindowImpl_put_AutoShow(IVideoWindow *iface, LONG AutoShow);
463 HRESULT WINAPI BaseControlWindowImpl_get_AutoShow(IVideoWindow *iface, LONG *AutoShow);
464 HRESULT WINAPI BaseControlWindowImpl_put_WindowState(IVideoWindow *iface, LONG WindowState);
465 HRESULT WINAPI BaseControlWindowImpl_get_WindowState(IVideoWindow *iface, LONG *WindowState);
466 HRESULT WINAPI BaseControlWindowImpl_put_BackgroundPalette(IVideoWindow *iface, LONG BackgroundPalette);
467 HRESULT WINAPI BaseControlWindowImpl_get_BackgroundPalette(IVideoWindow *iface, LONG *pBackgroundPalette);
468 HRESULT WINAPI BaseControlWindowImpl_put_Visible(IVideoWindow *iface, LONG Visible);
469 HRESULT WINAPI BaseControlWindowImpl_get_Visible(IVideoWindow *iface, LONG *pVisible);
470 HRESULT WINAPI BaseControlWindowImpl_put_Left(IVideoWindow *iface, LONG Left);
471 HRESULT WINAPI BaseControlWindowImpl_get_Left(IVideoWindow *iface, LONG *pLeft);
472 HRESULT WINAPI BaseControlWindowImpl_put_Width(IVideoWindow *iface, LONG Width);
473 HRESULT WINAPI BaseControlWindowImpl_get_Width(IVideoWindow *iface, LONG *pWidth);
474 HRESULT WINAPI BaseControlWindowImpl_put_Top(IVideoWindow *iface, LONG Top);
475 HRESULT WINAPI BaseControlWindowImpl_get_Top(IVideoWindow *iface, LONG *pTop);
477 HRESULT WINAPI BaseControlWindowImpl_put_Height(IVideoWindow *iface, LONG Height);
478 HRESULT WINAPI BaseControlWindowImpl_get_Height(IVideoWindow *iface, LONG *pHeight);
479 HRESULT WINAPI BaseControlWindowImpl_put_Owner(IVideoWindow *iface, OAHWND Owner);
480 HRESULT WINAPI BaseControlWindowImpl_get_Owner(IVideoWindow *iface, OAHWND *Owner);
481 HRESULT WINAPI BaseControlWindowImpl_put_MessageDrain(IVideoWindow *iface, OAHWND Drain);
482 HRESULT WINAPI BaseControlWindowImpl_get_MessageDrain(IVideoWindow *iface, OAHWND *Drain);
483 HRESULT WINAPI BaseControlWindowImpl_get_BorderColor(IVideoWindow *iface, LONG *Color);
484 HRESULT WINAPI BaseControlWindowImpl_put_BorderColor(IVideoWindow *iface, LONG Color);
485 HRESULT WINAPI BaseControlWindowImpl_get_FullScreenMode(IVideoWindow *iface, LONG *FullScreenMode);
486 HRESULT WINAPI BaseControlWindowImpl_put_FullScreenMode(IVideoWindow *iface, LONG FullScreenMode);
487 HRESULT WINAPI BaseControlWindowImpl_SetWindowForeground(IVideoWindow *iface, LONG Focus);
488 HRESULT WINAPI BaseControlWindowImpl_SetWindowPosition(IVideoWindow *iface, LONG Left, LONG Top, LONG Width, LONG Height);
489 HRESULT WINAPI BaseControlWindowImpl_GetWindowPosition(IVideoWindow *iface, LONG *pLeft, LONG *pTop, LONG *pWidth, LONG *pHeight);
490 HRESULT WINAPI BaseControlWindowImpl_NotifyOwnerMessage(IVideoWindow *iface, OAHWND hwnd, LONG uMsg, LONG_PTR wParam, LONG_PTR lParam);
491 HRESULT WINAPI BaseControlWindowImpl_GetMinIdealImageSize(IVideoWindow *iface, LONG *pWidth, LONG *pHeight);
492 HRESULT WINAPI BaseControlWindowImpl_GetMaxIdealImageSize(IVideoWindow *iface, LONG *pWidth, LONG *pHeight);
493 HRESULT WINAPI BaseControlWindowImpl_GetRestorePosition(IVideoWindow *iface, LONG *pLeft, LONG *pTop, LONG *pWidth, LONG *pHeight);
494 HRESULT WINAPI BaseControlWindowImpl_HideCursor(IVideoWindow *iface, LONG HideCursor);
495 HRESULT WINAPI BaseControlWindowImpl_IsCursorHidden(IVideoWindow *iface, LONG *CursorHidden);
496 #endif
498 #ifdef __IBasicVideo_FWD_DEFINED__
499 #ifdef __amvideo_h__
500 typedef struct tagBaseControlVideo
502 IBasicVideo IBasicVideo_iface;
504 BaseFilter* pFilter;
505 CRITICAL_SECTION* pInterfaceLock;
506 BasePin* pPin;
508 const struct BaseControlVideoFuncTable* pFuncsTable;
509 } BaseControlVideo;
511 typedef HRESULT (WINAPI *BaseControlVideo_GetSourceRect)(BaseControlVideo* This, RECT *pSourceRect);
512 typedef HRESULT (WINAPI *BaseControlVideo_GetStaticImage)(BaseControlVideo* This, LONG *pBufferSize, LONG *pDIBImage);
513 typedef HRESULT (WINAPI *BaseControlVideo_GetTargetRect)(BaseControlVideo* This, RECT *pTargetRect);
514 typedef VIDEOINFOHEADER* (WINAPI *BaseControlVideo_GetVideoFormat)(BaseControlVideo* This);
515 typedef HRESULT (WINAPI *BaseControlVideo_IsDefaultSourceRect)(BaseControlVideo* This);
516 typedef HRESULT (WINAPI *BaseControlVideo_IsDefaultTargetRect)(BaseControlVideo* This);
517 typedef HRESULT (WINAPI *BaseControlVideo_SetDefaultSourceRect)(BaseControlVideo* This);
518 typedef HRESULT (WINAPI *BaseControlVideo_SetDefaultTargetRect)(BaseControlVideo* This);
519 typedef HRESULT (WINAPI *BaseControlVideo_SetSourceRect)(BaseControlVideo* This, RECT *pSourceRect);
520 typedef HRESULT (WINAPI *BaseControlVideo_SetTargetRect)(BaseControlVideo* This, RECT *pTargetRect);
522 typedef struct BaseControlVideoFuncTable {
523 /* Required */
524 BaseControlVideo_GetSourceRect pfnGetSourceRect;
525 BaseControlVideo_GetStaticImage pfnGetStaticImage;
526 BaseControlVideo_GetTargetRect pfnGetTargetRect;
527 BaseControlVideo_GetVideoFormat pfnGetVideoFormat;
528 BaseControlVideo_IsDefaultSourceRect pfnIsDefaultSourceRect;
529 BaseControlVideo_IsDefaultTargetRect pfnIsDefaultTargetRect;
530 BaseControlVideo_SetDefaultSourceRect pfnSetDefaultSourceRect;
531 BaseControlVideo_SetDefaultTargetRect pfnSetDefaultTargetRect;
532 BaseControlVideo_SetSourceRect pfnSetSourceRect;
533 BaseControlVideo_SetTargetRect pfnSetTargetRect;
534 } BaseControlVideoFuncTable;
536 HRESULT WINAPI BaseControlVideo_Init(BaseControlVideo *pControlVideo, const IBasicVideoVtbl *lpVtbl, BaseFilter *owner, CRITICAL_SECTION *lock, BasePin* pPin, const BaseControlVideoFuncTable* pFuncsTable);
538 HRESULT WINAPI BaseControlVideoImpl_GetTypeInfoCount(IBasicVideo *iface, UINT*pctinfo);
539 HRESULT WINAPI BaseControlVideoImpl_GetTypeInfo(IBasicVideo *iface, UINT iTInfo, LCID lcid, ITypeInfo**ppTInfo);
540 HRESULT WINAPI BaseControlVideoImpl_GetIDsOfNames(IBasicVideo *iface, REFIID riid, LPOLESTR*rgszNames, UINT cNames, LCID lcid, DISPID*rgDispId);
541 HRESULT WINAPI BaseControlVideoImpl_Invoke(IBasicVideo *iface, DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS*pDispParams, VARIANT*pVarResult, EXCEPINFO*pExepInfo, UINT*puArgErr);
542 HRESULT WINAPI BaseControlVideoImpl_get_AvgTimePerFrame(IBasicVideo *iface, REFTIME *pAvgTimePerFrame);
543 HRESULT WINAPI BaseControlVideoImpl_get_BitRate(IBasicVideo *iface, LONG *pBitRate);
544 HRESULT WINAPI BaseControlVideoImpl_get_BitErrorRate(IBasicVideo *iface, LONG *pBitErrorRate);
545 HRESULT WINAPI BaseControlVideoImpl_get_VideoWidth(IBasicVideo *iface, LONG *pVideoWidth);
546 HRESULT WINAPI BaseControlVideoImpl_get_VideoHeight(IBasicVideo *iface, LONG *pVideoHeight);
547 HRESULT WINAPI BaseControlVideoImpl_put_SourceLeft(IBasicVideo *iface, LONG SourceLeft);
548 HRESULT WINAPI BaseControlVideoImpl_get_SourceLeft(IBasicVideo *iface, LONG *pSourceLeft);
549 HRESULT WINAPI BaseControlVideoImpl_put_SourceWidth(IBasicVideo *iface, LONG SourceWidth);
550 HRESULT WINAPI BaseControlVideoImpl_get_SourceWidth(IBasicVideo *iface, LONG *pSourceWidth);
551 HRESULT WINAPI BaseControlVideoImpl_put_SourceTop(IBasicVideo *iface, LONG SourceTop);
552 HRESULT WINAPI BaseControlVideoImpl_get_SourceTop(IBasicVideo *iface, LONG *pSourceTop);
553 HRESULT WINAPI BaseControlVideoImpl_put_SourceHeight(IBasicVideo *iface, LONG SourceHeight);
554 HRESULT WINAPI BaseControlVideoImpl_get_SourceHeight(IBasicVideo *iface, LONG *pSourceHeight);
555 HRESULT WINAPI BaseControlVideoImpl_put_DestinationLeft(IBasicVideo *iface, LONG DestinationLeft);
556 HRESULT WINAPI BaseControlVideoImpl_get_DestinationLeft(IBasicVideo *iface, LONG *pDestinationLeft);
557 HRESULT WINAPI BaseControlVideoImpl_put_DestinationWidth(IBasicVideo *iface, LONG DestinationWidth);
558 HRESULT WINAPI BaseControlVideoImpl_get_DestinationWidth(IBasicVideo *iface, LONG *pDestinationWidth);
559 HRESULT WINAPI BaseControlVideoImpl_put_DestinationTop(IBasicVideo *iface, LONG DestinationTop);
560 HRESULT WINAPI BaseControlVideoImpl_get_DestinationTop(IBasicVideo *iface, LONG *pDestinationTop);
561 HRESULT WINAPI BaseControlVideoImpl_put_DestinationHeight(IBasicVideo *iface, LONG DestinationHeight);
562 HRESULT WINAPI BaseControlVideoImpl_get_DestinationHeight(IBasicVideo *iface, LONG *pDestinationHeight);
563 HRESULT WINAPI BaseControlVideoImpl_SetSourcePosition(IBasicVideo *iface, LONG Left, LONG Top, LONG Width, LONG Height);
564 HRESULT WINAPI BaseControlVideoImpl_GetSourcePosition(IBasicVideo *iface, LONG *pLeft, LONG *pTop, LONG *pWidth, LONG *pHeight);
565 HRESULT WINAPI BaseControlVideoImpl_SetDefaultSourcePosition(IBasicVideo *iface);
566 HRESULT WINAPI BaseControlVideoImpl_SetDestinationPosition(IBasicVideo *iface, LONG Left, LONG Top, LONG Width, LONG Height);
567 HRESULT WINAPI BaseControlVideoImpl_GetDestinationPosition(IBasicVideo *iface, LONG *pLeft, LONG *pTop, LONG *pWidth, LONG *pHeight);
568 HRESULT WINAPI BaseControlVideoImpl_SetDefaultDestinationPosition(IBasicVideo *iface);
569 HRESULT WINAPI BaseControlVideoImpl_GetVideoSize(IBasicVideo *iface, LONG *pWidth, LONG *pHeight);
570 HRESULT WINAPI BaseControlVideoImpl_GetVideoPaletteEntries(IBasicVideo *iface, LONG StartIndex, LONG Entries, LONG *pRetrieved, LONG *pPalette);
571 HRESULT WINAPI BaseControlVideoImpl_GetCurrentImage(IBasicVideo *iface, LONG *pBufferSize, LONG *pDIBImage);
572 HRESULT WINAPI BaseControlVideoImpl_IsUsingDefaultSource(IBasicVideo *iface);
573 HRESULT WINAPI BaseControlVideoImpl_IsUsingDefaultDestination(IBasicVideo *iface);
574 #endif
575 #endif
577 /* BaseRenderer Filter */
578 typedef struct BaseRendererTag
580 BaseFilter filter;
582 BaseInputPin *pInputPin;
583 IUnknown *pPosition;
584 CRITICAL_SECTION csRenderLock;
586 const struct BaseRendererFuncTable * pFuncsTable;
587 } BaseRenderer;
589 typedef HRESULT (WINAPI *BaseRenderer_CheckMediaType)(BaseRenderer *This, const AM_MEDIA_TYPE *pmt);
590 typedef HRESULT (WINAPI *BaseRenderer_DoRenderSample)(BaseRenderer *This, IMediaSample *pMediaSample);
591 typedef VOID (WINAPI *BaseRenderer_OnReceiveFirstSample)(BaseRenderer *This, IMediaSample *pMediaSample);
592 typedef VOID (WINAPI *BaseRenderer_OnRenderEnd)(BaseRenderer *This, IMediaSample *pMediaSample);
593 typedef VOID (WINAPI *BaseRenderer_OnRenderStart)(BaseRenderer *This, IMediaSample *pMediaSample);
594 typedef VOID (WINAPI *BaseRenderer_OnStartStreaming)(BaseRenderer *This);
595 typedef VOID (WINAPI *BaseRenderer_OnStopStreaming)(BaseRenderer *This);
596 typedef VOID (WINAPI *BaseRenderer_OnWaitEnd)(BaseRenderer *This);
597 typedef VOID (WINAPI *BaseRenderer_OnWaitStart)(BaseRenderer *This);
598 typedef VOID (WINAPI *BaseRenderer_PrepareRender)(BaseRenderer *This);
599 typedef HRESULT (WINAPI *BaseRenderer_ShouldDrawSampleNow)(BaseRenderer *This, IMediaSample *pMediaSample, REFERENCE_TIME *pStartTime, REFERENCE_TIME *pEndTime);
600 typedef HRESULT (WINAPI *BaseRenderer_PrepareReceive)(BaseRenderer *This, IMediaSample *pMediaSample);
601 typedef HRESULT (WINAPI *BaseRenderer_EndOfStream)(BaseRenderer *This);
602 typedef HRESULT (WINAPI *BaseRenderer_EndFlush) (BaseRenderer *This);
604 typedef struct BaseRendererFuncTable {
605 /* Required */
606 BaseRenderer_CheckMediaType pfnCheckMediaType;
607 BaseRenderer_DoRenderSample pfnDoRenderSample;
608 /* Optional, Data Handlers */
609 BaseRenderer_OnReceiveFirstSample pfnOnReceiveFirstSample;
610 BaseRenderer_OnRenderEnd pfnOnRenderEnd;
611 BaseRenderer_OnRenderStart pfnOnRenderStart;
612 BaseRenderer_OnStartStreaming pfnOnStartStreaming;
613 BaseRenderer_OnStopStreaming pfnOnStopStreaming;
614 BaseRenderer_OnWaitEnd pfnOnWaitEnd;
615 BaseRenderer_OnWaitStart pfnOnWaitStart;
616 BaseRenderer_PrepareRender pfnPrepareRender;
617 BaseRenderer_ShouldDrawSampleNow pfnShouldDrawSampleNow;
618 BaseRenderer_PrepareReceive pfnPrepareReceive;
619 /* Optional, Input Pin */
620 BaseRenderer_EndOfStream pfnEndOfStream;
621 BaseRenderer_EndFlush pfnEndFlush;
622 } BaseRendererFuncTable;
624 HRESULT WINAPI BaseRendererImpl_QueryInterface(IBaseFilter * iface, REFIID riid, LPVOID * ppv);
625 ULONG WINAPI BaseRendererImpl_Release(IBaseFilter * iface);
626 HRESULT WINAPI BaseRendererImpl_Receive(BaseRenderer *This, IMediaSample * pSample);
627 HRESULT WINAPI BaseRendererImpl_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin **ppPin);
628 HRESULT WINAPI BaseRendererImpl_Stop(IBaseFilter * iface);
629 HRESULT WINAPI BaseRendererImpl_Run(IBaseFilter * iface, REFERENCE_TIME tStart);
630 HRESULT WINAPI BaseRendererImpl_Pause(IBaseFilter * iface);
631 HRESULT WINAPI BaseRendererImpl_EndOfStream(BaseRenderer* iface);
632 HRESULT WINAPI BaseRendererImpl_EndFlush(BaseRenderer* iface);
634 HRESULT WINAPI BaseRenderer_Init(BaseRenderer *This, const IBaseFilterVtbl *Vtbl, IUnknown *pUnkOuter, const CLSID *pClsid, DWORD_PTR DebugInfo, const BaseRendererFuncTable* pBaseFuncsTable);
636 /* Dll Functions */
637 BOOL WINAPI STRMBASE_DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv);
638 HRESULT WINAPI STRMBASE_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv);
639 HRESULT WINAPI STRMBASE_DllCanUnloadNow(void);