2 * Generic Implementation of IPin Interface
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
25 #include "wine/debug.h"
26 #include "wine/unicode.h"
27 #include "wine/strmbase.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(strmbase);
34 static const IPinVtbl InputPin_Vtbl;
35 static const IPinVtbl OutputPin_Vtbl;
36 static const IMemInputPinVtbl MemInputPin_Vtbl;
38 typedef HRESULT (*SendPinFunc)( IPin *to, LPVOID arg );
40 /** Helper function, there are a lot of places where the error code is inherited
41 * The following rules apply:
43 * Return the first received error code (E_NOTIMPL is ignored)
44 * If no errors occur: return the first received non-error-code that isn't S_OK
46 static HRESULT updatehres( HRESULT original, HRESULT new )
48 if (FAILED( original ) || new == E_NOTIMPL)
51 if (FAILED( new ) || original == S_OK)
57 /** Sends a message from a pin further to other, similar pins
58 * fnMiddle is called on each pin found further on the stream.
59 * fnEnd (can be NULL) is called when the message can't be sent any further (this is a renderer or source)
61 * If the pin given is an input pin, the message will be sent downstream to other input pins
62 * If the pin given is an output pin, the message will be sent upstream to other output pins
64 static HRESULT SendFurther( IPin *from, SendPinFunc fnMiddle, LPVOID arg, SendPinFunc fnEnd )
69 HRESULT hr_return = S_OK;
70 IEnumPins *enumpins = NULL;
72 PIN_DIRECTION from_dir;
74 IPin_QueryDirection( from, &from_dir );
76 hr = IPin_QueryInternalConnections( from, NULL, &amount );
77 if (hr != E_NOTIMPL && amount)
78 FIXME("Use QueryInternalConnections!\n");
81 pin_info.pFilter = NULL;
82 hr = IPin_QueryPinInfo( from, &pin_info );
86 hr = IBaseFilter_EnumPins( pin_info.pFilter, &enumpins );
90 hr = IEnumPins_Reset( enumpins );
93 hr = IEnumPins_Next( enumpins, 1, &pin, NULL );
94 if (hr == VFW_E_ENUM_OUT_OF_SYNC)
96 hr = IEnumPins_Reset( enumpins );
103 IPin_QueryDirection( pin, &dir );
106 IPin *connected = NULL;
109 IPin_ConnectedTo( pin, &connected );
114 hr_local = fnMiddle( connected, arg );
115 hr_return = updatehres( hr_return, hr_local );
116 IPin_Release(connected);
133 hr_local = fnEnd( from, arg );
134 hr_return = updatehres( hr_return, hr_local );
138 if (pin_info.pFilter)
139 IBaseFilter_Release( pin_info.pFilter );
143 static void Copy_PinInfo(PIN_INFO * pDest, const PIN_INFO * pSrc)
145 /* Tempting to just do a memcpy, but the name field is
146 128 characters long! We will probably never exceed 10
147 most of the time, so we are better off copying
148 each field manually */
149 strcpyW(pDest->achName, pSrc->achName);
150 pDest->dir = pSrc->dir;
151 pDest->pFilter = pSrc->pFilter;
154 static void dump_AM_MEDIA_TYPE(const AM_MEDIA_TYPE * pmt)
158 TRACE("\t%s\n\t%s\n\t...\n\t%s\n", debugstr_guid(&pmt->majortype), debugstr_guid(&pmt->subtype), debugstr_guid(&pmt->formattype));
161 static BOOL CompareMediaTypes(const AM_MEDIA_TYPE * pmt1, const AM_MEDIA_TYPE * pmt2, BOOL bWildcards)
164 dump_AM_MEDIA_TYPE(pmt1);
166 dump_AM_MEDIA_TYPE(pmt2);
167 return (((bWildcards && (IsEqualGUID(&pmt1->majortype, &GUID_NULL) || IsEqualGUID(&pmt2->majortype, &GUID_NULL))) || IsEqualGUID(&pmt1->majortype, &pmt2->majortype)) &&
168 ((bWildcards && (IsEqualGUID(&pmt1->subtype, &GUID_NULL) || IsEqualGUID(&pmt2->subtype, &GUID_NULL))) || IsEqualGUID(&pmt1->subtype, &pmt2->subtype)));
171 /*** Common Base Pin function */
172 HRESULT WINAPI BasePinImpl_GetMediaType(BasePin *iface, int iPosition, AM_MEDIA_TYPE *pmt)
176 return VFW_S_NO_MORE_ITEMS;
179 LONG WINAPI BasePinImpl_GetMediaTypeVersion(BasePin *iface)
184 ULONG WINAPI BasePinImpl_AddRef(IPin * iface)
186 BasePin *This = (BasePin *)iface;
187 ULONG refCount = InterlockedIncrement(&This->refCount);
189 TRACE("(%p)->() AddRef from %d\n", iface, refCount - 1);
194 HRESULT WINAPI BasePinImpl_Disconnect(IPin * iface)
197 BasePin *This = (BasePin *)iface;
201 EnterCriticalSection(This->pCritSec);
203 if (This->pConnectedTo)
205 IPin_Release(This->pConnectedTo);
206 This->pConnectedTo = NULL;
207 FreeMediaType(&This->mtCurrent);
208 ZeroMemory(&This->mtCurrent, sizeof(This->mtCurrent));
214 LeaveCriticalSection(This->pCritSec);
219 HRESULT WINAPI BasePinImpl_ConnectedTo(IPin * iface, IPin ** ppPin)
222 BasePin *This = (BasePin *)iface;
224 TRACE("(%p)\n", ppPin);
226 EnterCriticalSection(This->pCritSec);
228 if (This->pConnectedTo)
230 *ppPin = This->pConnectedTo;
236 hr = VFW_E_NOT_CONNECTED;
240 LeaveCriticalSection(This->pCritSec);
245 HRESULT WINAPI BasePinImpl_ConnectionMediaType(IPin * iface, AM_MEDIA_TYPE * pmt)
248 BasePin *This = (BasePin *)iface;
250 TRACE("(%p/%p)->(%p)\n", This, iface, pmt);
252 EnterCriticalSection(This->pCritSec);
254 if (This->pConnectedTo)
256 CopyMediaType(pmt, &This->mtCurrent);
261 ZeroMemory(pmt, sizeof(*pmt));
262 hr = VFW_E_NOT_CONNECTED;
265 LeaveCriticalSection(This->pCritSec);
270 HRESULT WINAPI BasePinImpl_QueryPinInfo(IPin * iface, PIN_INFO * pInfo)
272 BasePin *This = (BasePin *)iface;
274 TRACE("(%p/%p)->(%p)\n", This, iface, pInfo);
276 Copy_PinInfo(pInfo, &This->pinInfo);
277 IBaseFilter_AddRef(pInfo->pFilter);
282 HRESULT WINAPI BasePinImpl_QueryDirection(IPin * iface, PIN_DIRECTION * pPinDir)
284 BasePin *This = (BasePin *)iface;
286 TRACE("(%p/%p)->(%p)\n", This, iface, pPinDir);
288 *pPinDir = This->pinInfo.dir;
293 HRESULT WINAPI BasePinImpl_QueryId(IPin * iface, LPWSTR * Id)
295 BasePin *This = (BasePin *)iface;
297 TRACE("(%p/%p)->(%p)\n", This, iface, Id);
299 *Id = CoTaskMemAlloc((strlenW(This->pinInfo.achName) + 1) * sizeof(WCHAR));
301 return E_OUTOFMEMORY;
303 strcpyW(*Id, This->pinInfo.achName);
308 HRESULT WINAPI BasePinImpl_QueryAccept(IPin * iface, const AM_MEDIA_TYPE * pmt)
310 TRACE("(%p)->(%p)\n", iface, pmt);
315 HRESULT WINAPI BasePinImpl_EnumMediaTypes(IPin * iface, IEnumMediaTypes ** ppEnum)
317 BasePin *This = (BasePin *)iface;
319 TRACE("(%p/%p)->(%p)\n", This, iface, ppEnum);
321 /* override this method to allow enumeration of your types */
323 return EnumMediaTypes_Construct(This, This->pFuncsTable->pfnGetMediaType, This->pFuncsTable->pfnGetMediaTypeVersion , ppEnum);
326 HRESULT WINAPI BasePinImpl_QueryInternalConnections(IPin * iface, IPin ** apPin, ULONG * cPin)
328 BasePin *This = (BasePin *)iface;
330 TRACE("(%p/%p)->(%p, %p)\n", This, iface, apPin, cPin);
332 return E_NOTIMPL; /* to tell caller that all input pins connected to all output pins */
335 /*** OutputPin implementation ***/
337 HRESULT WINAPI BaseOutputPinImpl_QueryInterface(IPin * iface, REFIID riid, LPVOID * ppv)
339 BaseOutputPin *This = (BaseOutputPin *)iface;
341 TRACE("(%p/%p)->(%s, %p)\n", This, iface, debugstr_guid(riid), ppv);
345 if (IsEqualIID(riid, &IID_IUnknown))
347 else if (IsEqualIID(riid, &IID_IPin))
349 else if (IsEqualIID(riid, &IID_IMediaSeeking))
351 return IBaseFilter_QueryInterface(This->pin.pinInfo.pFilter, &IID_IMediaSeeking, ppv);
356 IUnknown_AddRef((IUnknown *)(*ppv));
360 FIXME("No interface for %s!\n", debugstr_guid(riid));
362 return E_NOINTERFACE;
365 ULONG WINAPI BaseOutputPinImpl_Release(IPin * iface)
367 BaseOutputPin *This = (BaseOutputPin *)iface;
368 ULONG refCount = InterlockedDecrement(&This->pin.refCount);
370 TRACE("(%p)->() Release from %d\n", iface, refCount + 1);
374 FreeMediaType(&This->pin.mtCurrent);
381 HRESULT WINAPI BaseOutputPinImpl_Connect(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
384 BaseOutputPin *This = (BaseOutputPin *)iface;
386 TRACE("(%p/%p)->(%p, %p)\n", This, iface, pReceivePin, pmt);
387 dump_AM_MEDIA_TYPE(pmt);
389 /* If we try to connect to ourself, we will definitely deadlock.
390 * There are other cases where we could deadlock too, but this
391 * catches the obvious case */
392 assert(pReceivePin != iface);
394 EnterCriticalSection(This->pin.pCritSec);
396 /* if we have been a specific type to connect with, then we can either connect
397 * with that or fail. We cannot choose different AM_MEDIA_TYPE */
398 if (pmt && !IsEqualGUID(&pmt->majortype, &GUID_NULL) && !IsEqualGUID(&pmt->subtype, &GUID_NULL))
399 hr = This->pin.pFuncsTable->pfnAttemptConnection((BasePin*)This, pReceivePin, pmt);
402 /* negotiate media type */
404 IEnumMediaTypes * pEnumCandidates;
405 AM_MEDIA_TYPE * pmtCandidate = NULL; /* Candidate media type */
407 if (SUCCEEDED(hr = IPin_EnumMediaTypes(iface, &pEnumCandidates)))
409 hr = VFW_E_NO_ACCEPTABLE_TYPES; /* Assume the worst, but set to S_OK if connected successfully */
411 /* try this filter's media types first */
412 while (S_OK == IEnumMediaTypes_Next(pEnumCandidates, 1, &pmtCandidate, NULL))
414 assert(pmtCandidate);
415 dump_AM_MEDIA_TYPE(pmtCandidate);
416 if (!IsEqualGUID(&FORMAT_None, &pmtCandidate->formattype)
417 && !IsEqualGUID(&GUID_NULL, &pmtCandidate->formattype))
418 assert(pmtCandidate->pbFormat);
419 if (( !pmt || CompareMediaTypes(pmt, pmtCandidate, TRUE) ) &&
420 (This->pin.pFuncsTable->pfnAttemptConnection((BasePin*)This, pReceivePin, pmtCandidate) == S_OK))
423 DeleteMediaType(pmtCandidate);
426 DeleteMediaType(pmtCandidate);
429 IEnumMediaTypes_Release(pEnumCandidates);
432 /* then try receiver filter's media types */
433 if (hr != S_OK && SUCCEEDED(hr = IPin_EnumMediaTypes(pReceivePin, &pEnumCandidates))) /* if we haven't already connected successfully */
435 hr = VFW_E_NO_ACCEPTABLE_TYPES; /* Assume the worst, but set to S_OK if connected successfully */
437 while (S_OK == IEnumMediaTypes_Next(pEnumCandidates, 1, &pmtCandidate, NULL))
439 assert(pmtCandidate);
440 dump_AM_MEDIA_TYPE(pmtCandidate);
441 if (( !pmt || CompareMediaTypes(pmt, pmtCandidate, TRUE) ) &&
442 (This->pin.pFuncsTable->pfnAttemptConnection((BasePin*)This, pReceivePin, pmtCandidate) == S_OK))
445 DeleteMediaType(pmtCandidate);
448 DeleteMediaType(pmtCandidate);
451 IEnumMediaTypes_Release(pEnumCandidates);
453 } /* if negotiate media type */
455 LeaveCriticalSection(This->pin.pCritSec);
457 TRACE(" -- %x\n", hr);
461 HRESULT WINAPI BaseOutputPinImpl_ReceiveConnection(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
463 ERR("Incoming connection on an output pin! (%p, %p)\n", pReceivePin, pmt);
468 HRESULT WINAPI BaseOutputPinImpl_Disconnect(IPin * iface)
471 BaseOutputPin *This = (BaseOutputPin *)iface;
475 EnterCriticalSection(This->pin.pCritSec);
477 if (This->pMemInputPin)
479 IMemInputPin_Release(This->pMemInputPin);
480 This->pMemInputPin = NULL;
482 if (This->pin.pConnectedTo)
484 IPin_Release(This->pin.pConnectedTo);
485 This->pin.pConnectedTo = NULL;
486 FreeMediaType(&This->pin.mtCurrent);
487 ZeroMemory(&This->pin.mtCurrent, sizeof(This->pin.mtCurrent));
493 LeaveCriticalSection(This->pin.pCritSec);
498 HRESULT WINAPI BaseOutputPinImpl_EndOfStream(IPin * iface)
502 /* not supposed to do anything in an output pin */
507 HRESULT WINAPI BaseOutputPinImpl_BeginFlush(IPin * iface)
509 TRACE("(%p)->()\n", iface);
511 /* not supposed to do anything in an output pin */
516 HRESULT WINAPI BaseOutputPinImpl_EndFlush(IPin * iface)
518 TRACE("(%p)->()\n", iface);
520 /* not supposed to do anything in an output pin */
525 HRESULT WINAPI BaseOutputPinImpl_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate)
527 TRACE("(%p)->(%x%08x, %x%08x, %e)\n", iface, (ULONG)(tStart >> 32), (ULONG)tStart, (ULONG)(tStop >> 32), (ULONG)tStop, dRate);
529 /* not supposed to do anything in an output pin */
534 static const IPinVtbl OutputPin_Vtbl =
536 BaseOutputPinImpl_QueryInterface,
538 BaseOutputPinImpl_Release,
539 BaseOutputPinImpl_Connect,
540 BaseOutputPinImpl_ReceiveConnection,
541 BaseOutputPinImpl_Disconnect,
542 BasePinImpl_ConnectedTo,
543 BasePinImpl_ConnectionMediaType,
544 BasePinImpl_QueryPinInfo,
545 BasePinImpl_QueryDirection,
547 BasePinImpl_QueryAccept,
548 BasePinImpl_EnumMediaTypes,
549 BasePinImpl_QueryInternalConnections,
550 BaseOutputPinImpl_EndOfStream,
551 BaseOutputPinImpl_BeginFlush,
552 BaseOutputPinImpl_EndFlush,
553 BaseOutputPinImpl_NewSegment
556 HRESULT WINAPI BaseOutputPinImpl_GetDeliveryBuffer(BaseOutputPin *This, IMediaSample ** ppSample, REFERENCE_TIME * tStart, REFERENCE_TIME * tStop, DWORD dwFlags)
560 TRACE("(%p, %p, %p, %x)\n", ppSample, tStart, tStop, dwFlags);
562 EnterCriticalSection(This->pin.pCritSec);
564 if (!This->pin.pConnectedTo)
565 hr = VFW_E_NOT_CONNECTED;
568 IMemAllocator * pAlloc = NULL;
570 hr = IMemInputPin_GetAllocator(This->pMemInputPin, &pAlloc);
573 hr = IMemAllocator_GetBuffer(pAlloc, ppSample, tStart, tStop, dwFlags);
576 hr = IMediaSample_SetTime(*ppSample, tStart, tStop);
579 IMemAllocator_Release(pAlloc);
582 LeaveCriticalSection(This->pin.pCritSec);
587 /* replaces OutputPin_SendSample */
588 HRESULT WINAPI BaseOutputPinImpl_Deliver(BaseOutputPin *This, IMediaSample * pSample)
591 IMemInputPin * pMemConnected = NULL;
594 EnterCriticalSection(This->pin.pCritSec);
596 if (!This->pin.pConnectedTo || !This->pMemInputPin)
597 hr = VFW_E_NOT_CONNECTED;
600 /* we don't have the lock held when using This->pMemInputPin,
601 * so we need to AddRef it to stop it being deleted while we are
602 * using it. Same with its filter. */
603 pMemConnected = This->pMemInputPin;
604 IMemInputPin_AddRef(pMemConnected);
605 hr = IPin_QueryPinInfo(This->pin.pConnectedTo, &pinInfo);
608 LeaveCriticalSection(This->pin.pCritSec);
612 /* NOTE: if we are in a critical section when Receive is called
613 * then it causes some problems (most notably with the native Video
614 * Renderer) if we are re-entered for whatever reason */
615 hr = IMemInputPin_Receive(pMemConnected, pSample);
617 /* If the filter's destroyed, tell upstream to stop sending data */
618 if(IBaseFilter_Release(pinInfo.pFilter) == 0 && SUCCEEDED(hr))
622 IMemInputPin_Release(pMemConnected);
627 /* replaces OutputPin_CommitAllocator */
628 HRESULT WINAPI BaseOutputPinImpl_Active(BaseOutputPin *This)
632 TRACE("(%p)->()\n", This);
634 EnterCriticalSection(This->pin.pCritSec);
636 if (!This->pin.pConnectedTo || !This->pMemInputPin)
637 hr = VFW_E_NOT_CONNECTED;
640 IMemAllocator * pAlloc = NULL;
642 hr = IMemInputPin_GetAllocator(This->pMemInputPin, &pAlloc);
645 hr = IMemAllocator_Commit(pAlloc);
648 IMemAllocator_Release(pAlloc);
651 LeaveCriticalSection(This->pin.pCritSec);
653 TRACE("--> %08x\n", hr);
657 /* replaces OutputPin_DecommitAllocator */
658 HRESULT WINAPI BaseOutputPinImpl_Inactive(BaseOutputPin *This)
662 TRACE("(%p)->()\n", This);
664 EnterCriticalSection(This->pin.pCritSec);
666 if (!This->pin.pConnectedTo || !This->pMemInputPin)
667 hr = VFW_E_NOT_CONNECTED;
670 IMemAllocator * pAlloc = NULL;
672 hr = IMemInputPin_GetAllocator(This->pMemInputPin, &pAlloc);
675 hr = IMemAllocator_Decommit(pAlloc);
678 IMemAllocator_Release(pAlloc);
681 LeaveCriticalSection(This->pin.pCritSec);
683 TRACE("--> %08x\n", hr);
687 /* replaces OutputPin_DeliverDisconnect */
688 HRESULT WINAPI BaseOutputPinImpl_BreakConnect(BaseOutputPin *This)
692 TRACE("(%p)->()\n", This);
694 EnterCriticalSection(This->pin.pCritSec);
696 if (!This->pin.pConnectedTo || !This->pMemInputPin)
697 hr = VFW_E_NOT_CONNECTED;
700 IMemAllocator * pAlloc = NULL;
702 hr = IMemInputPin_GetAllocator(This->pMemInputPin, &pAlloc);
705 hr = IMemAllocator_Decommit(pAlloc);
708 IMemAllocator_Release(pAlloc);
711 hr = IPin_Disconnect(This->pin.pConnectedTo);
713 IPin_Disconnect((IPin *)This);
715 LeaveCriticalSection(This->pin.pCritSec);
720 HRESULT WINAPI BaseOutputPinImpl_InitAllocator(BaseOutputPin *This, IMemAllocator **pMemAlloc)
722 return CoCreateInstance(&CLSID_MemoryAllocator, NULL, CLSCTX_INPROC_SERVER, &IID_IMemAllocator, (LPVOID*)pMemAlloc);
725 HRESULT WINAPI BaseOutputPinImpl_DecideAllocator(BaseOutputPin *This, IMemInputPin *pPin, IMemAllocator **pAlloc)
729 hr = IMemInputPin_GetAllocator(pPin, pAlloc);
731 if (hr == VFW_E_NO_ALLOCATOR)
732 /* Input pin provides no allocator, use standard memory allocator */
733 hr = BaseOutputPinImpl_InitAllocator(This, pAlloc);
737 ALLOCATOR_PROPERTIES rProps;
738 ZeroMemory(&rProps, sizeof(ALLOCATOR_PROPERTIES));
740 IMemInputPin_GetAllocatorRequirements(pPin, &rProps);
741 hr = This->pFuncsTable->pfnDecideBufferSize(This, *pAlloc, &rProps);
745 hr = IMemInputPin_NotifyAllocator(pPin, *pAlloc, FALSE);
750 /*** The Construct functions ***/
752 /* Function called as a helper to IPin_Connect */
753 /* specific AM_MEDIA_TYPE - it cannot be NULL */
754 HRESULT WINAPI BaseOutputPinImpl_AttemptConnection(BasePin* iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
756 BaseOutputPin *This = (BaseOutputPin *)iface;
758 IMemAllocator * pMemAlloc = NULL;
760 TRACE("(%p, %p)\n", pReceivePin, pmt);
761 dump_AM_MEDIA_TYPE(pmt);
763 /* FIXME: call queryacceptproc */
765 This->pin.pConnectedTo = pReceivePin;
766 IPin_AddRef(pReceivePin);
767 CopyMediaType(&This->pin.mtCurrent, pmt);
769 hr = IPin_ReceiveConnection(pReceivePin, (IPin*)iface, pmt);
771 /* get the IMemInputPin interface we will use to deliver samples to the
775 This->pMemInputPin = NULL;
776 hr = IPin_QueryInterface(pReceivePin, &IID_IMemInputPin, (LPVOID)&This->pMemInputPin);
780 hr = This->pFuncsTable->pfnDecideAllocator(This, This->pMemInputPin, &pMemAlloc);
782 IMemAllocator_Release(pMemAlloc);
785 /* break connection if we couldn't get the allocator */
788 if (This->pMemInputPin)
789 IMemInputPin_Release(This->pMemInputPin);
790 This->pMemInputPin = NULL;
792 IPin_Disconnect(pReceivePin);
798 IPin_Release(This->pin.pConnectedTo);
799 This->pin.pConnectedTo = NULL;
800 FreeMediaType(&This->pin.mtCurrent);
803 TRACE(" -- %x\n", hr);
807 static HRESULT OutputPin_Init(const IPinVtbl *OutputPin_Vtbl, const PIN_INFO * pPinInfo, const BasePinFuncTable* pBaseFuncsTable, const BaseOutputPinFuncTable* pBaseOutputFuncsTable, LPCRITICAL_SECTION pCritSec, BaseOutputPin * pPinImpl)
811 /* Common attributes */
812 pPinImpl->pin.lpVtbl = OutputPin_Vtbl;
813 pPinImpl->pin.refCount = 1;
814 pPinImpl->pin.pConnectedTo = NULL;
815 pPinImpl->pin.pCritSec = pCritSec;
816 Copy_PinInfo(&pPinImpl->pin.pinInfo, pPinInfo);
817 pPinImpl->pin.pFuncsTable = pBaseFuncsTable;
818 ZeroMemory(&pPinImpl->pin.mtCurrent, sizeof(AM_MEDIA_TYPE));
820 /* Output pin attributes */
821 pPinImpl->pMemInputPin = NULL;
822 pPinImpl->pFuncsTable = pBaseOutputFuncsTable;
827 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)
829 BaseOutputPin * pPinImpl;
833 if (pPinInfo->dir != PINDIR_OUTPUT)
835 ERR("Pin direction(%x) != PINDIR_OUTPUT\n", pPinInfo->dir);
839 assert(outputpin_size >= sizeof(BaseOutputPin));
840 assert(pBaseFuncsTable->pfnAttemptConnection);
842 pPinImpl = CoTaskMemAlloc(outputpin_size);
845 return E_OUTOFMEMORY;
847 if (SUCCEEDED(OutputPin_Init(OutputPin_Vtbl, pPinInfo, pBaseFuncsTable, pBaseOutputFuncsTable, pCritSec, pPinImpl)))
849 *ppPin = (IPin *)(&pPinImpl->pin.lpVtbl);
853 CoTaskMemFree(pPinImpl);
857 /*** Input Pin implementation ***/
859 HRESULT WINAPI BaseInputPinImpl_QueryInterface(IPin * iface, REFIID riid, LPVOID * ppv)
861 BaseInputPin *This = (BaseInputPin *)iface;
863 TRACE("(%p)->(%s, %p)\n", iface, debugstr_guid(riid), ppv);
867 if (IsEqualIID(riid, &IID_IUnknown))
869 else if (IsEqualIID(riid, &IID_IPin))
871 else if (IsEqualIID(riid, &IID_IMemInputPin))
872 *ppv = &This->lpVtblMemInput;
873 else if (IsEqualIID(riid, &IID_IMediaSeeking))
875 return IBaseFilter_QueryInterface(This->pin.pinInfo.pFilter, &IID_IMediaSeeking, ppv);
880 IUnknown_AddRef((IUnknown *)(*ppv));
884 FIXME("No interface for %s!\n", debugstr_guid(riid));
886 return E_NOINTERFACE;
889 ULONG WINAPI BaseInputPinImpl_Release(IPin * iface)
891 BaseInputPin *This = (BaseInputPin *)iface;
892 ULONG refCount = InterlockedDecrement(&This->pin.refCount);
894 TRACE("(%p)->() Release from %d\n", iface, refCount + 1);
898 FreeMediaType(&This->pin.mtCurrent);
899 if (This->pAllocator)
900 IMemAllocator_Release(This->pAllocator);
901 This->pAllocator = NULL;
902 This->pin.lpVtbl = NULL;
910 HRESULT WINAPI BaseInputPinImpl_Connect(IPin * iface, IPin * pConnector, const AM_MEDIA_TYPE * pmt)
912 ERR("Outgoing connection on an input pin! (%p, %p)\n", pConnector, pmt);
918 HRESULT WINAPI BaseInputPinImpl_ReceiveConnection(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
920 BaseInputPin *This = (BaseInputPin *)iface;
921 PIN_DIRECTION pindirReceive;
924 TRACE("(%p, %p)\n", pReceivePin, pmt);
925 dump_AM_MEDIA_TYPE(pmt);
927 EnterCriticalSection(This->pin.pCritSec);
929 if (This->pin.pConnectedTo)
930 hr = VFW_E_ALREADY_CONNECTED;
932 if (SUCCEEDED(hr) && This->pin.pFuncsTable->pfnCheckMediaType((BasePin*)This, pmt) != S_OK)
933 hr = VFW_E_TYPE_NOT_ACCEPTED; /* FIXME: shouldn't we just map common errors onto
934 * VFW_E_TYPE_NOT_ACCEPTED and pass the value on otherwise? */
938 IPin_QueryDirection(pReceivePin, &pindirReceive);
940 if (pindirReceive != PINDIR_OUTPUT)
942 ERR("Can't connect from non-output pin\n");
943 hr = VFW_E_INVALID_DIRECTION;
949 CopyMediaType(&This->pin.mtCurrent, pmt);
950 This->pin.pConnectedTo = pReceivePin;
951 IPin_AddRef(pReceivePin);
954 LeaveCriticalSection(This->pin.pCritSec);
959 static HRESULT deliver_endofstream(IPin* pin, LPVOID unused)
961 return IPin_EndOfStream( pin );
964 HRESULT WINAPI BaseInputPinImpl_QueryAccept(IPin * iface, const AM_MEDIA_TYPE * pmt)
966 BaseInputPin *This = (BaseInputPin *)iface;
968 TRACE("(%p/%p)->(%p)\n", This, iface, pmt);
970 return (This->pin.pFuncsTable->pfnCheckMediaType((BasePin*)This, pmt) == S_OK ? S_OK : S_FALSE);
973 HRESULT WINAPI BaseInputPinImpl_EndOfStream(IPin * iface)
976 BaseInputPin *This = (BaseInputPin *)iface;
978 TRACE("(%p)\n", This);
980 EnterCriticalSection(This->pin.pCritSec);
984 This->end_of_stream = 1;
985 LeaveCriticalSection(This->pin.pCritSec);
988 hr = SendFurther( iface, deliver_endofstream, NULL, NULL );
992 static HRESULT deliver_beginflush(IPin* pin, LPVOID unused)
994 return IPin_BeginFlush( pin );
997 HRESULT WINAPI BaseInputPinImpl_BeginFlush(IPin * iface)
999 BaseInputPin *This = (BaseInputPin *)iface;
1001 TRACE("() semi-stub\n");
1003 EnterCriticalSection(This->pin.pCritSec);
1006 hr = SendFurther( iface, deliver_beginflush, NULL, NULL );
1007 LeaveCriticalSection(This->pin.pCritSec);
1012 static HRESULT deliver_endflush(IPin* pin, LPVOID unused)
1014 return IPin_EndFlush( pin );
1017 HRESULT WINAPI BaseInputPinImpl_EndFlush(IPin * iface)
1019 BaseInputPin *This = (BaseInputPin *)iface;
1021 TRACE("(%p)\n", This);
1023 EnterCriticalSection(This->pin.pCritSec);
1024 This->flushing = This->end_of_stream = 0;
1026 hr = SendFurther( iface, deliver_endflush, NULL, NULL );
1027 LeaveCriticalSection(This->pin.pCritSec);
1032 typedef struct newsegmentargs
1034 REFERENCE_TIME tStart, tStop;
1038 static HRESULT deliver_newsegment(IPin *pin, LPVOID data)
1040 newsegmentargs *args = data;
1041 return IPin_NewSegment(pin, args->tStart, args->tStop, args->rate);
1044 HRESULT WINAPI BaseInputPinImpl_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate)
1046 BaseInputPin *This = (BaseInputPin *)iface;
1047 newsegmentargs args;
1049 TRACE("(%x%08x, %x%08x, %e)\n", (ULONG)(tStart >> 32), (ULONG)tStart, (ULONG)(tStop >> 32), (ULONG)tStop, dRate);
1051 args.tStart = This->tStart = tStart;
1052 args.tStop = This->tStop = tStop;
1053 args.rate = This->dRate = dRate;
1055 return SendFurther( iface, deliver_newsegment, &args, NULL );
1058 static const IPinVtbl InputPin_Vtbl =
1060 BaseInputPinImpl_QueryInterface,
1062 BaseInputPinImpl_Release,
1063 BaseInputPinImpl_Connect,
1064 BaseInputPinImpl_ReceiveConnection,
1065 BasePinImpl_Disconnect,
1066 BasePinImpl_ConnectedTo,
1067 BasePinImpl_ConnectionMediaType,
1068 BasePinImpl_QueryPinInfo,
1069 BasePinImpl_QueryDirection,
1070 BasePinImpl_QueryId,
1071 BaseInputPinImpl_QueryAccept,
1072 BasePinImpl_EnumMediaTypes,
1073 BasePinImpl_QueryInternalConnections,
1074 BaseInputPinImpl_EndOfStream,
1075 BaseInputPinImpl_BeginFlush,
1076 BaseInputPinImpl_EndFlush,
1077 BaseInputPinImpl_NewSegment
1080 /*** IMemInputPin implementation ***/
1082 static inline BaseInputPin *impl_from_IMemInputPin( IMemInputPin *iface )
1084 return (BaseInputPin *)((char*)iface - FIELD_OFFSET(BaseInputPin, lpVtblMemInput));
1087 static HRESULT WINAPI MemInputPin_QueryInterface(IMemInputPin * iface, REFIID riid, LPVOID * ppv)
1089 BaseInputPin *This = impl_from_IMemInputPin(iface);
1091 return IPin_QueryInterface((IPin *)&This->pin, riid, ppv);
1094 static ULONG WINAPI MemInputPin_AddRef(IMemInputPin * iface)
1096 BaseInputPin *This = impl_from_IMemInputPin(iface);
1098 return IPin_AddRef((IPin *)&This->pin);
1101 static ULONG WINAPI MemInputPin_Release(IMemInputPin * iface)
1103 BaseInputPin *This = impl_from_IMemInputPin(iface);
1105 return IPin_Release((IPin *)&This->pin);
1108 static HRESULT WINAPI MemInputPin_GetAllocator(IMemInputPin * iface, IMemAllocator ** ppAllocator)
1110 BaseInputPin *This = impl_from_IMemInputPin(iface);
1112 TRACE("(%p/%p)->(%p)\n", This, iface, ppAllocator);
1114 *ppAllocator = This->pAllocator;
1116 IMemAllocator_AddRef(*ppAllocator);
1118 return *ppAllocator ? S_OK : VFW_E_NO_ALLOCATOR;
1121 static HRESULT WINAPI MemInputPin_NotifyAllocator(IMemInputPin * iface, IMemAllocator * pAllocator, BOOL bReadOnly)
1123 BaseInputPin *This = impl_from_IMemInputPin(iface);
1125 TRACE("(%p/%p)->(%p, %d)\n", This, iface, pAllocator, bReadOnly);
1128 FIXME("Read only flag not handled yet!\n");
1130 /* FIXME: Should we release the allocator on disconnection? */
1133 WARN("Null allocator\n");
1137 if (This->preferred_allocator && pAllocator != This->preferred_allocator)
1140 if (This->pAllocator)
1141 IMemAllocator_Release(This->pAllocator);
1142 This->pAllocator = pAllocator;
1143 if (This->pAllocator)
1144 IMemAllocator_AddRef(This->pAllocator);
1149 static HRESULT WINAPI MemInputPin_GetAllocatorRequirements(IMemInputPin * iface, ALLOCATOR_PROPERTIES * pProps)
1151 BaseInputPin *This = impl_from_IMemInputPin(iface);
1153 TRACE("(%p/%p)->(%p)\n", This, iface, pProps);
1155 /* override this method if you have any specific requirements */
1160 static HRESULT WINAPI MemInputPin_Receive(IMemInputPin * iface, IMediaSample * pSample)
1162 BaseInputPin *This = impl_from_IMemInputPin(iface);
1163 HRESULT hr = S_FALSE;
1165 /* this trace commented out for performance reasons */
1166 /*TRACE("(%p/%p)->(%p)\n", This, iface, pSample);*/
1167 if (This->pFuncsTable->pfnReceive)
1168 hr = This->pFuncsTable->pfnReceive(This, pSample);
1172 static HRESULT WINAPI MemInputPin_ReceiveMultiple(IMemInputPin * iface, IMediaSample ** pSamples, LONG nSamples, LONG *nSamplesProcessed)
1175 BaseInputPin *This = impl_from_IMemInputPin(iface);
1177 TRACE("(%p/%p)->(%p, %d, %p)\n", This, iface, pSamples, nSamples, nSamplesProcessed);
1179 for (*nSamplesProcessed = 0; *nSamplesProcessed < nSamples; (*nSamplesProcessed)++)
1181 hr = IMemInputPin_Receive(iface, pSamples[*nSamplesProcessed]);
1189 static HRESULT WINAPI MemInputPin_ReceiveCanBlock(IMemInputPin * iface)
1191 BaseInputPin *This = impl_from_IMemInputPin(iface);
1193 TRACE("(%p/%p)->()\n", This, iface);
1198 static const IMemInputPinVtbl MemInputPin_Vtbl =
1200 MemInputPin_QueryInterface,
1202 MemInputPin_Release,
1203 MemInputPin_GetAllocator,
1204 MemInputPin_NotifyAllocator,
1205 MemInputPin_GetAllocatorRequirements,
1206 MemInputPin_Receive,
1207 MemInputPin_ReceiveMultiple,
1208 MemInputPin_ReceiveCanBlock
1211 static HRESULT InputPin_Init(const IPinVtbl *InputPin_Vtbl, const PIN_INFO * pPinInfo,
1212 const BasePinFuncTable* pBaseFuncsTable, const BaseInputPinFuncTable* pBaseInputFuncsTable,
1213 LPCRITICAL_SECTION pCritSec, IMemAllocator *allocator, BaseInputPin * pPinImpl)
1217 /* Common attributes */
1218 pPinImpl->pin.refCount = 1;
1219 pPinImpl->pin.pConnectedTo = NULL;
1220 pPinImpl->pin.pCritSec = pCritSec;
1221 Copy_PinInfo(&pPinImpl->pin.pinInfo, pPinInfo);
1222 ZeroMemory(&pPinImpl->pin.mtCurrent, sizeof(AM_MEDIA_TYPE));
1223 pPinImpl->pin.pFuncsTable = pBaseFuncsTable;
1225 /* Input pin attributes */
1226 pPinImpl->pFuncsTable = pBaseInputFuncsTable;
1227 pPinImpl->pAllocator = pPinImpl->preferred_allocator = allocator;
1228 if (pPinImpl->preferred_allocator)
1229 IMemAllocator_AddRef(pPinImpl->preferred_allocator);
1230 pPinImpl->tStart = 0;
1231 pPinImpl->tStop = 0;
1232 pPinImpl->dRate = 1.0;
1233 pPinImpl->pin.lpVtbl = InputPin_Vtbl;
1234 pPinImpl->lpVtblMemInput = &MemInputPin_Vtbl;
1235 pPinImpl->flushing = pPinImpl->end_of_stream = 0;
1240 HRESULT BaseInputPin_Construct(const IPinVtbl *InputPin_Vtbl, const PIN_INFO * pPinInfo,
1241 const BasePinFuncTable* pBaseFuncsTable, const BaseInputPinFuncTable* pBaseInputFuncsTable,
1242 LPCRITICAL_SECTION pCritSec, IMemAllocator *allocator, IPin ** ppPin)
1244 BaseInputPin * pPinImpl;
1248 assert(pBaseFuncsTable->pfnCheckMediaType);
1250 if (pPinInfo->dir != PINDIR_INPUT)
1252 ERR("Pin direction(%x) != PINDIR_INPUT\n", pPinInfo->dir);
1253 return E_INVALIDARG;
1256 pPinImpl = CoTaskMemAlloc(sizeof(*pPinImpl));
1259 return E_OUTOFMEMORY;
1261 if (SUCCEEDED(InputPin_Init(InputPin_Vtbl, pPinInfo, pBaseFuncsTable, pBaseInputFuncsTable, pCritSec, allocator, pPinImpl)))
1263 *ppPin = (IPin *)pPinImpl;
1267 CoTaskMemFree(pPinImpl);