wineqtdecoder/qtvdecoder: Call IMemInputPin::Receive() directly.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1b3d163208
commit
b41b19ff7b
|
@ -236,7 +236,7 @@ static void trackingCallback(
|
|||
}
|
||||
|
||||
LeaveCriticalSection(&This->tf.csReceive);
|
||||
hr = BaseOutputPinImpl_Deliver(&This->tf.source, pOutSample);
|
||||
hr = IMemInputPin_Receive(This->tf.source.pMemInputPin, pOutSample);
|
||||
EnterCriticalSection(&This->tf.csReceive);
|
||||
if (hr != S_OK && hr != VFW_E_NOT_CONNECTED)
|
||||
ERR("Error sending sample (%x)\n", hr);
|
||||
|
|
Loading…
Reference in New Issue