Commit a110e6e4 authored by Chris Robinson's avatar Chris Robinson Committed by Alexandre Julliard

quartz: Return proper CLSID for parser filters.

parent 2b1f1093
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment