quartz/acmwrapper: 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:
Zebediah Figura 2019-11-22 21:14:02 -06:00 committed by Alexandre Julliard
parent 8bfd6d3285
commit 5cfdf95022
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ static HRESULT WINAPI ACMWrapper_Receive(TransformFilter *tf, IMediaSample *pSam
TRACE("Sample stop time: %u.%03u\n", (DWORD)(tStart/10000000), (DWORD)((tStart/10000)%1000));
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) {