Zebediah Figura : quartz: Also report the input pin in Parser_GetPinCount( ).
Module: wine Branch: master Commit: fb2f9fa15116b1ece2519699a83eec097c3e6778 URL: https://source.winehq.org/git/wine.git/?a=commit;h=fb2f9fa15116b1ece2519699a... Author: Zebediah Figura <z.figura12(a)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(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)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 = {
participants (1)
-
Alexandre Julliard