mfplat: Forward CopyAllItems() for presentation descriptor.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2019-03-21 10:42:54 +03:00 committed by Alexandre Julliard
parent 762a9ae4c7
commit 9caaebf2fc
1 changed files with 2 additions and 3 deletions

View File

@ -1249,9 +1249,8 @@ static HRESULT WINAPI presentation_descriptor_GetItemByIndex(IMFPresentationDesc
static HRESULT WINAPI presentation_descriptor_CopyAllItems(IMFPresentationDescriptor *iface, IMFAttributes *dest)
{
FIXME("%p, %p.\n", iface, dest);
return E_NOTIMPL;
struct presentation_desc *presentation_desc = impl_from_IMFPresentationDescriptor(iface);
return IMFAttributes_CopyAllItems(&presentation_desc->attributes.IMFAttributes_iface, dest);
}
static HRESULT WINAPI presentation_descriptor_GetStreamDescriptorCount(IMFPresentationDescriptor *iface, DWORD *count)