[PATCH 3/6] amstream: Explicitly create the graph in IAMMultiMediaStream::OpenFile().

Zebediah Figura z.figura12 at gmail.com
Wed Mar 4 22:33:33 CST 2020


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/amstream/multimedia.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/amstream/multimedia.c b/dlls/amstream/multimedia.c
index a14771ec75..43e3ee9057 100644
--- a/dlls/amstream/multimedia.c
+++ b/dlls/amstream/multimedia.c
@@ -364,7 +364,11 @@ static HRESULT WINAPI multimedia_stream_OpenFile(IAMMultiMediaStream *iface,
 
     /* If Initialize was not called before, we do it here */
     if (!This->graph)
+    {
         ret = IAMMultiMediaStream_Initialize(iface, STREAMTYPE_READ, 0, NULL);
+        if (SUCCEEDED(ret))
+            ret = create_graph(This, NULL);
+    }
 
     if (SUCCEEDED(ret))
         ret = IGraphBuilder_AddSourceFilter(This->graph, filename, L"Source", &BaseFilter);
-- 
2.25.1




More information about the wine-devel mailing list