2 * Generic Implementation of IPin Interface
4 * Copyright 2003 Robert Shearman
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
21 #include "quartz_private.h"
24 #include "wine/debug.h"
25 #include "wine/unicode.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
32 #define ALIGNDOWN(value,boundary) ((value)/(boundary)*(boundary))
33 #define ALIGNUP(value,boundary) (ALIGNDOWN((value)+(boundary)-1, (boundary)))
35 typedef HRESULT (*SendPinFunc
)( IPin
*to
, LPVOID arg
);
37 /** Helper function, there are a lot of places where the error code is inherited
38 * The following rules apply:
40 * Return the first received error code (E_NOTIMPL is ignored)
41 * If no errors occur: return the first received non-error-code that isn't S_OK
43 static HRESULT
updatehres( HRESULT original
, HRESULT
new )
45 if (FAILED( original
) || new == E_NOTIMPL
)
48 if (FAILED( new ) || original
== S_OK
)
54 /** Sends a message from a pin further to other, similar pins
55 * fnMiddle is called on each pin found further on the stream.
56 * fnEnd (can be NULL) is called when the message can't be sent any further (this is a renderer or source)
58 * If the pin given is an input pin, the message will be sent downstream to other input pins
59 * If the pin given is an output pin, the message will be sent upstream to other output pins
61 static HRESULT
SendFurther( IPin
*from
, SendPinFunc fnMiddle
, LPVOID arg
, SendPinFunc fnEnd
)
66 HRESULT hr_return
= S_OK
;
67 IEnumPins
*enumpins
= NULL
;
69 PIN_DIRECTION from_dir
;
71 IPin_QueryDirection( from
, &from_dir
);
73 hr
= IPin_QueryInternalConnections( from
, NULL
, &amount
);
74 if (hr
!= E_NOTIMPL
&& amount
)
75 FIXME("Use QueryInternalConnections!\n");
77 pin_info
.pFilter
= NULL
;
78 hr
= IPin_QueryPinInfo( from
, &pin_info
);
82 hr
= IBaseFilter_EnumPins( pin_info
.pFilter
, &enumpins
);
86 hr
= IEnumPins_Reset( enumpins
);
89 hr
= IEnumPins_Next( enumpins
, 1, &pin
, NULL
);
90 if (hr
== VFW_E_ENUM_OUT_OF_SYNC
)
92 hr
= IEnumPins_Reset( enumpins
);
99 IPin_QueryDirection( pin
, &dir
);
102 IPin
*connected
= NULL
;
105 IPin_ConnectedTo( pin
, &connected
);
110 hr_local
= fnMiddle( connected
, arg
);
111 hr_return
= updatehres( hr_return
, hr_local
);
112 IPin_Release(connected
);
129 hr_local
= fnEnd( from
, arg
);
130 hr_return
= updatehres( hr_return
, hr_local
);
135 IEnumPins_Release( enumpins
);
136 if (pin_info
.pFilter
)
137 IBaseFilter_Release( pin_info
.pFilter
);
142 static void Copy_PinInfo(PIN_INFO
* pDest
, const PIN_INFO
* pSrc
)
144 /* Tempting to just do a memcpy, but the name field is
145 128 characters long! We will probably never exceed 10
146 most of the time, so we are better off copying
147 each field manually */
148 strcpyW(pDest
->achName
, pSrc
->achName
);
149 pDest
->dir
= pSrc
->dir
;
150 pDest
->pFilter
= pSrc
->pFilter
;
153 static HRESULT
deliver_endofstream(IPin
* pin
, LPVOID unused
)
155 return IPin_EndOfStream( pin
);
158 static HRESULT
deliver_beginflush(IPin
* pin
, LPVOID unused
)
160 return IPin_BeginFlush( pin
);
163 static HRESULT
deliver_endflush(IPin
* pin
, LPVOID unused
)
165 return IPin_EndFlush( pin
);
168 typedef struct newsegmentargs
170 REFERENCE_TIME tStart
, tStop
;
174 static HRESULT
deliver_newsegment(IPin
*pin
, LPVOID data
)
176 newsegmentargs
*args
= data
;
177 return IPin_NewSegment(pin
, args
->tStart
, args
->tStop
, args
->rate
);
180 /*** PullPin implementation ***/
182 static HRESULT
PullPin_Init(const IPinVtbl
*PullPin_Vtbl
, const PIN_INFO
* pPinInfo
, SAMPLEPROC_PULL pSampleProc
, LPVOID pUserData
,
183 QUERYACCEPTPROC pQueryAccept
, CLEANUPPROC pCleanUp
, REQUESTPROC pCustomRequest
, STOPPROCESSPROC pDone
, LPCRITICAL_SECTION pCritSec
, PullPin
* pPinImpl
)
185 /* Common attributes */
186 pPinImpl
->pin
.IPin_iface
.lpVtbl
= PullPin_Vtbl
;
187 pPinImpl
->pin
.refCount
= 1;
188 pPinImpl
->pin
.pConnectedTo
= NULL
;
189 pPinImpl
->pin
.pCritSec
= pCritSec
;
190 Copy_PinInfo(&pPinImpl
->pin
.pinInfo
, pPinInfo
);
191 ZeroMemory(&pPinImpl
->pin
.mtCurrent
, sizeof(AM_MEDIA_TYPE
));
193 /* Input pin attributes */
194 pPinImpl
->pUserData
= pUserData
;
195 pPinImpl
->fnQueryAccept
= pQueryAccept
;
196 pPinImpl
->fnSampleProc
= pSampleProc
;
197 pPinImpl
->fnCleanProc
= pCleanUp
;
198 pPinImpl
->fnDone
= pDone
;
199 pPinImpl
->fnPreConnect
= NULL
;
200 pPinImpl
->pAlloc
= NULL
;
201 pPinImpl
->prefAlloc
= NULL
;
202 pPinImpl
->pReader
= NULL
;
203 pPinImpl
->hThread
= NULL
;
204 pPinImpl
->hEventStateChanged
= CreateEventW(NULL
, TRUE
, TRUE
, NULL
);
205 pPinImpl
->thread_sleepy
= CreateEventW(NULL
, FALSE
, FALSE
, NULL
);
207 pPinImpl
->rtStart
= 0;
208 pPinImpl
->rtCurrent
= 0;
209 pPinImpl
->rtStop
= ((LONGLONG
)0x7fffffff << 32) | 0xffffffff;
210 pPinImpl
->dRate
= 1.0;
211 pPinImpl
->state
= Req_Die
;
212 pPinImpl
->fnCustomRequest
= pCustomRequest
;
213 pPinImpl
->stop_playback
= TRUE
;
215 InitializeCriticalSection(&pPinImpl
->thread_lock
);
216 pPinImpl
->thread_lock
.DebugInfo
->Spare
[0] = (DWORD_PTR
)( __FILE__
": PullPin.thread_lock");
221 HRESULT
PullPin_Construct(const IPinVtbl
*PullPin_Vtbl
, const PIN_INFO
* pPinInfo
, SAMPLEPROC_PULL pSampleProc
, LPVOID pUserData
, QUERYACCEPTPROC pQueryAccept
, CLEANUPPROC pCleanUp
, REQUESTPROC pCustomRequest
, STOPPROCESSPROC pDone
, LPCRITICAL_SECTION pCritSec
, IPin
** ppPin
)
227 if (pPinInfo
->dir
!= PINDIR_INPUT
)
229 ERR("Pin direction(%x) != PINDIR_INPUT\n", pPinInfo
->dir
);
233 pPinImpl
= CoTaskMemAlloc(sizeof(*pPinImpl
));
236 return E_OUTOFMEMORY
;
238 if (SUCCEEDED(PullPin_Init(PullPin_Vtbl
, pPinInfo
, pSampleProc
, pUserData
, pQueryAccept
, pCleanUp
, pCustomRequest
, pDone
, pCritSec
, pPinImpl
)))
240 *ppPin
= &pPinImpl
->pin
.IPin_iface
;
244 CoTaskMemFree(pPinImpl
);
248 static HRESULT
PullPin_InitProcessing(PullPin
* This
);
250 HRESULT WINAPI
PullPin_ReceiveConnection(IPin
* iface
, IPin
* pReceivePin
, const AM_MEDIA_TYPE
* pmt
)
252 PIN_DIRECTION pindirReceive
;
254 PullPin
*This
= impl_PullPin_from_IPin(iface
);
256 TRACE("(%p/%p)->(%p, %p)\n", This
, iface
, pReceivePin
, pmt
);
257 dump_AM_MEDIA_TYPE(pmt
);
259 EnterCriticalSection(This
->pin
.pCritSec
);
260 if (!This
->pin
.pConnectedTo
)
262 ALLOCATOR_PROPERTIES props
;
265 props
.cbBuffer
= 64 * 1024; /* 64 KB */
269 if (This
->fnQueryAccept(This
->pUserData
, pmt
) != S_OK
)
270 hr
= VFW_E_TYPE_NOT_ACCEPTED
; /* FIXME: shouldn't we just map common errors onto
271 * VFW_E_TYPE_NOT_ACCEPTED and pass the value on otherwise? */
275 IPin_QueryDirection(pReceivePin
, &pindirReceive
);
277 if (pindirReceive
!= PINDIR_OUTPUT
)
279 ERR("Can't connect from non-output pin\n");
280 hr
= VFW_E_INVALID_DIRECTION
;
284 This
->pReader
= NULL
;
286 This
->prefAlloc
= NULL
;
289 hr
= IPin_QueryInterface(pReceivePin
, &IID_IAsyncReader
, (LPVOID
*)&This
->pReader
);
292 if (SUCCEEDED(hr
) && This
->fnPreConnect
)
294 hr
= This
->fnPreConnect(iface
, pReceivePin
, &props
);
298 * Some custom filters (such as the one used by Fallout 3
299 * and Fallout: New Vegas) expect to be passed a non-NULL
300 * preferred allocator.
304 hr
= StdMemAllocator_create(NULL
, (LPVOID
*) &This
->prefAlloc
);
309 hr
= IAsyncReader_RequestAllocator(This
->pReader
, This
->prefAlloc
, &props
, &This
->pAlloc
);
314 CopyMediaType(&This
->pin
.mtCurrent
, pmt
);
315 This
->pin
.pConnectedTo
= pReceivePin
;
316 IPin_AddRef(pReceivePin
);
317 hr
= IMemAllocator_Commit(This
->pAlloc
);
321 hr
= PullPin_InitProcessing(This
);
326 IAsyncReader_Release(This
->pReader
);
327 This
->pReader
= NULL
;
329 IMemAllocator_Release(This
->prefAlloc
);
330 This
->prefAlloc
= NULL
;
332 IMemAllocator_Release(This
->pAlloc
);
337 hr
= VFW_E_ALREADY_CONNECTED
;
338 LeaveCriticalSection(This
->pin
.pCritSec
);
342 HRESULT WINAPI
PullPin_QueryInterface(IPin
* iface
, REFIID riid
, LPVOID
* ppv
)
344 PullPin
*This
= impl_PullPin_from_IPin(iface
);
346 TRACE("(%p/%p)->(%s, %p)\n", This
, iface
, qzdebugstr_guid(riid
), ppv
);
350 if (IsEqualIID(riid
, &IID_IUnknown
))
352 else if (IsEqualIID(riid
, &IID_IPin
))
354 else if (IsEqualIID(riid
, &IID_IMediaSeeking
) ||
355 IsEqualIID(riid
, &IID_IQualityControl
))
357 return IBaseFilter_QueryInterface(This
->pin
.pinInfo
.pFilter
, riid
, ppv
);
362 IUnknown_AddRef((IUnknown
*)(*ppv
));
366 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
368 return E_NOINTERFACE
;
371 ULONG WINAPI
PullPin_Release(IPin
*iface
)
373 PullPin
*This
= impl_PullPin_from_IPin(iface
);
374 ULONG refCount
= InterlockedDecrement(&This
->pin
.refCount
);
376 TRACE("(%p)->() Release from %d\n", This
, refCount
+ 1);
380 WaitForSingleObject(This
->hEventStateChanged
, INFINITE
);
381 assert(!This
->hThread
);
384 IMemAllocator_Release(This
->prefAlloc
);
386 IMemAllocator_Release(This
->pAlloc
);
388 IAsyncReader_Release(This
->pReader
);
389 CloseHandle(This
->thread_sleepy
);
390 CloseHandle(This
->hEventStateChanged
);
391 This
->thread_lock
.DebugInfo
->Spare
[0] = 0;
392 DeleteCriticalSection(&This
->thread_lock
);
399 static void PullPin_Flush(PullPin
*This
)
401 IMediaSample
*pSample
;
402 TRACE("Flushing!\n");
406 /* Do not allow state to change while flushing */
407 EnterCriticalSection(This
->pin
.pCritSec
);
409 /* Flush outstanding samples */
410 IAsyncReader_BeginFlush(This
->pReader
);
417 IAsyncReader_WaitForNext(This
->pReader
, 0, &pSample
, &dwUser
);
422 assert(!IMediaSample_GetActualDataLength(pSample
));
424 IMediaSample_Release(pSample
);
427 IAsyncReader_EndFlush(This
->pReader
);
429 LeaveCriticalSection(This
->pin
.pCritSec
);
433 static void PullPin_Thread_Process(PullPin
*This
)
436 IMediaSample
* pSample
= NULL
;
437 ALLOCATOR_PROPERTIES allocProps
;
439 hr
= IMemAllocator_GetProperties(This
->pAlloc
, &allocProps
);
441 This
->cbAlign
= allocProps
.cbAlign
;
443 if (This
->rtCurrent
< This
->rtStart
)
444 This
->rtCurrent
= MEDIATIME_FROM_BYTES(ALIGNDOWN(BYTES_FROM_MEDIATIME(This
->rtStart
), This
->cbAlign
));
448 if (This
->rtCurrent
>= This
->rtStop
)
450 IPin_EndOfStream(&This
->pin
.IPin_iface
);
454 /* There is no sample in our buffer */
455 hr
= This
->fnCustomRequest(This
->pUserData
);
458 ERR("Request error: %x\n", hr
);
460 EnterCriticalSection(This
->pin
.pCritSec
);
461 SetEvent(This
->hEventStateChanged
);
462 LeaveCriticalSection(This
->pin
.pCritSec
);
469 TRACE("Process sample\n");
472 hr
= IAsyncReader_WaitForNext(This
->pReader
, 10000, &pSample
, &dwUser
);
474 /* Return an empty sample on error to the implementation in case it does custom parsing, so it knows it's gone */
477 hr
= This
->fnSampleProc(This
->pUserData
, pSample
, dwUser
);
481 if (hr
== VFW_E_TIMEOUT
)
484 WARN("Non-NULL sample returned with VFW_E_TIMEOUT.\n");
487 /* FIXME: Errors are not well handled yet! */
489 ERR("Processing error: %x\n", hr
);
494 IMediaSample_Release(pSample
);
497 } while (This
->rtCurrent
< This
->rtStop
&& hr
== S_OK
&& !This
->stop_playback
);
500 * Sample was rejected, and we are asked to terminate. When there is more than one buffer
501 * it is possible for a filter to have several queued samples, making it necessary to
502 * release all of these pending samples.
504 if (This
->stop_playback
|| FAILED(hr
))
511 IMediaSample_Release(pSample
);
513 IAsyncReader_WaitForNext(This
->pReader
, 0, &pSample
, &dwUser
);
517 /* Can't reset state to Sleepy here because that might race, instead PauseProcessing will do that for us
518 * Flush remaining samples
521 This
->fnDone(This
->pUserData
);
523 TRACE("End: %08x, %d\n", hr
, This
->stop_playback
);
526 static void PullPin_Thread_Pause(PullPin
*This
)
530 EnterCriticalSection(This
->pin
.pCritSec
);
531 This
->state
= Req_Sleepy
;
532 SetEvent(This
->hEventStateChanged
);
533 LeaveCriticalSection(This
->pin
.pCritSec
);
536 static void PullPin_Thread_Stop(PullPin
*This
)
538 TRACE("(%p)->()\n", This
);
540 EnterCriticalSection(This
->pin
.pCritSec
);
542 CloseHandle(This
->hThread
);
543 This
->hThread
= NULL
;
544 SetEvent(This
->hEventStateChanged
);
546 LeaveCriticalSection(This
->pin
.pCritSec
);
548 IBaseFilter_Release(This
->pin
.pinInfo
.pFilter
);
554 static DWORD WINAPI
PullPin_Thread_Main(LPVOID pv
)
557 CoInitializeEx(NULL
, COINIT_MULTITHREADED
);
563 WaitForSingleObject(This
->thread_sleepy
, INFINITE
);
565 TRACE("State: %d\n", This
->state
);
569 case Req_Die
: PullPin_Thread_Stop(This
); break;
570 case Req_Run
: PullPin_Thread_Process(This
); break;
571 case Req_Pause
: PullPin_Thread_Pause(This
); break;
572 case Req_Sleepy
: ERR("Should not be signalled with SLEEPY!\n"); break;
573 default: ERR("Unknown state request: %d\n", This
->state
); break;
579 static HRESULT
PullPin_InitProcessing(PullPin
* This
)
583 TRACE("(%p)->()\n", This
);
585 /* if we are connected */
590 WaitForSingleObject(This
->hEventStateChanged
, INFINITE
);
591 EnterCriticalSection(This
->pin
.pCritSec
);
593 assert(!This
->hThread
);
594 assert(This
->state
== Req_Die
);
595 assert(This
->stop_playback
);
596 assert(WaitForSingleObject(This
->thread_sleepy
, 0) == WAIT_TIMEOUT
);
597 This
->state
= Req_Sleepy
;
599 /* AddRef the filter to make sure it and its pins will be around
600 * as long as the thread */
601 IBaseFilter_AddRef(This
->pin
.pinInfo
.pFilter
);
604 This
->hThread
= CreateThread(NULL
, 0, PullPin_Thread_Main
, This
, 0, &dwThreadId
);
607 hr
= HRESULT_FROM_WIN32(GetLastError());
608 IBaseFilter_Release(This
->pin
.pinInfo
.pFilter
);
613 SetEvent(This
->hEventStateChanged
);
614 /* If assert fails, that means a command was not processed before the thread previously terminated */
616 LeaveCriticalSection(This
->pin
.pCritSec
);
619 TRACE(" -- %x\n", hr
);
624 HRESULT
PullPin_StartProcessing(PullPin
* This
)
626 /* if we are connected */
627 TRACE("(%p)->()\n", This
);
630 assert(This
->hThread
);
632 PullPin_WaitForStateChange(This
, INFINITE
);
634 assert(This
->state
== Req_Sleepy
);
637 assert(WaitForSingleObject(This
->thread_sleepy
, 0) == WAIT_TIMEOUT
);
638 This
->state
= Req_Run
;
639 This
->stop_playback
= FALSE
;
640 ResetEvent(This
->hEventStateChanged
);
641 SetEvent(This
->thread_sleepy
);
647 HRESULT
PullPin_PauseProcessing(PullPin
* This
)
649 /* if we are connected */
650 TRACE("(%p)->()\n", This
);
653 assert(This
->hThread
);
655 PullPin_WaitForStateChange(This
, INFINITE
);
657 EnterCriticalSection(This
->pin
.pCritSec
);
659 assert(!This
->stop_playback
);
660 assert(This
->state
== Req_Run
|| This
->state
== Req_Sleepy
);
662 assert(WaitForSingleObject(This
->thread_sleepy
, 0) == WAIT_TIMEOUT
);
664 This
->state
= Req_Pause
;
665 This
->stop_playback
= TRUE
;
666 ResetEvent(This
->hEventStateChanged
);
667 SetEvent(This
->thread_sleepy
);
669 /* Release any outstanding samples */
672 IMediaSample
*pSample
;
678 IAsyncReader_WaitForNext(This
->pReader
, 0, &pSample
, &dwUser
);
680 IMediaSample_Release(pSample
);
684 LeaveCriticalSection(This
->pin
.pCritSec
);
690 static HRESULT
PullPin_StopProcessing(PullPin
* This
)
692 TRACE("(%p)->()\n", This
);
694 /* if we are alive */
695 assert(This
->hThread
);
697 PullPin_WaitForStateChange(This
, INFINITE
);
699 assert(This
->state
== Req_Pause
|| This
->state
== Req_Sleepy
);
701 This
->stop_playback
= TRUE
;
702 This
->state
= Req_Die
;
703 assert(WaitForSingleObject(This
->thread_sleepy
, 0) == WAIT_TIMEOUT
);
704 ResetEvent(This
->hEventStateChanged
);
705 SetEvent(This
->thread_sleepy
);
709 HRESULT
PullPin_WaitForStateChange(PullPin
* This
, DWORD dwMilliseconds
)
711 if (WaitForSingleObject(This
->hEventStateChanged
, dwMilliseconds
) == WAIT_TIMEOUT
)
716 HRESULT WINAPI
PullPin_QueryAccept(IPin
* iface
, const AM_MEDIA_TYPE
* pmt
)
718 PullPin
*This
= impl_PullPin_from_IPin(iface
);
720 TRACE("(%p/%p)->(%p)\n", This
, iface
, pmt
);
722 return (This
->fnQueryAccept(This
->pUserData
, pmt
) == S_OK
? S_OK
: S_FALSE
);
725 HRESULT WINAPI
PullPin_EndOfStream(IPin
* iface
)
727 PullPin
*This
= impl_PullPin_from_IPin(iface
);
728 HRESULT hr
= S_FALSE
;
730 TRACE("(%p)->()\n", iface
);
732 EnterCriticalSection(This
->pin
.pCritSec
);
733 hr
= SendFurther( iface
, deliver_endofstream
, NULL
, NULL
);
734 SetEvent(This
->hEventStateChanged
);
735 LeaveCriticalSection(This
->pin
.pCritSec
);
740 HRESULT WINAPI
PullPin_BeginFlush(IPin
* iface
)
742 PullPin
*This
= impl_PullPin_from_IPin(iface
);
743 TRACE("(%p)->()\n", This
);
745 EnterCriticalSection(This
->pin
.pCritSec
);
747 SendFurther( iface
, deliver_beginflush
, NULL
, NULL
);
749 LeaveCriticalSection(This
->pin
.pCritSec
);
751 EnterCriticalSection(&This
->thread_lock
);
754 IAsyncReader_BeginFlush(This
->pReader
);
755 PullPin_WaitForStateChange(This
, INFINITE
);
757 if (This
->hThread
&& This
->state
== Req_Run
)
759 PullPin_PauseProcessing(This
);
760 PullPin_WaitForStateChange(This
, INFINITE
);
763 LeaveCriticalSection(&This
->thread_lock
);
765 EnterCriticalSection(This
->pin
.pCritSec
);
767 This
->fnCleanProc(This
->pUserData
);
769 LeaveCriticalSection(This
->pin
.pCritSec
);
774 HRESULT WINAPI
PullPin_EndFlush(IPin
* iface
)
776 PullPin
*This
= impl_PullPin_from_IPin(iface
);
778 TRACE("(%p)->()\n", iface
);
780 /* Send further first: Else a race condition might terminate processing early */
781 EnterCriticalSection(This
->pin
.pCritSec
);
782 SendFurther( iface
, deliver_endflush
, NULL
, NULL
);
783 LeaveCriticalSection(This
->pin
.pCritSec
);
785 EnterCriticalSection(&This
->thread_lock
);
790 IAsyncReader_EndFlush(This
->pReader
);
792 IBaseFilter_GetState(This
->pin
.pinInfo
.pFilter
, INFINITE
, &state
);
794 if (state
!= State_Stopped
)
795 PullPin_StartProcessing(This
);
797 PullPin_WaitForStateChange(This
, INFINITE
);
799 LeaveCriticalSection(&This
->thread_lock
);
804 HRESULT WINAPI
PullPin_Disconnect(IPin
*iface
)
807 PullPin
*This
= impl_PullPin_from_IPin(iface
);
811 EnterCriticalSection(This
->pin
.pCritSec
);
813 if (FAILED(hr
= IMemAllocator_Decommit(This
->pAlloc
)))
814 ERR("Allocator decommit failed with error %x. Possible memory leak\n", hr
);
816 if (This
->pin
.pConnectedTo
)
818 IPin_Release(This
->pin
.pConnectedTo
);
819 This
->pin
.pConnectedTo
= NULL
;
820 PullPin_StopProcessing(This
);
822 FreeMediaType(&This
->pin
.mtCurrent
);
823 ZeroMemory(&This
->pin
.mtCurrent
, sizeof(This
->pin
.mtCurrent
));
829 LeaveCriticalSection(This
->pin
.pCritSec
);
834 HRESULT WINAPI
PullPin_NewSegment(IPin
* iface
, REFERENCE_TIME tStart
, REFERENCE_TIME tStop
, double dRate
)
837 FIXME("(%p)->(%s, %s, %g) stub\n", iface
, wine_dbgstr_longlong(tStart
), wine_dbgstr_longlong(tStop
), dRate
);
839 args
.tStart
= tStart
;
843 return SendFurther( iface
, deliver_newsegment
, &args
, NULL
);