2 * Transform Filter (Base for decoders, etc...)
4 * Copyright 2005 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
23 #include "quartz_private.h"
24 #include "control_private.h"
36 #include "wine/unicode.h"
37 #include "wine/debug.h"
39 #include "transform.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
43 static const WCHAR wcsInputPinName
[] = {'i','n','p','u','t',' ','p','i','n',0};
44 static const WCHAR wcsOutputPinName
[] = {'o','u','t','p','u','t',' ','p','i','n',0};
46 static const IBaseFilterVtbl TransformFilter_Vtbl
;
47 static const IPinVtbl TransformFilter_InputPin_Vtbl
;
48 static const IMemInputPinVtbl MemInputPin_Vtbl
;
49 static const IPinVtbl TransformFilter_OutputPin_Vtbl
;
51 static HRESULT
TransformFilter_Sample(LPVOID iface
, IMediaSample
* pSample
)
53 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
55 TRACE("%p %p\n", iface
, pSample
);
57 if (This
->state
== State_Stopped
)
60 return This
->pFuncsTable
->pfnProcessSampleData(This
, pSample
);
63 static HRESULT
TransformFilter_Input_QueryAccept(LPVOID iface
, const AM_MEDIA_TYPE
* pmt
)
65 TransformFilterImpl
* This
= (TransformFilterImpl
*)iface
;
67 dump_AM_MEDIA_TYPE(pmt
);
69 if (This
->pFuncsTable
->pfnQueryConnect
)
70 return This
->pFuncsTable
->pfnQueryConnect(This
, pmt
);
71 /* Assume OK if there's no query method (the connection will fail if
77 static HRESULT
TransformFilter_Output_QueryAccept(LPVOID iface
, const AM_MEDIA_TYPE
* pmt
)
79 TransformFilterImpl
* pTransformFilter
= (TransformFilterImpl
*)iface
;
80 AM_MEDIA_TYPE
* outpmt
= &((OutputPin
*)pTransformFilter
->ppPins
[1])->pin
.mtCurrent
;
83 if (IsEqualIID(&pmt
->majortype
, &outpmt
->majortype
) && IsEqualIID(&pmt
->subtype
, &outpmt
->subtype
))
89 static inline TransformFilterImpl
*impl_from_IMediaSeeking( IMediaSeeking
*iface
)
91 return (TransformFilterImpl
*)((char*)iface
- FIELD_OFFSET(TransformFilterImpl
, mediaSeeking
.lpVtbl
));
94 static HRESULT WINAPI
TransformFilter_Seeking_QueryInterface(IMediaSeeking
* iface
, REFIID riid
, LPVOID
* ppv
)
96 TransformFilterImpl
*This
= impl_from_IMediaSeeking(iface
);
98 return IUnknown_QueryInterface((IUnknown
*)This
, riid
, ppv
);
101 static ULONG WINAPI
TransformFilter_Seeking_AddRef(IMediaSeeking
* iface
)
103 TransformFilterImpl
*This
= impl_from_IMediaSeeking(iface
);
105 return IUnknown_AddRef((IUnknown
*)This
);
108 static ULONG WINAPI
TransformFilter_Seeking_Release(IMediaSeeking
* iface
)
110 TransformFilterImpl
*This
= impl_from_IMediaSeeking(iface
);
112 return IUnknown_Release((IUnknown
*)This
);
115 static const IMediaSeekingVtbl TransformFilter_Seeking_Vtbl
=
117 TransformFilter_Seeking_QueryInterface
,
118 TransformFilter_Seeking_AddRef
,
119 TransformFilter_Seeking_Release
,
120 MediaSeekingImpl_GetCapabilities
,
121 MediaSeekingImpl_CheckCapabilities
,
122 MediaSeekingImpl_IsFormatSupported
,
123 MediaSeekingImpl_QueryPreferredFormat
,
124 MediaSeekingImpl_GetTimeFormat
,
125 MediaSeekingImpl_IsUsingTimeFormat
,
126 MediaSeekingImpl_SetTimeFormat
,
127 MediaSeekingImpl_GetDuration
,
128 MediaSeekingImpl_GetStopPosition
,
129 MediaSeekingImpl_GetCurrentPosition
,
130 MediaSeekingImpl_ConvertTimeFormat
,
131 MediaSeekingImpl_SetPositions
,
132 MediaSeekingImpl_GetPositions
,
133 MediaSeekingImpl_GetAvailable
,
134 MediaSeekingImpl_SetRate
,
135 MediaSeekingImpl_GetRate
,
136 MediaSeekingImpl_GetPreroll
139 /* These shouldn't be implemented by default.
140 * Usually only source filters should implement these
141 * and even it's not needed all of the time
143 static HRESULT
TransformFilter_ChangeCurrent(IBaseFilter
*iface
)
145 TRACE("(%p) filter hasn't implemented current position change!\n", iface
);
149 static HRESULT
TransformFilter_ChangeStop(IBaseFilter
*iface
)
151 TRACE("(%p) filter hasn't implemented stop position change!\n", iface
);
155 static HRESULT
TransformFilter_ChangeRate(IBaseFilter
*iface
)
157 TRACE("(%p) filter hasn't implemented rate change!\n", iface
);
161 HRESULT
TransformFilter_Create(TransformFilterImpl
* pTransformFilter
, const CLSID
* pClsid
, const TransformFuncsTable
* pFuncsTable
, CHANGEPROC stop
, CHANGEPROC current
, CHANGEPROC rate
)
167 /* pTransformFilter is already allocated */
168 pTransformFilter
->clsid
= *pClsid
;
169 pTransformFilter
->pFuncsTable
= pFuncsTable
;
171 pTransformFilter
->lpVtbl
= &TransformFilter_Vtbl
;
173 pTransformFilter
->refCount
= 1;
174 InitializeCriticalSection(&pTransformFilter
->csFilter
);
175 pTransformFilter
->csFilter
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": TransformFilterImpl.csFilter");
176 pTransformFilter
->state
= State_Stopped
;
177 pTransformFilter
->pClock
= NULL
;
178 ZeroMemory(&pTransformFilter
->filterInfo
, sizeof(FILTER_INFO
));
180 pTransformFilter
->ppPins
= CoTaskMemAlloc(2 * sizeof(IPin
*));
182 /* construct input pin */
183 piInput
.dir
= PINDIR_INPUT
;
184 piInput
.pFilter
= (IBaseFilter
*)pTransformFilter
;
185 lstrcpynW(piInput
.achName
, wcsInputPinName
, sizeof(piInput
.achName
) / sizeof(piInput
.achName
[0]));
186 piOutput
.dir
= PINDIR_OUTPUT
;
187 piOutput
.pFilter
= (IBaseFilter
*)pTransformFilter
;
188 lstrcpynW(piOutput
.achName
, wcsOutputPinName
, sizeof(piOutput
.achName
) / sizeof(piOutput
.achName
[0]));
190 hr
= InputPin_Construct(&TransformFilter_InputPin_Vtbl
, &piInput
, TransformFilter_Sample
, pTransformFilter
, TransformFilter_Input_QueryAccept
, NULL
, &pTransformFilter
->csFilter
, &pTransformFilter
->ppPins
[0]);
194 ALLOCATOR_PROPERTIES props
;
197 props
.cbBuffer
= 0; /* Will be updated at connection time */
200 hr
= OutputPin_Construct(&TransformFilter_OutputPin_Vtbl
, sizeof(OutputPin
), &piOutput
, &props
, pTransformFilter
, TransformFilter_Output_QueryAccept
, &pTransformFilter
->csFilter
, &pTransformFilter
->ppPins
[1]);
203 ERR("Cannot create output pin (%x)\n", hr
);
207 stop
= TransformFilter_ChangeStop
;
209 current
= TransformFilter_ChangeCurrent
;
211 rate
= TransformFilter_ChangeRate
;
213 MediaSeekingImpl_Init((IBaseFilter
*)pTransformFilter
, stop
, current
, rate
, &pTransformFilter
->mediaSeeking
, &pTransformFilter
->csFilter
);
214 pTransformFilter
->mediaSeeking
.lpVtbl
= &TransformFilter_Seeking_Vtbl
;
219 CoTaskMemFree(pTransformFilter
->ppPins
);
220 pTransformFilter
->csFilter
.DebugInfo
->Spare
[0] = 0;
221 DeleteCriticalSection(&pTransformFilter
->csFilter
);
222 CoTaskMemFree(pTransformFilter
);
228 static HRESULT WINAPI
TransformFilter_QueryInterface(IBaseFilter
* iface
, REFIID riid
, LPVOID
* ppv
)
230 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
231 TRACE("(%p/%p)->(%s, %p)\n", This
, iface
, qzdebugstr_guid(riid
), ppv
);
235 if (IsEqualIID(riid
, &IID_IUnknown
))
237 else if (IsEqualIID(riid
, &IID_IPersist
))
239 else if (IsEqualIID(riid
, &IID_IMediaFilter
))
241 else if (IsEqualIID(riid
, &IID_IBaseFilter
))
243 else if (IsEqualIID(riid
, &IID_IMediaSeeking
))
244 *ppv
= &This
->mediaSeeking
;
248 IUnknown_AddRef((IUnknown
*)(*ppv
));
252 if (!IsEqualIID(riid
, &IID_IPin
) && !IsEqualIID(riid
, &IID_IVideoWindow
))
253 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
255 return E_NOINTERFACE
;
258 static ULONG WINAPI
TransformFilter_AddRef(IBaseFilter
* iface
)
260 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
261 ULONG refCount
= InterlockedIncrement(&This
->refCount
);
263 TRACE("(%p/%p)->() AddRef from %d\n", This
, iface
, refCount
- 1);
268 static ULONG WINAPI
TransformFilter_Release(IBaseFilter
* iface
)
270 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
271 ULONG refCount
= InterlockedDecrement(&This
->refCount
);
273 TRACE("(%p/%p)->() Release from %d\n", This
, iface
, refCount
+ 1);
280 IReferenceClock_Release(This
->pClock
);
282 for (i
= 0; i
< 2; i
++)
286 if (SUCCEEDED(IPin_ConnectedTo(This
->ppPins
[i
], &pConnectedTo
)))
288 IPin_Disconnect(pConnectedTo
);
289 IPin_Release(pConnectedTo
);
291 IPin_Disconnect(This
->ppPins
[i
]);
293 IPin_Release(This
->ppPins
[i
]);
296 CoTaskMemFree(This
->ppPins
);
299 This
->csFilter
.DebugInfo
->Spare
[0] = 0;
300 DeleteCriticalSection(&This
->csFilter
);
302 TRACE("Destroying transform filter\n");
311 /** IPersist methods **/
313 static HRESULT WINAPI
TransformFilter_GetClassID(IBaseFilter
* iface
, CLSID
* pClsid
)
315 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
317 TRACE("(%p/%p)->(%p)\n", This
, iface
, pClsid
);
319 *pClsid
= This
->clsid
;
324 /** IMediaFilter methods **/
326 static HRESULT WINAPI
TransformFilter_Stop(IBaseFilter
* iface
)
328 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
330 TRACE("(%p/%p)\n", This
, iface
);
332 EnterCriticalSection(&This
->csFilter
);
334 This
->state
= State_Stopped
;
335 if (This
->pFuncsTable
->pfnProcessEnd
)
336 This
->pFuncsTable
->pfnProcessEnd(This
);
338 LeaveCriticalSection(&This
->csFilter
);
343 static HRESULT WINAPI
TransformFilter_Pause(IBaseFilter
* iface
)
345 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
347 TRACE("(%p/%p)->()\n", This
, iface
);
349 EnterCriticalSection(&This
->csFilter
);
351 if (This
->state
== State_Stopped
)
352 ((InputPin
*)This
->ppPins
[0])->end_of_stream
= 0;
354 This
->state
= State_Paused
;
356 LeaveCriticalSection(&This
->csFilter
);
361 static HRESULT WINAPI
TransformFilter_Run(IBaseFilter
* iface
, REFERENCE_TIME tStart
)
364 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
366 TRACE("(%p/%p)->(%s)\n", This
, iface
, wine_dbgstr_longlong(tStart
));
368 EnterCriticalSection(&This
->csFilter
);
370 if (This
->state
== State_Stopped
)
371 ((InputPin
*)This
->ppPins
[0])->end_of_stream
= 0;
373 This
->rtStreamStart
= tStart
;
374 This
->state
= State_Running
;
375 OutputPin_CommitAllocator((OutputPin
*)This
->ppPins
[1]);
376 if (This
->pFuncsTable
->pfnProcessBegin
)
377 This
->pFuncsTable
->pfnProcessBegin(This
);
379 LeaveCriticalSection(&This
->csFilter
);
384 static HRESULT WINAPI
TransformFilter_GetState(IBaseFilter
* iface
, DWORD dwMilliSecsTimeout
, FILTER_STATE
*pState
)
386 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
388 TRACE("(%p/%p)->(%d, %p)\n", This
, iface
, dwMilliSecsTimeout
, pState
);
390 EnterCriticalSection(&This
->csFilter
);
392 *pState
= This
->state
;
394 LeaveCriticalSection(&This
->csFilter
);
399 static HRESULT WINAPI
TransformFilter_SetSyncSource(IBaseFilter
* iface
, IReferenceClock
*pClock
)
401 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
403 TRACE("(%p/%p)->(%p)\n", This
, iface
, pClock
);
405 EnterCriticalSection(&This
->csFilter
);
408 IReferenceClock_Release(This
->pClock
);
409 This
->pClock
= pClock
;
411 IReferenceClock_AddRef(This
->pClock
);
413 LeaveCriticalSection(&This
->csFilter
);
418 static HRESULT WINAPI
TransformFilter_GetSyncSource(IBaseFilter
* iface
, IReferenceClock
**ppClock
)
420 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
422 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppClock
);
424 EnterCriticalSection(&This
->csFilter
);
426 *ppClock
= This
->pClock
;
428 IReferenceClock_AddRef(This
->pClock
);
430 LeaveCriticalSection(&This
->csFilter
);
435 /** IBaseFilter implementation **/
437 static HRESULT
TransformFilter_GetPin(IBaseFilter
*iface
, ULONG pos
, IPin
**pin
, DWORD
*lastsynctick
)
439 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
441 /* Our pins are static, not changing so setting static tick count is ok */
447 *pin
= This
->ppPins
[pos
];
452 static HRESULT WINAPI
TransformFilter_EnumPins(IBaseFilter
* iface
, IEnumPins
**ppEnum
)
454 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
456 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppEnum
);
458 return IEnumPinsImpl_Construct(ppEnum
, TransformFilter_GetPin
, iface
);
461 static HRESULT WINAPI
TransformFilter_FindPin(IBaseFilter
* iface
, LPCWSTR Id
, IPin
**ppPin
)
463 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
465 TRACE("(%p/%p)->(%p,%p)\n", This
, iface
, debugstr_w(Id
), ppPin
);
470 static HRESULT WINAPI
TransformFilter_QueryFilterInfo(IBaseFilter
* iface
, FILTER_INFO
*pInfo
)
472 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
474 TRACE("(%p/%p)->(%p)\n", This
, iface
, pInfo
);
476 strcpyW(pInfo
->achName
, This
->filterInfo
.achName
);
477 pInfo
->pGraph
= This
->filterInfo
.pGraph
;
480 IFilterGraph_AddRef(pInfo
->pGraph
);
485 static HRESULT WINAPI
TransformFilter_JoinFilterGraph(IBaseFilter
* iface
, IFilterGraph
*pGraph
, LPCWSTR pName
)
488 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
490 TRACE("(%p/%p)->(%p, %s)\n", This
, iface
, pGraph
, debugstr_w(pName
));
492 EnterCriticalSection(&This
->csFilter
);
495 strcpyW(This
->filterInfo
.achName
, pName
);
497 *This
->filterInfo
.achName
= '\0';
498 This
->filterInfo
.pGraph
= pGraph
; /* NOTE: do NOT increase ref. count */
500 LeaveCriticalSection(&This
->csFilter
);
505 static HRESULT WINAPI
TransformFilter_QueryVendorInfo(IBaseFilter
* iface
, LPWSTR
*pVendorInfo
)
507 TransformFilterImpl
*This
= (TransformFilterImpl
*)iface
;
508 TRACE("(%p/%p)->(%p)\n", This
, iface
, pVendorInfo
);
512 static const IBaseFilterVtbl TransformFilter_Vtbl
=
514 TransformFilter_QueryInterface
,
515 TransformFilter_AddRef
,
516 TransformFilter_Release
,
517 TransformFilter_GetClassID
,
518 TransformFilter_Stop
,
519 TransformFilter_Pause
,
521 TransformFilter_GetState
,
522 TransformFilter_SetSyncSource
,
523 TransformFilter_GetSyncSource
,
524 TransformFilter_EnumPins
,
525 TransformFilter_FindPin
,
526 TransformFilter_QueryFilterInfo
,
527 TransformFilter_JoinFilterGraph
,
528 TransformFilter_QueryVendorInfo
531 static HRESULT WINAPI
TransformFilter_InputPin_EndOfStream(IPin
* iface
)
533 InputPin
* This
= (InputPin
*) iface
;
534 TransformFilterImpl
* pTransform
;
538 TRACE("(%p)->()\n", iface
);
540 /* Since we process samples synchronously, just forward notification downstream */
541 pTransform
= (TransformFilterImpl
*)This
->pin
.pinInfo
.pFilter
;
545 hr
= IPin_ConnectedTo(pTransform
->ppPins
[1], &ppin
);
548 hr
= IPin_EndOfStream(ppin
);
557 static HRESULT WINAPI
TransformFilter_InputPin_ReceiveConnection(IPin
* iface
, IPin
* pReceivePin
, const AM_MEDIA_TYPE
* pmt
)
559 InputPin
* This
= (InputPin
*) iface
;
560 TransformFilterImpl
* pTransform
;
563 TRACE("(%p)->(%p, %p)\n", iface
, pReceivePin
, pmt
);
565 pTransform
= (TransformFilterImpl
*)This
->pin
.pinInfo
.pFilter
;
567 hr
= pTransform
->pFuncsTable
->pfnConnectInput(pTransform
, pmt
);
570 hr
= InputPin_ReceiveConnection(iface
, pReceivePin
, pmt
);
572 pTransform
->pFuncsTable
->pfnCleanup(pTransform
);
578 static HRESULT WINAPI
TransformFilter_InputPin_Disconnect(IPin
* iface
)
580 InputPin
* This
= (InputPin
*) iface
;
581 TransformFilterImpl
* pTransform
;
583 TRACE("(%p)->()\n", iface
);
585 pTransform
= (TransformFilterImpl
*)This
->pin
.pinInfo
.pFilter
;
586 pTransform
->pFuncsTable
->pfnCleanup(pTransform
);
588 return IPinImpl_Disconnect(iface
);
591 static const IPinVtbl TransformFilter_InputPin_Vtbl
=
593 InputPin_QueryInterface
,
597 TransformFilter_InputPin_ReceiveConnection
,
598 TransformFilter_InputPin_Disconnect
,
599 IPinImpl_ConnectedTo
,
600 IPinImpl_ConnectionMediaType
,
601 IPinImpl_QueryPinInfo
,
602 IPinImpl_QueryDirection
,
604 IPinImpl_QueryAccept
,
605 IPinImpl_EnumMediaTypes
,
606 IPinImpl_QueryInternalConnections
,
607 TransformFilter_InputPin_EndOfStream
,
613 static HRESULT WINAPI
TransformFilter_Output_EnumMediaTypes(IPin
* iface
, IEnumMediaTypes
** ppEnum
)
615 IPinImpl
*This
= (IPinImpl
*)iface
;
616 ENUMMEDIADETAILS emd
;
618 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppEnum
);
621 emd
.pMediaTypes
= &This
->mtCurrent
;
623 return IEnumMediaTypesImpl_Construct(&emd
, ppEnum
);
626 static const IPinVtbl TransformFilter_OutputPin_Vtbl
=
628 OutputPin_QueryInterface
,
632 OutputPin_ReceiveConnection
,
633 OutputPin_Disconnect
,
634 IPinImpl_ConnectedTo
,
635 IPinImpl_ConnectionMediaType
,
636 IPinImpl_QueryPinInfo
,
637 IPinImpl_QueryDirection
,
639 IPinImpl_QueryAccept
,
640 TransformFilter_Output_EnumMediaTypes
,
641 IPinImpl_QueryInternalConnections
,
642 OutputPin_EndOfStream
,
643 OutputPin_BeginFlush
,
648 static const IMemInputPinVtbl MemInputPin_Vtbl
=
650 MemInputPin_QueryInterface
,
653 MemInputPin_GetAllocator
,
654 MemInputPin_NotifyAllocator
,
655 MemInputPin_GetAllocatorRequirements
,
657 MemInputPin_ReceiveMultiple
,
658 MemInputPin_ReceiveCanBlock