mfplat: Get rid of unsupported interface trace for 1D buffers.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
43a88a7317
commit
f056355071
|
@ -97,16 +97,13 @@ static HRESULT WINAPI memory_buffer_QueryInterface(IMFMediaBuffer *iface, REFIID
|
|||
IsEqualIID(riid, &IID_IUnknown))
|
||||
{
|
||||
*out = &buffer->IMFMediaBuffer_iface;
|
||||
}
|
||||
else
|
||||
{
|
||||
FIXME("(%s, %p)\n", debugstr_guid(riid), out);
|
||||
*out = NULL;
|
||||
return E_NOINTERFACE;
|
||||
IMFMediaBuffer_AddRef(iface);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
IUnknown_AddRef((IUnknown*)*out);
|
||||
return S_OK;
|
||||
WARN("Unsupported %s.\n", debugstr_guid(riid));
|
||||
*out = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
static ULONG WINAPI memory_buffer_AddRef(IMFMediaBuffer *iface)
|
||||
|
|
Loading…
Reference in New Issue