quartz: Return proper CLSID for parser filters.

oldstable
Chris Robinson 2007-03-26 01:18:17 -07:00 committed by Alexandre Julliard
parent 2b1f1093f0
commit a110e6e433
1 changed files with 3 additions and 1 deletions

View File

@ -223,9 +223,11 @@ static ULONG WINAPI Parser_Release(IBaseFilter * iface)
static HRESULT WINAPI Parser_GetClassID(IBaseFilter * iface, CLSID * pClsid)
{
ParserImpl *This = (ParserImpl *)iface;
TRACE("(%p)\n", pClsid);
*pClsid = CLSID_AviSplitter;
*pClsid = This->clsid;
return S_OK;
}