mfplat: Add MFInitAMMediaTypeFromMFMediaType stub.
This commit is contained in:
parent
d30a1c377c
commit
aa9ca347c3
3 changed files with 11 additions and 1 deletions
|
@ -3684,6 +3684,15 @@ HRESULT WINAPI MFInitMediaTypeFromVideoInfoHeader(IMFMediaType *media_type, cons
|
|||
return hr;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFInitAMMediaTypeFromMFMediaType (mfplat.@)
|
||||
*/
|
||||
HRESULT WINAPI MFInitAMMediaTypeFromMFMediaType(IMFMediaType *media_type, GUID format, AM_MEDIA_TYPE *am_type)
|
||||
{
|
||||
FIXME("%p, %s, %p\n", media_type, debugstr_guid(&format), am_type);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFInitMediaTypeFromAMMediaType (mfplat.@)
|
||||
*/
|
||||
|
|
|
@ -117,7 +117,7 @@
|
|||
@ stdcall MFGetWorkQueueMMCSSPriority(long ptr) rtworkq.RtwqGetWorkQueueMMCSSPriority
|
||||
@ stdcall MFHeapAlloc(long long str long long)
|
||||
@ stdcall MFHeapFree(ptr)
|
||||
@ stub MFInitAMMediaTypeFromMFMediaType
|
||||
@ stdcall MFInitAMMediaTypeFromMFMediaType(ptr int128 ptr)
|
||||
@ stdcall MFInitAttributesFromBlob(ptr ptr long)
|
||||
@ stdcall MFInitMediaTypeFromAMMediaType(ptr ptr)
|
||||
@ stub MFInitMediaTypeFromMFVideoFormat
|
||||
|
|
|
@ -589,6 +589,7 @@ HRESULT WINAPI MFTGetInfo(CLSID clsid, WCHAR **name, MFT_REGISTER_TYPE_INFO **in
|
|||
MFT_REGISTER_TYPE_INFO **output_types, UINT32 *output_types_count, IMFAttributes **attributes);
|
||||
BOOL WINAPI MFIsFormatYUV(DWORD format);
|
||||
HRESULT WINAPI MFInitAttributesFromBlob(IMFAttributes *attributes, const UINT8 *buffer, UINT size);
|
||||
HRESULT WINAPI MFInitAMMediaTypeFromMFMediaType(IMFMediaType *media_type, GUID format, AM_MEDIA_TYPE *am_type);
|
||||
HRESULT WINAPI MFInitMediaTypeFromAMMediaType(IMFMediaType *mediatype, const AM_MEDIA_TYPE *am_type);
|
||||
HRESULT WINAPI MFInitMediaTypeFromVideoInfoHeader(IMFMediaType *media_type, const VIDEOINFOHEADER *vih,
|
||||
UINT32 size, const GUID *subtype);
|
||||
|
|
Loading…
Add table
Reference in a new issue