Module: wine Branch: master Commit: 7ea44c0007c432b3ef1f6431e0d112a736e79bad URL: http://source.winehq.org/git/wine.git/?a=commit;h=7ea44c0007c432b3ef1f6431e0...
Author: Christian Costa titan.costa@gmail.com Date: Sun Oct 7 22:01:00 2012 +0200
quartz: Forward IMediaControl_RenderFile to IFilterGraph2_RenderFile.
---
dlls/quartz/filtergraph.c | 4 ++-- 1 files 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,