mfplat: Add MFCopyImage stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
470f7b20d4
commit
78dcaa603d
|
@ -442,6 +442,11 @@ HRESULT WINAPI MFShutdown(void)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT WINAPI MFCopyImage(BYTE *dest, LONG deststride, const BYTE *src, LONG srcstride, DWORD width, DWORD lines)
|
||||
{
|
||||
FIXME("(%p, %d, %p, %d, %d, %d) stub\n", dest, deststride, src, srcstride, width, lines);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
typedef struct _mfbytestream
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
@ stub MFConvertColorInfoToDXVA
|
||||
@ stub MFConvertFromFP16Array
|
||||
@ stub MFConvertToFP16Array
|
||||
@ stub MFCopyImage
|
||||
@ stdcall MFCopyImage(ptr long ptr long long long)
|
||||
@ stub MFCreateAMMediaTypeFromMFMediaType
|
||||
@ stub MFCreateAlignedMemoryBuffer
|
||||
@ stub MFCreateAsyncResult
|
||||
|
|
|
@ -64,6 +64,7 @@ DEFINE_GUID(MFMediaType_Video, 0x73646976, 0x0000, 0x0010, 0x80, 0x00, 0
|
|||
typedef unsigned __int64 MFWORKITEM_KEY;
|
||||
|
||||
HRESULT WINAPI MFCancelWorkItem(MFWORKITEM_KEY key);
|
||||
HRESULT WINAPI MFCopyImage(BYTE *dest, LONG deststride, const BYTE *src, LONG srcstride, DWORD width, DWORD lines);
|
||||
HRESULT WINAPI MFCreateAttributes(IMFAttributes **attributes, UINT32 size);
|
||||
HRESULT WINAPI MFCreateEventQueue(IMFMediaEventQueue **queue);
|
||||
HRESULT WINAPI MFCreateMediaType(IMFMediaType **type);
|
||||
|
|
Loading…
Reference in New Issue