2017-05-09 00:51:01 +02:00
|
|
|
/*
|
|
|
|
* Unit test suite for mfplat.
|
|
|
|
*
|
|
|
|
* Copyright 2015 Michael Müller
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
|
|
|
|
#include "initguid.h"
|
|
|
|
#include "mfapi.h"
|
2017-05-28 13:42:48 +02:00
|
|
|
#include "mfidl.h"
|
2017-05-09 00:51:01 +02:00
|
|
|
#include "mferror.h"
|
2017-07-12 07:22:19 +02:00
|
|
|
#include "mfreadwrite.h"
|
2017-05-09 00:51:01 +02:00
|
|
|
|
|
|
|
#include "wine/test.h"
|
|
|
|
|
2019-02-19 14:20:06 +01:00
|
|
|
static HRESULT (WINAPI *pMFCopyImage)(BYTE *dest, LONG deststride, const BYTE *src, LONG srcstride,
|
|
|
|
DWORD width, DWORD lines);
|
2017-05-28 13:42:48 +02:00
|
|
|
static HRESULT (WINAPI *pMFCreateSourceResolver)(IMFSourceResolver **resolver);
|
2018-09-07 02:58:39 +02:00
|
|
|
static HRESULT (WINAPI *pMFCreateMFByteStreamOnStream)(IStream *stream, IMFByteStream **bytestream);
|
2018-09-07 02:58:41 +02:00
|
|
|
static HRESULT (WINAPI *pMFCreateMemoryBuffer)(DWORD max_length, IMFMediaBuffer **buffer);
|
2019-02-22 08:36:54 +01:00
|
|
|
static void* (WINAPI *pMFHeapAlloc)(SIZE_T size, ULONG flags, char *file, int line, EAllocationType type);
|
|
|
|
static void (WINAPI *pMFHeapFree)(void *p);
|
2018-09-07 02:58:41 +02:00
|
|
|
|
2018-11-13 23:20:45 +01:00
|
|
|
DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0);
|
2017-05-28 13:42:48 +02:00
|
|
|
|
2018-11-22 21:00:45 +01:00
|
|
|
DEFINE_GUID(MF_BYTESTREAM_CONTENT_TYPE, 0xfc358289,0x3cb6,0x460c,0xa4,0x24,0xb6,0x68,0x12,0x60,0x37,0x5a);
|
|
|
|
|
2017-07-12 07:22:19 +02:00
|
|
|
DEFINE_GUID(MF_READWRITE_ENABLE_HARDWARE_TRANSFORMS, 0xa634a91c, 0x822b, 0x41b9, 0xa4, 0x94, 0x4d, 0xe4, 0x64, 0x36, 0x12, 0xb0);
|
|
|
|
|
2017-05-09 00:51:01 +02:00
|
|
|
DEFINE_GUID(MFT_CATEGORY_OTHER, 0x90175d57,0xb7ea,0x4901,0xae,0xb3,0x93,0x3a,0x87,0x47,0x75,0x6f);
|
|
|
|
|
|
|
|
DEFINE_GUID(DUMMY_CLSID, 0x12345678,0x1234,0x1234,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19);
|
|
|
|
DEFINE_GUID(DUMMY_GUID1, 0x12345678,0x1234,0x1234,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21);
|
|
|
|
DEFINE_GUID(DUMMY_GUID2, 0x12345678,0x1234,0x1234,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22);
|
|
|
|
|
2018-11-03 22:25:08 +01:00
|
|
|
static const WCHAR mp4file[] = {'t','e','s','t','.','m','p','4',0};
|
|
|
|
|
|
|
|
static WCHAR *load_resource(const WCHAR *name)
|
|
|
|
{
|
|
|
|
static WCHAR pathW[MAX_PATH];
|
|
|
|
DWORD written;
|
|
|
|
HANDLE file;
|
|
|
|
HRSRC res;
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
GetTempPathW(ARRAY_SIZE(pathW), pathW);
|
|
|
|
lstrcatW(pathW, name);
|
|
|
|
|
|
|
|
file = CreateFileW(pathW, GENERIC_READ|GENERIC_WRITE, 0,
|
|
|
|
NULL, CREATE_ALWAYS, 0, 0);
|
|
|
|
ok(file != INVALID_HANDLE_VALUE, "file creation failed, at %s, error %d\n",
|
|
|
|
wine_dbgstr_w(pathW), GetLastError());
|
|
|
|
|
|
|
|
res = FindResourceW(NULL, name, (LPCWSTR)RT_RCDATA);
|
|
|
|
ok(res != 0, "couldn't find resource\n");
|
|
|
|
ptr = LockResource(LoadResource(GetModuleHandleA(NULL), res));
|
|
|
|
WriteFile(file, ptr, SizeofResource(GetModuleHandleA(NULL), res),
|
|
|
|
&written, NULL);
|
|
|
|
ok(written == SizeofResource(GetModuleHandleA(NULL), res),
|
|
|
|
"couldn't write resource\n" );
|
|
|
|
CloseHandle(file);
|
|
|
|
|
|
|
|
return pathW;
|
|
|
|
}
|
|
|
|
|
2017-05-09 00:51:01 +02:00
|
|
|
static BOOL check_clsid(CLSID *clsids, UINT32 count)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
if (IsEqualGUID(&clsids[i], &DUMMY_CLSID))
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_register(void)
|
|
|
|
{
|
|
|
|
static WCHAR name[] = {'W','i','n','e',' ','t','e','s','t',0};
|
|
|
|
MFT_REGISTER_TYPE_INFO input[] =
|
|
|
|
{
|
|
|
|
{ DUMMY_CLSID, DUMMY_GUID1 }
|
|
|
|
};
|
|
|
|
MFT_REGISTER_TYPE_INFO output[] =
|
|
|
|
{
|
|
|
|
{ DUMMY_CLSID, DUMMY_GUID2 }
|
|
|
|
};
|
|
|
|
CLSID *clsids;
|
|
|
|
UINT32 count;
|
|
|
|
HRESULT ret;
|
|
|
|
|
|
|
|
ret = MFTRegister(DUMMY_CLSID, MFT_CATEGORY_OTHER, name, 0, 1, input, 1, output, NULL);
|
2017-10-24 23:13:55 +02:00
|
|
|
if (ret == E_ACCESSDENIED)
|
|
|
|
{
|
|
|
|
win_skip("Not enough permissions to register a filter\n");
|
2017-05-09 00:51:01 +02:00
|
|
|
return;
|
2017-10-24 23:13:55 +02:00
|
|
|
}
|
|
|
|
ok(ret == S_OK, "Failed to register dummy filter: %x\n", ret);
|
2017-05-09 00:51:01 +02:00
|
|
|
|
|
|
|
if(0)
|
|
|
|
{
|
|
|
|
/* NULL name crashes on windows */
|
|
|
|
ret = MFTRegister(DUMMY_CLSID, MFT_CATEGORY_OTHER, NULL, 0, 1, input, 1, output, NULL);
|
|
|
|
ok(ret == E_INVALIDARG, "got %x\n", ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = MFTRegister(DUMMY_CLSID, MFT_CATEGORY_OTHER, name, 0, 0, NULL, 0, NULL, NULL);
|
|
|
|
ok(ret == S_OK, "Failed to register dummy filter: %x\n", ret);
|
|
|
|
|
|
|
|
ret = MFTRegister(DUMMY_CLSID, MFT_CATEGORY_OTHER, name, 0, 1, NULL, 0, NULL, NULL);
|
|
|
|
ok(ret == S_OK, "Failed to register dummy filter: %x\n", ret);
|
|
|
|
|
|
|
|
ret = MFTRegister(DUMMY_CLSID, MFT_CATEGORY_OTHER, name, 0, 0, NULL, 1, NULL, NULL);
|
|
|
|
ok(ret == S_OK, "Failed to register dummy filter: %x\n", ret);
|
|
|
|
|
|
|
|
if(0)
|
|
|
|
{
|
|
|
|
/* NULL clsids/count crashes on windows (vista) */
|
|
|
|
count = 0;
|
|
|
|
ret = MFTEnum(MFT_CATEGORY_OTHER, 0, NULL, NULL, NULL, NULL, &count);
|
|
|
|
ok(ret == E_POINTER, "Failed to enumerate filters: %x\n", ret);
|
|
|
|
ok(count == 0, "Expected count > 0\n");
|
|
|
|
|
|
|
|
clsids = NULL;
|
|
|
|
ret = MFTEnum(MFT_CATEGORY_OTHER, 0, NULL, NULL, NULL, &clsids, NULL);
|
|
|
|
ok(ret == E_POINTER, "Failed to enumerate filters: %x\n", ret);
|
|
|
|
ok(count == 0, "Expected count > 0\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
clsids = NULL;
|
|
|
|
ret = MFTEnum(MFT_CATEGORY_OTHER, 0, NULL, NULL, NULL, &clsids, &count);
|
|
|
|
ok(ret == S_OK, "Failed to enumerate filters: %x\n", ret);
|
|
|
|
ok(count > 0, "Expected count > 0\n");
|
|
|
|
ok(clsids != NULL, "Expected clsids != NULL\n");
|
|
|
|
ok(check_clsid(clsids, count), "Filter was not part of enumeration\n");
|
|
|
|
CoTaskMemFree(clsids);
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
clsids = NULL;
|
|
|
|
ret = MFTEnum(MFT_CATEGORY_OTHER, 0, input, NULL, NULL, &clsids, &count);
|
|
|
|
ok(ret == S_OK, "Failed to enumerate filters: %x\n", ret);
|
|
|
|
ok(count > 0, "Expected count > 0\n");
|
|
|
|
ok(clsids != NULL, "Expected clsids != NULL\n");
|
|
|
|
ok(check_clsid(clsids, count), "Filter was not part of enumeration\n");
|
|
|
|
CoTaskMemFree(clsids);
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
clsids = NULL;
|
|
|
|
ret = MFTEnum(MFT_CATEGORY_OTHER, 0, NULL, output, NULL, &clsids, &count);
|
|
|
|
ok(ret == S_OK, "Failed to enumerate filters: %x\n", ret);
|
|
|
|
ok(count > 0, "Expected count > 0\n");
|
|
|
|
ok(clsids != NULL, "Expected clsids != NULL\n");
|
|
|
|
ok(check_clsid(clsids, count), "Filter was not part of enumeration\n");
|
|
|
|
CoTaskMemFree(clsids);
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
clsids = NULL;
|
|
|
|
ret = MFTEnum(MFT_CATEGORY_OTHER, 0, input, output, NULL, &clsids, &count);
|
|
|
|
ok(ret == S_OK, "Failed to enumerate filters: %x\n", ret);
|
|
|
|
ok(count > 0, "Expected count > 0\n");
|
|
|
|
ok(clsids != NULL, "Expected clsids != NULL\n");
|
|
|
|
ok(check_clsid(clsids, count), "Filter was not part of enumeration\n");
|
|
|
|
CoTaskMemFree(clsids);
|
|
|
|
|
|
|
|
/* exchange input and output */
|
|
|
|
count = 0;
|
|
|
|
clsids = NULL;
|
|
|
|
ret = MFTEnum(MFT_CATEGORY_OTHER, 0, output, input, NULL, &clsids, &count);
|
|
|
|
ok(ret == S_OK, "Failed to enumerate filters: %x\n", ret);
|
|
|
|
ok(!count, "got %d\n", count);
|
|
|
|
ok(clsids == NULL, "Expected clsids == NULL\n");
|
|
|
|
|
|
|
|
ret = MFTUnregister(DUMMY_CLSID);
|
|
|
|
ok(ret == S_OK ||
|
|
|
|
/* w7pro64 */
|
|
|
|
broken(ret == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)), "got %x\n", ret);
|
|
|
|
|
|
|
|
ret = MFTUnregister(DUMMY_CLSID);
|
|
|
|
ok(ret == S_OK || broken(ret == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)), "got %x\n", ret);
|
|
|
|
}
|
|
|
|
|
2017-05-28 13:42:48 +02:00
|
|
|
static void test_source_resolver(void)
|
|
|
|
{
|
|
|
|
IMFSourceResolver *resolver, *resolver2;
|
2018-11-22 21:00:45 +01:00
|
|
|
IMFByteStream *bytestream;
|
|
|
|
IMFAttributes *attributes;
|
|
|
|
IMFMediaSource *mediasource;
|
2018-11-25 20:45:05 +01:00
|
|
|
IMFPresentationDescriptor *descriptor;
|
2018-11-22 21:00:45 +01:00
|
|
|
MF_OBJECT_TYPE obj_type;
|
2017-05-28 13:42:48 +02:00
|
|
|
HRESULT hr;
|
2018-11-22 21:00:45 +01:00
|
|
|
WCHAR *filename;
|
|
|
|
|
|
|
|
static const WCHAR file_type[] = {'v','i','d','e','o','/','m','p','4',0};
|
2017-05-28 13:42:48 +02:00
|
|
|
|
|
|
|
if (!pMFCreateSourceResolver)
|
|
|
|
{
|
|
|
|
win_skip("MFCreateSourceResolver() not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-22 21:00:45 +01:00
|
|
|
hr = MFStartup(MF_VERSION, MFSTARTUP_FULL);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
2017-05-28 13:42:48 +02:00
|
|
|
hr = pMFCreateSourceResolver(NULL);
|
|
|
|
ok(hr == E_POINTER, "got %#x\n", hr);
|
|
|
|
|
|
|
|
hr = pMFCreateSourceResolver(&resolver);
|
|
|
|
ok(hr == S_OK, "got %#x\n", hr);
|
|
|
|
|
|
|
|
hr = pMFCreateSourceResolver(&resolver2);
|
|
|
|
ok(hr == S_OK, "got %#x\n", hr);
|
|
|
|
ok(resolver != resolver2, "Expected new instance\n");
|
|
|
|
|
|
|
|
IMFSourceResolver_Release(resolver2);
|
2018-11-22 21:00:45 +01:00
|
|
|
|
|
|
|
filename = load_resource(mp4file);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_READ, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, filename, &bytestream);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFSourceResolver_CreateObjectFromByteStream(
|
|
|
|
resolver, NULL, NULL, MF_RESOLUTION_MEDIASOURCE, NULL,
|
|
|
|
&obj_type, (IUnknown **)&mediasource);
|
|
|
|
ok(hr == E_POINTER, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFSourceResolver_CreateObjectFromByteStream(
|
|
|
|
resolver, bytestream, NULL, MF_RESOLUTION_MEDIASOURCE, NULL,
|
|
|
|
NULL, (IUnknown **)&mediasource);
|
|
|
|
ok(hr == E_POINTER, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFSourceResolver_CreateObjectFromByteStream(
|
|
|
|
resolver, bytestream, NULL, MF_RESOLUTION_MEDIASOURCE, NULL,
|
|
|
|
&obj_type, NULL);
|
|
|
|
ok(hr == E_POINTER, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFSourceResolver_CreateObjectFromByteStream(
|
|
|
|
resolver, bytestream, NULL, MF_RESOLUTION_MEDIASOURCE, NULL,
|
|
|
|
&obj_type, (IUnknown **)&mediasource);
|
|
|
|
todo_wine ok(hr == MF_E_UNSUPPORTED_BYTESTREAM_TYPE, "got 0x%08x\n", hr);
|
|
|
|
if (hr == S_OK) IMFMediaSource_Release(mediasource);
|
|
|
|
|
|
|
|
hr = IMFSourceResolver_CreateObjectFromByteStream(
|
|
|
|
resolver, bytestream, NULL, MF_RESOLUTION_BYTESTREAM, NULL,
|
|
|
|
&obj_type, (IUnknown **)&mediasource);
|
|
|
|
todo_wine ok(hr == MF_E_UNSUPPORTED_BYTESTREAM_TYPE, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
IMFByteStream_Release(bytestream);
|
|
|
|
|
|
|
|
/* We have to create a new bytestream here, because all following
|
|
|
|
* calls to CreateObjectFromByteStream will fail. */
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_READ, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, filename, &bytestream);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IUnknown_QueryInterface(bytestream, &IID_IMFAttributes,
|
|
|
|
(void **)&attributes);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
hr = IMFAttributes_SetString(attributes, &MF_BYTESTREAM_CONTENT_TYPE, file_type);
|
|
|
|
todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
IMFAttributes_Release(attributes);
|
|
|
|
|
|
|
|
hr = IMFSourceResolver_CreateObjectFromByteStream(
|
|
|
|
resolver, bytestream, NULL, MF_RESOLUTION_MEDIASOURCE, NULL,
|
|
|
|
&obj_type, (IUnknown **)&mediasource);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(mediasource != NULL, "got %p\n", mediasource);
|
|
|
|
ok(obj_type == MF_OBJECT_MEDIASOURCE, "got %d\n", obj_type);
|
|
|
|
|
2018-11-25 20:45:05 +01:00
|
|
|
hr = IMFMediaSource_CreatePresentationDescriptor(
|
|
|
|
mediasource, &descriptor);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(descriptor != NULL, "got %p\n", descriptor);
|
|
|
|
|
|
|
|
IMFPresentationDescriptor_Release(descriptor);
|
2018-11-22 21:00:45 +01:00
|
|
|
IMFMediaSource_Release(mediasource);
|
|
|
|
IMFByteStream_Release(bytestream);
|
|
|
|
|
|
|
|
IMFSourceResolver_Release(resolver);
|
|
|
|
|
|
|
|
MFShutdown();
|
|
|
|
|
|
|
|
DeleteFileW(filename);
|
2017-05-28 13:42:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void init_functions(void)
|
|
|
|
{
|
|
|
|
HMODULE mod = GetModuleHandleA("mfplat.dll");
|
|
|
|
|
|
|
|
#define X(f) if (!(p##f = (void*)GetProcAddress(mod, #f))) return;
|
2019-02-19 14:20:06 +01:00
|
|
|
X(MFCopyImage);
|
2017-05-28 13:42:48 +02:00
|
|
|
X(MFCreateSourceResolver);
|
2018-09-07 02:58:39 +02:00
|
|
|
X(MFCreateMFByteStreamOnStream);
|
2018-09-07 02:58:41 +02:00
|
|
|
X(MFCreateMemoryBuffer);
|
2019-02-22 08:36:54 +01:00
|
|
|
X(MFHeapAlloc);
|
|
|
|
X(MFHeapFree);
|
2017-05-28 13:42:48 +02:00
|
|
|
#undef X
|
|
|
|
}
|
2017-05-09 00:51:01 +02:00
|
|
|
|
2017-06-27 03:46:38 +02:00
|
|
|
static void test_MFCreateMediaType(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
IMFMediaType *mediatype;
|
|
|
|
|
|
|
|
if(0)
|
|
|
|
{
|
|
|
|
/* Crash on Windows Vista/7 */
|
|
|
|
hr = MFCreateMediaType(NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "got 0x%08x\n", hr);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = MFCreateMediaType(&mediatype);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaType_SetGUID(mediatype, &MF_MT_MAJOR_TYPE, &MFMediaType_Video);
|
|
|
|
todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
IMFMediaType_Release(mediatype);
|
|
|
|
}
|
|
|
|
|
2018-11-13 23:20:45 +01:00
|
|
|
static void test_MFCreateMediaEvent(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
IMFMediaEvent *mediaevent;
|
|
|
|
|
|
|
|
MediaEventType type;
|
|
|
|
GUID extended_type;
|
|
|
|
HRESULT status;
|
|
|
|
PROPVARIANT value;
|
|
|
|
|
|
|
|
PropVariantInit(&value);
|
|
|
|
value.vt = VT_UNKNOWN;
|
|
|
|
|
|
|
|
hr = MFCreateMediaEvent(MEError, &GUID_NULL, E_FAIL, &value, &mediaevent);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
PropVariantClear(&value);
|
|
|
|
|
|
|
|
hr = IMFMediaEvent_GetType(mediaevent, &type);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(type == MEError, "got %#x\n", type);
|
|
|
|
|
|
|
|
hr = IMFMediaEvent_GetExtendedType(mediaevent, &extended_type);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(IsEqualGUID(&extended_type, &GUID_NULL), "got %s\n",
|
|
|
|
wine_dbgstr_guid(&extended_type));
|
|
|
|
|
|
|
|
hr = IMFMediaEvent_GetStatus(mediaevent, &status);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(status == E_FAIL, "got 0x%08x\n", status);
|
|
|
|
|
|
|
|
PropVariantInit(&value);
|
|
|
|
hr = IMFMediaEvent_GetValue(mediaevent, &value);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(value.vt == VT_UNKNOWN, "got %#x\n", value.vt);
|
|
|
|
PropVariantClear(&value);
|
|
|
|
|
|
|
|
IMFMediaEvent_Release(mediaevent);
|
|
|
|
|
|
|
|
hr = MFCreateMediaEvent(MEUnknown, &DUMMY_GUID1, S_OK, NULL, &mediaevent);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaEvent_GetType(mediaevent, &type);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(type == MEUnknown, "got %#x\n", type);
|
|
|
|
|
|
|
|
hr = IMFMediaEvent_GetExtendedType(mediaevent, &extended_type);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(IsEqualGUID(&extended_type, &DUMMY_GUID1), "got %s\n",
|
|
|
|
wine_dbgstr_guid(&extended_type));
|
|
|
|
|
|
|
|
hr = IMFMediaEvent_GetStatus(mediaevent, &status);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(status == S_OK, "got 0x%08x\n", status);
|
|
|
|
|
|
|
|
PropVariantInit(&value);
|
|
|
|
hr = IMFMediaEvent_GetValue(mediaevent, &value);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(value.vt == VT_EMPTY, "got %#x\n", value.vt);
|
|
|
|
PropVariantClear(&value);
|
|
|
|
|
|
|
|
IMFMediaEvent_Release(mediaevent);
|
|
|
|
}
|
|
|
|
|
2017-07-12 07:22:19 +02:00
|
|
|
static void test_MFCreateAttributes(void)
|
|
|
|
{
|
|
|
|
IMFAttributes *attributes;
|
|
|
|
HRESULT hr;
|
|
|
|
UINT32 count;
|
|
|
|
|
|
|
|
hr = MFCreateAttributes( &attributes, 3 );
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
count = 88;
|
|
|
|
hr = IMFAttributes_GetCount(attributes, &count);
|
|
|
|
todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(count == 0, "got %d\n", count);
|
|
|
|
|
|
|
|
hr = IMFAttributes_SetUINT32(attributes, &MF_READWRITE_ENABLE_HARDWARE_TRANSFORMS, 0);
|
|
|
|
todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFAttributes_GetCount(attributes, &count);
|
|
|
|
todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
todo_wine ok(count == 1, "got %d\n", count);
|
|
|
|
|
|
|
|
IMFAttributes_Release(attributes);
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:58:39 +02:00
|
|
|
static void test_MFCreateMFByteStreamOnStream(void)
|
|
|
|
{
|
|
|
|
IMFByteStream *bytestream;
|
2018-11-03 22:25:07 +01:00
|
|
|
IMFByteStream *bytestream2;
|
2018-09-07 02:58:39 +02:00
|
|
|
IStream *stream;
|
2018-11-03 22:25:07 +01:00
|
|
|
IMFAttributes *attributes = NULL;
|
|
|
|
IUnknown *unknown;
|
2018-09-07 02:58:39 +02:00
|
|
|
HRESULT hr;
|
2018-11-03 22:25:07 +01:00
|
|
|
ULONG ref;
|
2018-09-07 02:58:39 +02:00
|
|
|
|
|
|
|
if(!pMFCreateMFByteStreamOnStream)
|
|
|
|
{
|
|
|
|
win_skip("MFCreateMFByteStreamOnStream() not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = CreateStreamOnHGlobal(NULL, TRUE, &stream);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
2018-11-03 22:25:07 +01:00
|
|
|
hr = pMFCreateMFByteStreamOnStream(stream, &bytestream);
|
2018-09-07 02:58:39 +02:00
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
2018-11-08 04:37:18 +01:00
|
|
|
hr = IMFByteStream_QueryInterface(bytestream, &IID_IUnknown,
|
2018-11-03 22:25:07 +01:00
|
|
|
(void **)&unknown);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok((void *)unknown == (void *)bytestream, "got %p\n", unknown);
|
|
|
|
ref = IUnknown_Release(unknown);
|
|
|
|
ok(ref == 1, "got %u\n", ref);
|
|
|
|
|
|
|
|
hr = IUnknown_QueryInterface(unknown, &IID_IMFByteStream,
|
|
|
|
(void **)&bytestream2);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(bytestream2 == bytestream, "got %p\n", bytestream2);
|
|
|
|
ref = IMFByteStream_Release(bytestream2);
|
|
|
|
ok(ref == 1, "got %u\n", ref);
|
|
|
|
|
2018-11-08 04:37:18 +01:00
|
|
|
hr = IMFByteStream_QueryInterface(bytestream, &IID_IMFAttributes,
|
2018-11-03 22:25:07 +01:00
|
|
|
(void **)&attributes);
|
|
|
|
ok(hr == S_OK ||
|
|
|
|
/* w7pro64 */
|
|
|
|
broken(hr == E_NOINTERFACE), "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
if (hr != S_OK)
|
|
|
|
{
|
|
|
|
win_skip("Can not retrieve IMFAttributes interface from IMFByteStream\n");
|
|
|
|
IStream_Release(stream);
|
|
|
|
IMFByteStream_Release(bytestream);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(attributes != NULL, "got NULL\n");
|
|
|
|
|
2018-11-08 04:37:18 +01:00
|
|
|
hr = IMFAttributes_QueryInterface(attributes, &IID_IUnknown,
|
2018-11-03 22:25:07 +01:00
|
|
|
(void **)&unknown);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok((void *)unknown == (void *)bytestream, "got %p\n", unknown);
|
|
|
|
ref = IUnknown_Release(unknown);
|
|
|
|
ok(ref == 2, "got %u\n", ref);
|
|
|
|
|
2018-11-08 04:37:18 +01:00
|
|
|
hr = IMFAttributes_QueryInterface(attributes, &IID_IMFByteStream,
|
2018-11-03 22:25:07 +01:00
|
|
|
(void **)&bytestream2);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(bytestream2 == bytestream, "got %p\n", bytestream2);
|
|
|
|
ref = IMFByteStream_Release(bytestream2);
|
|
|
|
ok(ref == 2, "got %u\n", ref);
|
|
|
|
|
|
|
|
IMFAttributes_Release(attributes);
|
2018-09-07 02:58:39 +02:00
|
|
|
IMFByteStream_Release(bytestream);
|
2018-11-03 22:25:07 +01:00
|
|
|
IStream_Release(stream);
|
2018-09-07 02:58:39 +02:00
|
|
|
}
|
2017-06-27 03:46:38 +02:00
|
|
|
|
2018-11-03 22:25:08 +01:00
|
|
|
static void test_MFCreateFile(void)
|
|
|
|
{
|
|
|
|
IMFByteStream *bytestream;
|
|
|
|
IMFByteStream *bytestream2;
|
|
|
|
IMFAttributes *attributes = NULL;
|
|
|
|
HRESULT hr;
|
|
|
|
WCHAR *filename;
|
|
|
|
|
|
|
|
static const WCHAR newfilename[] = {'n','e','w','.','m','p','4',0};
|
|
|
|
|
|
|
|
filename = load_resource(mp4file);
|
|
|
|
|
|
|
|
hr = MFStartup(MF_VERSION, MFSTARTUP_FULL);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_READ, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, filename, &bytestream);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
2018-11-08 04:37:18 +01:00
|
|
|
hr = IMFByteStream_QueryInterface(bytestream, &IID_IMFAttributes,
|
2018-11-03 22:25:08 +01:00
|
|
|
(void **)&attributes);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(attributes != NULL, "got NULL\n");
|
|
|
|
IMFAttributes_Release(attributes);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_READ, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, filename, &bytestream2);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
IMFByteStream_Release(bytestream2);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_WRITE, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, filename, &bytestream2);
|
|
|
|
todo_wine ok(hr == HRESULT_FROM_WIN32(ERROR_SHARING_VIOLATION), "got 0x%08x\n", hr);
|
|
|
|
if (hr == S_OK) IMFByteStream_Release(bytestream2);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_READWRITE, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, filename, &bytestream2);
|
|
|
|
todo_wine ok(hr == HRESULT_FROM_WIN32(ERROR_SHARING_VIOLATION), "got 0x%08x\n", hr);
|
|
|
|
if (hr == S_OK) IMFByteStream_Release(bytestream2);
|
|
|
|
|
|
|
|
IMFByteStream_Release(bytestream);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_READ, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, newfilename, &bytestream);
|
|
|
|
ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_WRITE, MF_OPENMODE_FAIL_IF_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, filename, &bytestream);
|
|
|
|
ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_EXISTS), "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_WRITE, MF_OPENMODE_FAIL_IF_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, newfilename, &bytestream);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_READ, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, newfilename, &bytestream2);
|
|
|
|
todo_wine ok(hr == HRESULT_FROM_WIN32(ERROR_SHARING_VIOLATION), "got 0x%08x\n", hr);
|
|
|
|
if (hr == S_OK) IMFByteStream_Release(bytestream2);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_WRITE, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_NONE, newfilename, &bytestream2);
|
|
|
|
todo_wine ok(hr == HRESULT_FROM_WIN32(ERROR_SHARING_VIOLATION), "got 0x%08x\n", hr);
|
|
|
|
if (hr == S_OK) IMFByteStream_Release(bytestream2);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_WRITE, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_ALLOW_WRITE_SHARING, newfilename, &bytestream2);
|
|
|
|
todo_wine ok(hr == HRESULT_FROM_WIN32(ERROR_SHARING_VIOLATION), "got 0x%08x\n", hr);
|
|
|
|
if (hr == S_OK) IMFByteStream_Release(bytestream2);
|
|
|
|
|
|
|
|
IMFByteStream_Release(bytestream);
|
|
|
|
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_WRITE, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_ALLOW_WRITE_SHARING, newfilename, &bytestream);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
/* Opening the file again fails even though MF_FILEFLAGS_ALLOW_WRITE_SHARING is set. */
|
|
|
|
hr = MFCreateFile(MF_ACCESSMODE_WRITE, MF_OPENMODE_FAIL_IF_NOT_EXIST,
|
|
|
|
MF_FILEFLAGS_ALLOW_WRITE_SHARING, newfilename, &bytestream2);
|
|
|
|
todo_wine ok(hr == HRESULT_FROM_WIN32(ERROR_SHARING_VIOLATION), "got 0x%08x\n", hr);
|
|
|
|
if (hr == S_OK) IMFByteStream_Release(bytestream2);
|
|
|
|
|
|
|
|
IMFByteStream_Release(bytestream);
|
|
|
|
|
|
|
|
MFShutdown();
|
|
|
|
|
|
|
|
DeleteFileW(filename);
|
|
|
|
DeleteFileW(newfilename);
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:58:41 +02:00
|
|
|
static void test_MFCreateMemoryBuffer(void)
|
|
|
|
{
|
|
|
|
IMFMediaBuffer *buffer;
|
|
|
|
HRESULT hr;
|
|
|
|
DWORD length, max;
|
|
|
|
BYTE *data, *data2;
|
|
|
|
|
|
|
|
if(!pMFCreateMemoryBuffer)
|
|
|
|
{
|
|
|
|
win_skip("MFCreateMemoryBuffer() not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = pMFCreateMemoryBuffer(1024, NULL);
|
|
|
|
ok(hr == E_INVALIDARG || hr == E_POINTER, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = pMFCreateMemoryBuffer(0, &buffer);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
if(buffer)
|
|
|
|
{
|
|
|
|
hr = IMFMediaBuffer_GetMaxLength(buffer, &length);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(length == 0, "got %u\n", length);
|
|
|
|
|
|
|
|
IMFMediaBuffer_Release(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = pMFCreateMemoryBuffer(1024, &buffer);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_GetMaxLength(buffer, NULL);
|
|
|
|
ok(hr == E_INVALIDARG || hr == E_POINTER, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_GetMaxLength(buffer, &length);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(length == 1024, "got %u\n", length);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_SetCurrentLength(buffer, 1025);
|
|
|
|
ok(hr == E_INVALIDARG, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_SetCurrentLength(buffer, 10);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_GetCurrentLength(buffer, NULL);
|
|
|
|
ok(hr == E_INVALIDARG || hr == E_POINTER, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_GetCurrentLength(buffer, &length);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(length == 10, "got %u\n", length);
|
|
|
|
|
|
|
|
length = 0;
|
|
|
|
max = 0;
|
|
|
|
hr = IMFMediaBuffer_Lock(buffer, NULL, &length, &max);
|
|
|
|
ok(hr == E_INVALIDARG || hr == E_POINTER, "got 0x%08x\n", hr);
|
|
|
|
ok(length == 0, "got %u\n", length);
|
|
|
|
ok(max == 0, "got %u\n", length);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_Lock(buffer, &data, &max, &length);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(length == 10, "got %u\n", length);
|
|
|
|
ok(max == 1024, "got %u\n", max);
|
|
|
|
|
|
|
|
/* Attempt to lock the bufer twice */
|
|
|
|
hr = IMFMediaBuffer_Lock(buffer, &data2, &max, &length);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(data == data2, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_Unlock(buffer);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_Unlock(buffer);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_Lock(buffer, &data, NULL, NULL);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFMediaBuffer_Unlock(buffer);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
/* Extra Unlock */
|
|
|
|
hr = IMFMediaBuffer_Unlock(buffer);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
IMFMediaBuffer_Release(buffer);
|
|
|
|
}
|
|
|
|
|
2018-09-13 01:52:11 +02:00
|
|
|
static void test_MFSample(void)
|
|
|
|
{
|
|
|
|
IMFSample *sample;
|
|
|
|
HRESULT hr;
|
|
|
|
UINT32 count;
|
|
|
|
|
|
|
|
hr = MFCreateSample( &sample );
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMFSample_GetBufferCount(sample, &count);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
|
|
|
ok(count == 0, "got %d\n", count);
|
|
|
|
|
|
|
|
IMFSample_Release(sample);
|
|
|
|
}
|
|
|
|
|
2019-02-18 14:24:09 +01:00
|
|
|
static HRESULT WINAPI testcallback_QueryInterface(IMFAsyncCallback *iface, REFIID riid, void **obj)
|
|
|
|
{
|
|
|
|
if (IsEqualIID(riid, &IID_IMFAsyncCallback) ||
|
|
|
|
IsEqualIID(riid, &IID_IUnknown))
|
|
|
|
{
|
|
|
|
*obj = iface;
|
|
|
|
IMFAsyncCallback_AddRef(iface);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*obj = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI testcallback_AddRef(IMFAsyncCallback *iface)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI testcallback_Release(IMFAsyncCallback *iface)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI testcallback_GetParameters(IMFAsyncCallback *iface, DWORD *flags, DWORD *queue)
|
|
|
|
{
|
|
|
|
ok(0, "Unexpected call.\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI testcallback_Invoke(IMFAsyncCallback *iface, IMFAsyncResult *result)
|
|
|
|
{
|
|
|
|
ok(0, "Unexpected call.\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IMFAsyncCallbackVtbl testcallbackvtbl =
|
|
|
|
{
|
|
|
|
testcallback_QueryInterface,
|
|
|
|
testcallback_AddRef,
|
|
|
|
testcallback_Release,
|
|
|
|
testcallback_GetParameters,
|
|
|
|
testcallback_Invoke,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void test_MFCreateAsyncResult(void)
|
|
|
|
{
|
|
|
|
IMFAsyncCallback callback = { &testcallbackvtbl };
|
|
|
|
IMFAsyncResult *result, *result2;
|
|
|
|
IUnknown *state, *object;
|
|
|
|
MFASYNCRESULT *data;
|
|
|
|
ULONG refcount;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = MFCreateAsyncResult(NULL, NULL, NULL, NULL);
|
|
|
|
ok(FAILED(hr), "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFCreateAsyncResult(NULL, NULL, NULL, &result);
|
|
|
|
ok(hr == S_OK, "Failed to create object, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
data = (MFASYNCRESULT *)result;
|
|
|
|
ok(data->pCallback == NULL, "Unexpected callback value.\n");
|
|
|
|
ok(data->hrStatusResult == S_OK, "Unexpected status %#x.\n", data->hrStatusResult);
|
|
|
|
ok(data->dwBytesTransferred == 0, "Unexpected byte length %u.\n", data->dwBytesTransferred);
|
|
|
|
ok(data->hEvent == NULL, "Unexpected event.\n");
|
|
|
|
|
|
|
|
hr = IMFAsyncResult_GetState(result, NULL);
|
|
|
|
ok(hr == E_POINTER, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
state = (void *)0xdeadbeef;
|
|
|
|
hr = IMFAsyncResult_GetState(result, &state);
|
|
|
|
ok(hr == E_POINTER, "Unexpected hr %#x.\n", hr);
|
|
|
|
ok(state == (void *)0xdeadbeef, "Unexpected state.\n");
|
|
|
|
|
|
|
|
hr = IMFAsyncResult_GetStatus(result);
|
|
|
|
ok(hr == S_OK, "Unexpected status %#x.\n", hr);
|
|
|
|
|
|
|
|
data->hrStatusResult = 123;
|
|
|
|
hr = IMFAsyncResult_GetStatus(result);
|
|
|
|
ok(hr == 123, "Unexpected status %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = IMFAsyncResult_SetStatus(result, E_FAIL);
|
|
|
|
ok(hr == S_OK, "Failed to set status, hr %#x.\n", hr);
|
|
|
|
ok(data->hrStatusResult == E_FAIL, "Unexpected status %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = IMFAsyncResult_GetObject(result, NULL);
|
|
|
|
ok(hr == E_POINTER, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
object = (void *)0xdeadbeef;
|
|
|
|
hr = IMFAsyncResult_GetObject(result, &object);
|
|
|
|
ok(hr == E_POINTER, "Failed to get object, hr %#x.\n", hr);
|
|
|
|
ok(object == (void *)0xdeadbeef, "Unexpected object.\n");
|
|
|
|
|
|
|
|
state = IMFAsyncResult_GetStateNoAddRef(result);
|
|
|
|
ok(state == NULL, "Unexpected state.\n");
|
|
|
|
|
|
|
|
/* Object. */
|
|
|
|
hr = MFCreateAsyncResult((IUnknown *)result, &callback, NULL, &result2);
|
|
|
|
ok(hr == S_OK, "Failed to create object, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
data = (MFASYNCRESULT *)result2;
|
|
|
|
ok(data->pCallback == &callback, "Unexpected callback value.\n");
|
|
|
|
ok(data->hrStatusResult == S_OK, "Unexpected status %#x.\n", data->hrStatusResult);
|
|
|
|
ok(data->dwBytesTransferred == 0, "Unexpected byte length %u.\n", data->dwBytesTransferred);
|
|
|
|
ok(data->hEvent == NULL, "Unexpected event.\n");
|
|
|
|
|
|
|
|
object = NULL;
|
|
|
|
hr = IMFAsyncResult_GetObject(result2, &object);
|
|
|
|
ok(hr == S_OK, "Failed to get object, hr %#x.\n", hr);
|
|
|
|
ok(object == (IUnknown *)result, "Unexpected object.\n");
|
|
|
|
IUnknown_Release(object);
|
|
|
|
|
|
|
|
IMFAsyncResult_Release(result2);
|
|
|
|
|
|
|
|
/* State object. */
|
|
|
|
hr = MFCreateAsyncResult(NULL, &callback, (IUnknown *)result, &result2);
|
|
|
|
ok(hr == S_OK, "Failed to create object, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
data = (MFASYNCRESULT *)result2;
|
|
|
|
ok(data->pCallback == &callback, "Unexpected callback value.\n");
|
|
|
|
ok(data->hrStatusResult == S_OK, "Unexpected status %#x.\n", data->hrStatusResult);
|
|
|
|
ok(data->dwBytesTransferred == 0, "Unexpected byte length %u.\n", data->dwBytesTransferred);
|
|
|
|
ok(data->hEvent == NULL, "Unexpected event.\n");
|
|
|
|
|
|
|
|
state = NULL;
|
|
|
|
hr = IMFAsyncResult_GetState(result2, &state);
|
|
|
|
ok(hr == S_OK, "Failed to get state object, hr %#x.\n", hr);
|
|
|
|
ok(state == (IUnknown *)result, "Unexpected state.\n");
|
|
|
|
IUnknown_Release(state);
|
|
|
|
|
|
|
|
state = IMFAsyncResult_GetStateNoAddRef(result2);
|
|
|
|
ok(state == (IUnknown *)result, "Unexpected state.\n");
|
|
|
|
|
|
|
|
refcount = IMFAsyncResult_Release(result2);
|
|
|
|
ok(!refcount, "Unexpected refcount %u\n.", refcount);
|
|
|
|
refcount = IMFAsyncResult_Release(result);
|
|
|
|
ok(!refcount, "Unexpected refcount %u\n.", refcount);
|
|
|
|
}
|
|
|
|
|
2019-02-19 14:20:03 +01:00
|
|
|
static void test_startup(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = MFStartup(MAKELONG(MF_API_VERSION, 0xdead), MFSTARTUP_FULL);
|
|
|
|
ok(hr == MF_E_BAD_STARTUP_VERSION, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFStartup(MF_VERSION, MFSTARTUP_FULL);
|
|
|
|
ok(hr == S_OK, "Failed to start up, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFShutdown();
|
|
|
|
ok(hr == S_OK, "Failed to shutdown, hr %#x.\n", hr);
|
|
|
|
}
|
|
|
|
|
2019-02-19 14:20:05 +01:00
|
|
|
static void test_allocate_queue(void)
|
|
|
|
{
|
|
|
|
DWORD queue, queue2;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = MFStartup(MF_VERSION, MFSTARTUP_FULL);
|
|
|
|
ok(hr == S_OK, "Failed to start up, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFAllocateWorkQueue(&queue);
|
|
|
|
ok(hr == S_OK, "Failed to allocate a queue, hr %#x.\n", hr);
|
|
|
|
ok(queue & MFASYNC_CALLBACK_QUEUE_PRIVATE_MASK, "Unexpected queue id.\n");
|
|
|
|
|
|
|
|
hr = MFUnlockWorkQueue(queue);
|
|
|
|
ok(hr == S_OK, "Failed to unlock the queue, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFUnlockWorkQueue(queue);
|
|
|
|
ok(FAILED(hr), "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFAllocateWorkQueue(&queue2);
|
|
|
|
ok(hr == S_OK, "Failed to allocate a queue, hr %#x.\n", hr);
|
|
|
|
ok(queue2 & MFASYNC_CALLBACK_QUEUE_PRIVATE_MASK, "Unexpected queue id.\n");
|
|
|
|
|
|
|
|
hr = MFUnlockWorkQueue(queue2);
|
|
|
|
ok(hr == S_OK, "Failed to unlock the queue, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
/* Unlock in system queue range. */
|
|
|
|
hr = MFUnlockWorkQueue(MFASYNC_CALLBACK_QUEUE_STANDARD);
|
|
|
|
ok(hr == S_OK, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFUnlockWorkQueue(MFASYNC_CALLBACK_QUEUE_UNDEFINED);
|
|
|
|
ok(hr == S_OK, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFUnlockWorkQueue(0x20);
|
|
|
|
ok(hr == S_OK, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFShutdown();
|
|
|
|
ok(hr == S_OK, "Failed to shutdown, hr %#x.\n", hr);
|
|
|
|
}
|
|
|
|
|
2019-02-19 14:20:06 +01:00
|
|
|
static void test_MFCopyImage(void)
|
|
|
|
{
|
|
|
|
BYTE dest[16], src[16];
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if (!pMFCopyImage)
|
|
|
|
{
|
|
|
|
win_skip("MFCopyImage() is not available.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(dest, 0xaa, sizeof(dest));
|
|
|
|
memset(src, 0x11, sizeof(src));
|
|
|
|
|
|
|
|
hr = pMFCopyImage(dest, 8, src, 8, 4, 1);
|
|
|
|
ok(hr == S_OK, "Failed to copy image %#x.\n", hr);
|
|
|
|
ok(!memcmp(dest, src, 4) && dest[4] == 0xaa, "Unexpected buffer contents.\n");
|
|
|
|
|
|
|
|
memset(dest, 0xaa, sizeof(dest));
|
|
|
|
memset(src, 0x11, sizeof(src));
|
|
|
|
|
|
|
|
hr = pMFCopyImage(dest, 8, src, 8, 16, 1);
|
|
|
|
ok(hr == S_OK, "Failed to copy image %#x.\n", hr);
|
|
|
|
ok(!memcmp(dest, src, 16), "Unexpected buffer contents.\n");
|
|
|
|
|
|
|
|
memset(dest, 0xaa, sizeof(dest));
|
|
|
|
memset(src, 0x11, sizeof(src));
|
|
|
|
|
|
|
|
hr = pMFCopyImage(dest, 8, src, 8, 8, 2);
|
|
|
|
ok(hr == S_OK, "Failed to copy image %#x.\n", hr);
|
|
|
|
ok(!memcmp(dest, src, 16), "Unexpected buffer contents.\n");
|
|
|
|
}
|
|
|
|
|
2019-02-22 08:36:52 +01:00
|
|
|
static void test_MFCreateCollection(void)
|
|
|
|
{
|
|
|
|
IMFCollection *collection;
|
|
|
|
IUnknown *element;
|
|
|
|
DWORD count;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = MFCreateCollection(NULL);
|
|
|
|
ok(hr == E_POINTER, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = MFCreateCollection(&collection);
|
|
|
|
ok(hr == S_OK, "Failed to create collection, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = IMFCollection_GetElementCount(collection, NULL);
|
|
|
|
ok(hr == E_POINTER, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
count = 1;
|
|
|
|
hr = IMFCollection_GetElementCount(collection, &count);
|
|
|
|
ok(hr == S_OK, "Failed to get element count, hr %#x.\n", hr);
|
|
|
|
ok(count == 0, "Unexpected count %u.\n", count);
|
|
|
|
|
|
|
|
hr = IMFCollection_GetElement(collection, 0, NULL);
|
|
|
|
ok(hr == E_POINTER, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
element = (void *)0xdeadbeef;
|
|
|
|
hr = IMFCollection_GetElement(collection, 0, &element);
|
|
|
|
ok(hr == E_INVALIDARG, "Unexpected hr %#x.\n", hr);
|
|
|
|
ok(element == (void *)0xdeadbeef, "Unexpected pointer.\n");
|
|
|
|
|
|
|
|
hr = IMFCollection_RemoveElement(collection, 0, NULL);
|
|
|
|
ok(hr == E_POINTER, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
element = (void *)0xdeadbeef;
|
|
|
|
hr = IMFCollection_RemoveElement(collection, 0, &element);
|
|
|
|
ok(hr == E_INVALIDARG, "Failed to remove element, hr %#x.\n", hr);
|
|
|
|
ok(element == (void *)0xdeadbeef, "Unexpected pointer.\n");
|
|
|
|
|
|
|
|
hr = IMFCollection_RemoveAllElements(collection);
|
|
|
|
ok(hr == S_OK, "Failed to clear, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = IMFCollection_AddElement(collection, (IUnknown *)collection);
|
|
|
|
ok(hr == S_OK, "Failed to add element, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
hr = IMFCollection_GetElementCount(collection, &count);
|
|
|
|
ok(hr == S_OK, "Failed to get element count, hr %#x.\n", hr);
|
|
|
|
ok(count == 1, "Unexpected count %u.\n", count);
|
|
|
|
|
|
|
|
hr = IMFCollection_AddElement(collection, NULL);
|
|
|
|
ok(hr == S_OK, "Failed to add element, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
hr = IMFCollection_GetElementCount(collection, &count);
|
|
|
|
ok(hr == S_OK, "Failed to get element count, hr %#x.\n", hr);
|
|
|
|
ok(count == 2, "Unexpected count %u.\n", count);
|
|
|
|
|
|
|
|
hr = IMFCollection_InsertElementAt(collection, 10, (IUnknown *)collection);
|
|
|
|
ok(hr == S_OK, "Failed to insert element, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
hr = IMFCollection_GetElementCount(collection, &count);
|
|
|
|
ok(hr == S_OK, "Failed to get element count, hr %#x.\n", hr);
|
|
|
|
ok(count == 11, "Unexpected count %u.\n", count);
|
|
|
|
|
|
|
|
hr = IMFCollection_GetElement(collection, 0, &element);
|
|
|
|
ok(hr == S_OK, "Failed to get element, hr %#x.\n", hr);
|
|
|
|
ok(element == (IUnknown *)collection, "Unexpected element.\n");
|
|
|
|
IUnknown_Release(element);
|
|
|
|
|
|
|
|
hr = IMFCollection_GetElement(collection, 1, &element);
|
|
|
|
ok(hr == E_UNEXPECTED, "Unexpected hr %#x.\n", hr);
|
|
|
|
ok(!element, "Unexpected element.\n");
|
|
|
|
|
|
|
|
hr = IMFCollection_GetElement(collection, 2, &element);
|
|
|
|
ok(hr == E_UNEXPECTED, "Unexpected hr %#x.\n", hr);
|
|
|
|
ok(!element, "Unexpected element.\n");
|
|
|
|
|
|
|
|
hr = IMFCollection_GetElement(collection, 10, &element);
|
|
|
|
ok(hr == S_OK, "Failed to get element, hr %#x.\n", hr);
|
|
|
|
ok(element == (IUnknown *)collection, "Unexpected element.\n");
|
|
|
|
IUnknown_Release(element);
|
|
|
|
|
|
|
|
hr = IMFCollection_InsertElementAt(collection, 0, NULL);
|
|
|
|
ok(hr == S_OK, "Failed to insert element, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = IMFCollection_GetElement(collection, 0, &element);
|
|
|
|
ok(hr == E_UNEXPECTED, "Unexpected hr %#x.\n", hr);
|
|
|
|
|
|
|
|
hr = IMFCollection_RemoveAllElements(collection);
|
|
|
|
ok(hr == S_OK, "Failed to clear, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
count = 1;
|
|
|
|
hr = IMFCollection_GetElementCount(collection, &count);
|
|
|
|
ok(hr == S_OK, "Failed to get element count, hr %#x.\n", hr);
|
|
|
|
ok(count == 0, "Unexpected count %u.\n", count);
|
|
|
|
|
|
|
|
hr = IMFCollection_InsertElementAt(collection, 0, NULL);
|
|
|
|
ok(hr == S_OK, "Failed to insert element, hr %#x.\n", hr);
|
|
|
|
|
|
|
|
IMFCollection_Release(collection);
|
|
|
|
}
|
|
|
|
|
2019-02-22 08:36:54 +01:00
|
|
|
static void test_MFHeapAlloc(void)
|
|
|
|
{
|
|
|
|
void *res;
|
|
|
|
|
|
|
|
if (!pMFHeapAlloc)
|
|
|
|
{
|
|
|
|
win_skip("MFHeapAlloc() is not available.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = pMFHeapAlloc(16, 0, NULL, 0, eAllocationTypeIgnore);
|
|
|
|
ok(res != NULL, "MFHeapAlloc failed.\n");
|
|
|
|
|
|
|
|
pMFHeapFree(res);
|
|
|
|
}
|
|
|
|
|
2017-05-09 00:51:01 +02:00
|
|
|
START_TEST(mfplat)
|
|
|
|
{
|
|
|
|
CoInitialize(NULL);
|
|
|
|
|
2017-05-28 13:42:48 +02:00
|
|
|
init_functions();
|
|
|
|
|
2019-02-19 14:20:03 +01:00
|
|
|
test_startup();
|
2017-05-09 00:51:01 +02:00
|
|
|
test_register();
|
2017-06-27 03:46:38 +02:00
|
|
|
test_MFCreateMediaType();
|
2018-11-13 23:20:45 +01:00
|
|
|
test_MFCreateMediaEvent();
|
2017-07-12 07:22:19 +02:00
|
|
|
test_MFCreateAttributes();
|
2018-09-13 01:52:11 +02:00
|
|
|
test_MFSample();
|
2018-11-03 22:25:08 +01:00
|
|
|
test_MFCreateFile();
|
2018-09-07 02:58:39 +02:00
|
|
|
test_MFCreateMFByteStreamOnStream();
|
2018-09-07 02:58:41 +02:00
|
|
|
test_MFCreateMemoryBuffer();
|
2018-11-22 21:00:45 +01:00
|
|
|
test_source_resolver();
|
2019-02-18 14:24:09 +01:00
|
|
|
test_MFCreateAsyncResult();
|
2019-02-19 14:20:05 +01:00
|
|
|
test_allocate_queue();
|
2019-02-19 14:20:06 +01:00
|
|
|
test_MFCopyImage();
|
2019-02-22 08:36:52 +01:00
|
|
|
test_MFCreateCollection();
|
2019-02-22 08:36:54 +01:00
|
|
|
test_MFHeapAlloc();
|
2017-05-09 00:51:01 +02:00
|
|
|
|
|
|
|
CoUninitialize();
|
|
|
|
}
|