Zebediah Figura : quartz: Also report the input pin in Parser_GetPinCount( ).

Alexandre Julliard julliard at winehq.org
Wed Feb 27 15:30:30 CST 2019


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

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Tue Feb 26 22:56:27 2019 -0600

quartz: Also report the input pin in Parser_GetPinCount().

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

---

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

diff --git a/dlls/quartz/parser.c b/dlls/quartz/parser.c
index 49b0adf..664cecf 100644
--- a/dlls/quartz/parser.c
+++ b/dlls/quartz/parser.c
@@ -85,7 +85,7 @@ static LONG WINAPI Parser_GetPinCount(BaseFilter *iface)
 
     TRACE("%p->()\n", This);
 
-    return This->cStreams;
+    return This->cStreams + 1;
 }
 
 static const BaseFilterFuncTable BaseFuncTable = {




More information about the wine-cvs mailing list