Skip to content
Snippets Groups Projects
Commit 72550c9d authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard
Browse files

wineqtdecoder: Ignore requests for IID_IAMFilterMiscFlags, we do not need to implement it.

parent ea407686
Branches
Tags
No related merge requests found
......@@ -341,7 +341,8 @@ static HRESULT WINAPI QT_QueryInterface(IBaseFilter *iface, REFIID riid, LPVOID
return S_OK;
}
if (!IsEqualIID(riid, &IID_IPin) && !IsEqualIID(riid, &IID_IVideoWindow))
if (!IsEqualIID(riid, &IID_IPin) && !IsEqualIID(riid, &IID_IVideoWindow) &&
!IsEqualIID(riid, &IID_IAMFilterMiscFlags))
FIXME("No interface for %s!\n", debugstr_guid(riid));
return E_NOINTERFACE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment