mfplat: Forward CopyAllItems() for stream 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-13 09:29:37 +03:00 committed by Alexandre Julliard
parent e8df24941d
commit 78936b9285
1 changed files with 2 additions and 3 deletions

View File

@ -750,9 +750,8 @@ static HRESULT WINAPI stream_descriptor_GetItemByIndex(IMFStreamDescriptor *ifac
static HRESULT WINAPI stream_descriptor_CopyAllItems(IMFStreamDescriptor *iface, IMFAttributes *dest)
{
FIXME("%p, %p.\n", iface, dest);
return E_NOTIMPL;
struct stream_desc *stream_desc = impl_from_IMFStreamDescriptor(iface);
return IMFAttributes_CopyAllItems(&stream_desc->attributes.IMFAttributes_iface, dest);
}
static HRESULT WINAPI stream_descriptor_GetStreamIdentifier(IMFStreamDescriptor *iface, DWORD *identifier)