mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 20:19:26 +00:00
[QUARTZ_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70841
This commit is contained in:
parent
4e179c15ac
commit
d9ba4bf170
1 changed files with 21 additions and 0 deletions
|
@ -255,6 +255,7 @@ static void test_mediacontrol(void)
|
||||||
{
|
{
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
LONGLONG pos = 0xdeadbeef;
|
LONGLONG pos = 0xdeadbeef;
|
||||||
|
GUID format = GUID_NULL;
|
||||||
IMediaSeeking *seeking = NULL;
|
IMediaSeeking *seeking = NULL;
|
||||||
IMediaFilter *filter = NULL;
|
IMediaFilter *filter = NULL;
|
||||||
IMediaControl *control = NULL;
|
IMediaControl *control = NULL;
|
||||||
|
@ -282,6 +283,26 @@ static void test_mediacontrol(void)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
format = GUID_NULL;
|
||||||
|
hr = IMediaSeeking_GetTimeFormat(seeking, &format);
|
||||||
|
ok(hr == S_OK, "GetTimeFormat failed: %08x\n", hr);
|
||||||
|
ok(IsEqualGUID(&format, &TIME_FORMAT_MEDIA_TIME), "GetTimeFormat: unexpected format %s\n", wine_dbgstr_guid(&format));
|
||||||
|
|
||||||
|
pos = 0xdeadbeef;
|
||||||
|
hr = IMediaSeeking_ConvertTimeFormat(seeking, &pos, NULL, 0x123456789a, NULL);
|
||||||
|
ok(hr == S_OK, "ConvertTimeFormat failed: %08x\n", hr);
|
||||||
|
ok(pos == 0x123456789a, "ConvertTimeFormat: expected 123456789a, got (%x%08x)\n", (DWORD)(pos >> 32), (DWORD)pos);
|
||||||
|
|
||||||
|
pos = 0xdeadbeef;
|
||||||
|
hr = IMediaSeeking_ConvertTimeFormat(seeking, &pos, &TIME_FORMAT_MEDIA_TIME, 0x123456789a, NULL);
|
||||||
|
ok(hr == S_OK, "ConvertTimeFormat failed: %08x\n", hr);
|
||||||
|
ok(pos == 0x123456789a, "ConvertTimeFormat: expected 123456789a, got (%x%08x)\n", (DWORD)(pos >> 32), (DWORD)pos);
|
||||||
|
|
||||||
|
pos = 0xdeadbeef;
|
||||||
|
hr = IMediaSeeking_ConvertTimeFormat(seeking, &pos, NULL, 0x123456789a, &TIME_FORMAT_MEDIA_TIME);
|
||||||
|
ok(hr == S_OK, "ConvertTimeFormat failed: %08x\n", hr);
|
||||||
|
ok(pos == 0x123456789a, "ConvertTimeFormat: expected 123456789a, got (%x%08x)\n", (DWORD)(pos >> 32), (DWORD)pos);
|
||||||
|
|
||||||
hr = IMediaSeeking_GetCurrentPosition(seeking, &pos);
|
hr = IMediaSeeking_GetCurrentPosition(seeking, &pos);
|
||||||
ok(hr == S_OK, "GetCurrentPosition failed: %08x\n", hr);
|
ok(hr == S_OK, "GetCurrentPosition failed: %08x\n", hr);
|
||||||
ok(pos == 0, "Position != 0 (%x%08x)\n", (DWORD)(pos >> 32), (DWORD)pos);
|
ok(pos == 0, "Position != 0 (%x%08x)\n", (DWORD)(pos >> 32), (DWORD)pos);
|
||||||
|
|
Loading…
Reference in a new issue