From fb2f9fa15116b1ece2519699a83eec097c3e6778 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Tue, 26 Feb 2019 22:56:27 -0600 Subject: [PATCH] quartz: Also report the input pin in Parser_GetPinCount(). Signed-off-by: Zebediah Figura Signed-off-by: Alexandre Julliard --- 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 49b0adf6f59..664cecf07d3 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 = {