[PATCH 5/7] qcap: Use pin_matches() directly in find_unconnected_source_from_pin().

Zebediah Figura z.figura12 at gmail.com
Wed Apr 8 15:58:54 CDT 2020


Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 dlls/qcap/capturegraph.c | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/dlls/qcap/capturegraph.c b/dlls/qcap/capturegraph.c
index b49e45b9d6b..6c20e727a20 100644
--- a/dlls/qcap/capturegraph.c
+++ b/dlls/qcap/capturegraph.c
@@ -511,12 +511,17 @@ static HRESULT find_unconnected_source_from_pin(CaptureGraphImpl *capture_graph,
 
     if (category && (IsEqualGUID(category, &PIN_CATEGORY_CAPTURE)
             || IsEqualGUID(category, &PIN_CATEGORY_PREVIEW)))
-        hr = match_smart_tee_pin(capture_graph, category, majortype, (IUnknown *)pin, &pin);
+    {
+        if (FAILED(hr = match_smart_tee_pin(capture_graph, category, majortype, (IUnknown *)pin, &pin)))
+            return hr;
+    }
+    else if (pin_matches(pin, PINDIR_OUTPUT, category, majortype, FALSE))
+    {
+        IPin_AddRef(pin);
+        hr = S_OK;
+    }
     else
-        hr = ICaptureGraphBuilder2_FindPin(&capture_graph->ICaptureGraphBuilder2_iface,
-                (IUnknown *)pin, PINDIR_OUTPUT, category, majortype, FALSE, -1, &pin);
-    if (FAILED(hr))
-        return hr;
+        return E_FAIL;
 
     if (FAILED(IPin_ConnectedTo(pin, &peer)))
     {
-- 
2.26.0




More information about the wine-devel mailing list