[PATCH 1/2] quartz: Forward IMediaControl_RenderFile to IFilterGraph2_RenderFile.

Christian Costa titan.costa at gmail.com
Sun Oct 7 15:01:00 CDT 2012


Fixes bug 31900.
---
 dlls/quartz/filtergraph.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c
index 239cf0b..58d8588 100644
--- a/dlls/quartz/filtergraph.c
+++ b/dlls/quartz/filtergraph.c
@@ -2091,9 +2091,9 @@ static HRESULT WINAPI MediaControl_RenderFile(IMediaControl *iface, BSTR strFile
 {
     IFilterGraphImpl *This = impl_from_IMediaControl(iface);
 
-    FIXME("(%p/%p)->(%s (%p)): stub !!!\n", This, iface, debugstr_w(strFilename), strFilename);
+    TRACE("(%p/%p)->(%s (%p))\n", This, iface, debugstr_w(strFilename), strFilename);
 
-    return S_OK;
+    return IFilterGraph2_RenderFile(&This->IFilterGraph2_iface, strFilename, NULL);
 }
 
 static HRESULT WINAPI MediaControl_AddSourceFilter(IMediaControl *iface, BSTR strFilename,




More information about the wine-patches mailing list