wineqtdecoder: Ignore requests for IID_IAMFilterMiscFlags, we do not need to implement it.
This commit is contained in:
parent
ea407686bb
commit
72550c9d3a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue