Commit 0b2db939 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mfplat: Forward CopyAllItems() for media type as well.

parent b80ace81
......@@ -302,9 +302,8 @@ static HRESULT WINAPI mediatype_GetItemByIndex(IMFMediaType *iface, UINT32 index
static HRESULT WINAPI mediatype_CopyAllItems(IMFMediaType *iface, IMFAttributes *dest)
{
FIXME("%p, %p.\n", iface, dest);
return E_NOTIMPL;
struct media_type *media_type = impl_from_IMFMediaType(iface);
return IMFAttributes_CopyAllItems(&media_type->attributes.IMFAttributes_iface, dest);
}
static HRESULT WINAPI mediatype_GetMajorType(IMFMediaType *iface, GUID *guid)
......
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