Zebediah Figura : quartz/acmwrapper: Call IMemInputPin::Receive() directly.

Alexandre Julliard julliard at winehq.org
Mon Nov 25 16:41:55 CST 2019


Module: wine
Branch: master
Commit: 5cfdf950222e7b601a9ea99ad0497b0c4de42080
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=5cfdf950222e7b601a9ea99ad0497b0c4de42080

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Fri Nov 22 21:14:02 2019 -0600

quartz/acmwrapper: Call IMemInputPin::Receive() directly.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/quartz/acmwrapper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/quartz/acmwrapper.c b/dlls/quartz/acmwrapper.c
index d1e4803fac..9e818579df 100644
--- a/dlls/quartz/acmwrapper.c
+++ b/dlls/quartz/acmwrapper.c
@@ -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) {




More information about the wine-cvs mailing list