mfplat/tests: Fix a crash on Vista.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3b3dfda599
commit
9ec297e283
|
@ -136,6 +136,7 @@ static DXGI_FORMAT (WINAPI *pMFMapDX9FormatToDXGIFormat)(DWORD format);
|
|||
static HRESULT (WINAPI *pMFCreateVideoSampleAllocatorEx)(REFIID riid, void **allocator);
|
||||
static HRESULT (WINAPI *pMFCreateDXGISurfaceBuffer)(REFIID riid, IUnknown *surface, UINT subresource, BOOL bottomup,
|
||||
IMFMediaBuffer **buffer);
|
||||
static HRESULT (WINAPI *pMFCreateVideoMediaTypeFromSubtype)(const GUID *subtype, IMFVideoMediaType **media_type);
|
||||
|
||||
static HWND create_window(void)
|
||||
{
|
||||
|
@ -799,6 +800,7 @@ static void init_functions(void)
|
|||
X(MFCreateMFByteStreamOnStream);
|
||||
X(MFCreateTrackedSample);
|
||||
X(MFCreateTransformActivate);
|
||||
X(MFCreateVideoMediaTypeFromSubtype);
|
||||
X(MFCreateVideoSampleAllocatorEx);
|
||||
X(MFGetPlaneSize);
|
||||
X(MFGetStrideForBitmapInfoHeader);
|
||||
|
@ -965,8 +967,11 @@ if(0)
|
|||
IUnknown_Release(unk2);
|
||||
|
||||
IUnknown_Release(unk);
|
||||
IMFMediaType_Release(mediatype);
|
||||
|
||||
hr = MFCreateVideoMediaTypeFromSubtype(&MFVideoFormat_RGB555, &video_type);
|
||||
if (pMFCreateVideoMediaTypeFromSubtype)
|
||||
{
|
||||
hr = pMFCreateVideoMediaTypeFromSubtype(&MFVideoFormat_RGB555, &video_type);
|
||||
ok(hr == S_OK, "Unexpected hr %#x.\n", hr);
|
||||
|
||||
check_interface(video_type, &IID_IMFMediaType, TRUE);
|
||||
|
@ -985,8 +990,9 @@ if(0)
|
|||
check_interface(video_type, &IID_IMFVideoMediaType, FALSE);
|
||||
|
||||
IMFVideoMediaType_Release(video_type);
|
||||
|
||||
IMFMediaType_Release(mediatype);
|
||||
}
|
||||
else
|
||||
win_skip("MFCreateVideoMediaTypeFromSubtype() is not available.\n");
|
||||
|
||||
/* IMFAudioMediaType */
|
||||
hr = MFCreateMediaType(&mediatype);
|
||||
|
|
Loading…
Reference in New Issue