quartz: Forward IMediaControl_RenderFile to IFilterGraph2_RenderFile.

This commit is contained in:
Christian Costa 2012-10-07 22:01:00 +02:00 committed by Alexandre Julliard
parent 0ae458cc94
commit 7ea44c0007
1 changed files with 2 additions and 2 deletions

View File

@ -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,