2945 lines
104 KiB
C
2945 lines
104 KiB
C
/*
|
|
* Video Mixing Renderer 7 unit tests
|
|
*
|
|
* Copyright 2018 Zebediah Figura
|
|
*
|
|
* 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 <stdint.h>
|
|
#define COBJMACROS
|
|
#include "dshow.h"
|
|
#include "d3d9.h"
|
|
#include "vmr9.h"
|
|
#include "wine/heap.h"
|
|
#include "wine/strmbase.h"
|
|
#include "wine/test.h"
|
|
|
|
static IBaseFilter *create_vmr7(DWORD mode)
|
|
{
|
|
IBaseFilter *filter = NULL;
|
|
IVMRFilterConfig *config;
|
|
HRESULT hr = CoCreateInstance(&CLSID_VideoMixingRenderer, NULL, CLSCTX_INPROC_SERVER,
|
|
&IID_IBaseFilter, (void **)&filter);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
if (mode)
|
|
{
|
|
hr = IBaseFilter_QueryInterface(filter, &IID_IVMRFilterConfig, (void **)&config);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IVMRFilterConfig_SetRenderingMode(config, mode);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IVMRFilterConfig_Release(config);
|
|
}
|
|
return filter;
|
|
}
|
|
|
|
static HRESULT set_mixing_mode(IBaseFilter *filter)
|
|
{
|
|
IVMRFilterConfig *config;
|
|
HRESULT hr;
|
|
|
|
hr = IBaseFilter_QueryInterface(filter, &IID_IVMRFilterConfig, (void **)&config);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_SetNumberOfStreams(config, 2);
|
|
todo_wine ok(hr == VFW_E_DDRAW_CAPS_NOT_SUITABLE || hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
IVMRFilterConfig_Release(config);
|
|
return hr;
|
|
}
|
|
|
|
static inline BOOL compare_media_types(const AM_MEDIA_TYPE *a, const AM_MEDIA_TYPE *b)
|
|
{
|
|
return !memcmp(a, b, offsetof(AM_MEDIA_TYPE, pbFormat))
|
|
&& !memcmp(a->pbFormat, b->pbFormat, a->cbFormat);
|
|
}
|
|
|
|
static BOOL compare_double(double f, double g, unsigned int ulps)
|
|
{
|
|
uint64_t x = *(ULONGLONG *)&f;
|
|
uint64_t y = *(ULONGLONG *)&g;
|
|
|
|
if (f < 0)
|
|
x = ~x + 1;
|
|
else
|
|
x |= ((ULONGLONG)1)<<63;
|
|
if (g < 0)
|
|
y = ~y + 1;
|
|
else
|
|
y |= ((ULONGLONG)1)<<63;
|
|
|
|
return (x>y ? x-y : y-x) <= ulps;
|
|
}
|
|
|
|
static IFilterGraph2 *create_graph(void)
|
|
{
|
|
IFilterGraph2 *ret;
|
|
HRESULT hr;
|
|
hr = CoCreateInstance(&CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER, &IID_IFilterGraph2, (void **)&ret);
|
|
ok(hr == S_OK, "Failed to create FilterGraph: %#x\n", hr);
|
|
return ret;
|
|
}
|
|
|
|
static ULONG get_refcount(void *iface)
|
|
{
|
|
IUnknown *unknown = iface;
|
|
IUnknown_AddRef(unknown);
|
|
return IUnknown_Release(unknown);
|
|
}
|
|
|
|
static void test_filter_config(void)
|
|
{
|
|
IVMRFilterConfig *config;
|
|
DWORD count, mode;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
|
|
hr = CoCreateInstance(&CLSID_VideoMixingRenderer, NULL, CLSCTX_INPROC_SERVER,
|
|
&IID_IVMRFilterConfig, (void **)&config);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_GetRenderingMode(config, &mode);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(mode == VMRMode_Windowed, "Got mode %#x.\n", mode);
|
|
|
|
hr = IVMRFilterConfig_SetRenderingMode(config, VMRMode_Windowed);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_GetRenderingMode(config, &mode);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(mode == VMRMode_Windowed, "Got mode %#x.\n", mode);
|
|
|
|
hr = IVMRFilterConfig_SetRenderingMode(config, VMRMode_Windowed);
|
|
ok(hr == VFW_E_WRONG_STATE, "Got hr %#x.\n", hr);
|
|
|
|
ref = IVMRFilterConfig_Release(config);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
|
|
hr = CoCreateInstance(&CLSID_VideoMixingRenderer, NULL, CLSCTX_INPROC_SERVER,
|
|
&IID_IVMRFilterConfig, (void **)&config);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_SetRenderingMode(config, VMRMode_Windowless);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_GetRenderingMode(config, &mode);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(mode == VMRMode_Windowless, "Got mode %#x.\n", mode);
|
|
|
|
hr = IVMRFilterConfig_SetRenderingMode(config, VMRMode_Windowed);
|
|
ok(hr == VFW_E_WRONG_STATE, "Got hr %#x.\n", hr);
|
|
|
|
ref = IVMRFilterConfig_Release(config);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
|
|
hr = CoCreateInstance(&CLSID_VideoMixingRenderer, NULL, CLSCTX_INPROC_SERVER,
|
|
&IID_IVMRFilterConfig, (void **)&config);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_SetRenderingMode(config, VMRMode_Renderless);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_GetRenderingMode(config, &mode);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(mode == VMRMode_Renderless, "Got mode %#x.\n", mode);
|
|
|
|
hr = IVMRFilterConfig_SetRenderingMode(config, VMRMode_Windowless);
|
|
ok(hr == VFW_E_WRONG_STATE, "Got hr %#x.\n", hr);
|
|
|
|
ref = IVMRFilterConfig_Release(config);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
|
|
hr = CoCreateInstance(&CLSID_VideoMixingRenderer, NULL, CLSCTX_INPROC_SERVER,
|
|
&IID_IVMRFilterConfig, (void **)&config);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_GetNumberOfStreams(config, &count);
|
|
todo_wine ok(hr == VFW_E_VMR_NOT_IN_MIXER_MODE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_SetNumberOfStreams(config, 3);
|
|
if (hr != VFW_E_DDRAW_CAPS_NOT_SUITABLE)
|
|
{
|
|
todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_GetNumberOfStreams(config, &count);
|
|
todo_wine {
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(count == 3, "Got count %u.\n", count);
|
|
}
|
|
|
|
hr = IVMRFilterConfig_GetRenderingMode(config, &mode);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(mode == VMRMode_Windowed, "Got mode %#x.\n", mode);
|
|
|
|
/* Despite MSDN, you can still change the rendering mode after setting the
|
|
* stream count. */
|
|
hr = IVMRFilterConfig_SetRenderingMode(config, VMRMode_Windowless);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVMRFilterConfig_GetRenderingMode(config, &mode);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(mode == VMRMode_Windowless, "Got mode %#x.\n", mode);
|
|
|
|
hr = IVMRFilterConfig_GetNumberOfStreams(config, &count);
|
|
todo_wine {
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(count == 3, "Got count %u.\n", count);
|
|
}
|
|
}
|
|
else
|
|
skip("Mixing mode is not supported.\n");
|
|
|
|
ref = IVMRFilterConfig_Release(config);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
#define check_interface(a, b, c) check_interface_(__LINE__, a, b, c)
|
|
static void check_interface_(unsigned int line, void *iface_ptr, REFIID iid, BOOL supported)
|
|
{
|
|
IUnknown *iface = iface_ptr;
|
|
HRESULT hr, expected_hr;
|
|
IUnknown *unk;
|
|
|
|
expected_hr = supported ? S_OK : E_NOINTERFACE;
|
|
|
|
hr = IUnknown_QueryInterface(iface, iid, (void **)&unk);
|
|
ok_(__FILE__, line)(hr == expected_hr, "Got hr %#x, expected %#x.\n", hr, expected_hr);
|
|
if (SUCCEEDED(hr))
|
|
IUnknown_Release(unk);
|
|
}
|
|
|
|
static void test_interfaces(void)
|
|
{
|
|
IBaseFilter *filter = create_vmr7(0);
|
|
ULONG ref;
|
|
IPin *pin;
|
|
|
|
check_interface(filter, &IID_IAMCertifiedOutputProtection, TRUE);
|
|
check_interface(filter, &IID_IAMFilterMiscFlags, TRUE);
|
|
check_interface(filter, &IID_IBaseFilter, TRUE);
|
|
check_interface(filter, &IID_IBasicVideo, TRUE);
|
|
todo_wine check_interface(filter, &IID_IBasicVideo2, TRUE);
|
|
todo_wine check_interface(filter, &IID_IKsPropertySet, TRUE);
|
|
check_interface(filter, &IID_IMediaFilter, TRUE);
|
|
check_interface(filter, &IID_IMediaPosition, TRUE);
|
|
check_interface(filter, &IID_IMediaSeeking, TRUE);
|
|
check_interface(filter, &IID_IPersist, TRUE);
|
|
check_interface(filter, &IID_IQualityControl, TRUE);
|
|
todo_wine check_interface(filter, &IID_IQualProp, TRUE);
|
|
check_interface(filter, &IID_IUnknown, TRUE);
|
|
check_interface(filter, &IID_IVideoWindow, TRUE);
|
|
todo_wine check_interface(filter, &IID_IVMRAspectRatioControl, TRUE);
|
|
todo_wine check_interface(filter, &IID_IVMRDeinterlaceControl, TRUE);
|
|
check_interface(filter, &IID_IVMRFilterConfig, TRUE);
|
|
todo_wine check_interface(filter, &IID_IVMRMixerBitmap, TRUE);
|
|
check_interface(filter, &IID_IVMRMonitorConfig, TRUE);
|
|
|
|
check_interface(filter, &IID_IBasicAudio, FALSE);
|
|
check_interface(filter, &IID_IDirectDrawVideo, FALSE);
|
|
check_interface(filter, &IID_IPersistPropertyBag, FALSE);
|
|
check_interface(filter, &IID_IPin, FALSE);
|
|
check_interface(filter, &IID_IReferenceClock, FALSE);
|
|
check_interface(filter, &IID_IVMRAspectRatioControl9, FALSE);
|
|
check_interface(filter, &IID_IVMRDeinterlaceControl9, FALSE);
|
|
check_interface(filter, &IID_IVMRFilterConfig9, FALSE);
|
|
check_interface(filter, &IID_IVMRMixerBitmap9, FALSE);
|
|
check_interface(filter, &IID_IVMRMixerControl, FALSE);
|
|
check_interface(filter, &IID_IVMRMixerControl9, FALSE);
|
|
check_interface(filter, &IID_IVMRMonitorConfig9, FALSE);
|
|
check_interface(filter, &IID_IVMRSurfaceAllocatorNotify, FALSE);
|
|
check_interface(filter, &IID_IVMRSurfaceAllocatorNotify9, FALSE);
|
|
check_interface(filter, &IID_IVMRWindowlessControl, FALSE);
|
|
check_interface(filter, &IID_IVMRWindowlessControl9, FALSE);
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
|
|
check_interface(pin, &IID_IMemInputPin, TRUE);
|
|
check_interface(pin, &IID_IOverlay, TRUE);
|
|
check_interface(pin, &IID_IPin, TRUE);
|
|
todo_wine check_interface(pin, &IID_IQualityControl, TRUE);
|
|
check_interface(pin, &IID_IUnknown, TRUE);
|
|
|
|
check_interface(pin, &IID_IKsPropertySet, FALSE);
|
|
check_interface(pin, &IID_IMediaPosition, FALSE);
|
|
check_interface(pin, &IID_IMediaSeeking, FALSE);
|
|
|
|
IPin_Release(pin);
|
|
|
|
IBaseFilter_Release(filter);
|
|
filter = create_vmr7(VMRMode_Windowless);
|
|
|
|
check_interface(filter, &IID_IVMRMonitorConfig, TRUE);
|
|
check_interface(filter, &IID_IVMRWindowlessControl, TRUE);
|
|
|
|
todo_wine check_interface(filter, &IID_IBasicVideo, FALSE);
|
|
check_interface(filter, &IID_IBasicVideo2, FALSE);
|
|
todo_wine check_interface(filter, &IID_IVideoWindow, FALSE);
|
|
check_interface(filter, &IID_IVMRSurfaceAllocatorNotify, FALSE);
|
|
check_interface(filter, &IID_IVMRSurfaceAllocatorNotify9, FALSE);
|
|
check_interface(filter, &IID_IVMRMixerControl, FALSE);
|
|
check_interface(filter, &IID_IVMRMixerControl9, FALSE);
|
|
check_interface(filter, &IID_IVMRMonitorConfig9, FALSE);
|
|
check_interface(filter, &IID_IVMRWindowlessControl9, FALSE);
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
|
|
check_interface(pin, &IID_IMemInputPin, TRUE);
|
|
check_interface(pin, &IID_IOverlay, TRUE);
|
|
check_interface(pin, &IID_IPin, TRUE);
|
|
todo_wine check_interface(pin, &IID_IQualityControl, TRUE);
|
|
check_interface(pin, &IID_IUnknown, TRUE);
|
|
|
|
check_interface(pin, &IID_IKsPropertySet, FALSE);
|
|
check_interface(pin, &IID_IMediaPosition, FALSE);
|
|
check_interface(pin, &IID_IMediaSeeking, FALSE);
|
|
|
|
IPin_Release(pin);
|
|
|
|
IBaseFilter_Release(filter);
|
|
filter = create_vmr7(VMRMode_Renderless);
|
|
|
|
check_interface(filter, &IID_IVMRSurfaceAllocatorNotify, TRUE);
|
|
|
|
todo_wine check_interface(filter, &IID_IBasicVideo, FALSE);
|
|
check_interface(filter, &IID_IBasicVideo2, FALSE);
|
|
todo_wine check_interface(filter, &IID_IVideoWindow, FALSE);
|
|
check_interface(filter, &IID_IVMRMixerControl, FALSE);
|
|
todo_wine check_interface(filter, &IID_IVMRMonitorConfig, FALSE);
|
|
check_interface(filter, &IID_IVMRMonitorConfig9, FALSE);
|
|
check_interface(filter, &IID_IVMRSurfaceAllocatorNotify9, FALSE);
|
|
check_interface(filter, &IID_IVMRWindowlessControl, FALSE);
|
|
check_interface(filter, &IID_IVMRWindowlessControl9, FALSE);
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
|
|
check_interface(pin, &IID_IMemInputPin, TRUE);
|
|
check_interface(pin, &IID_IOverlay, TRUE);
|
|
check_interface(pin, &IID_IPin, TRUE);
|
|
todo_wine check_interface(pin, &IID_IQualityControl, TRUE);
|
|
check_interface(pin, &IID_IUnknown, TRUE);
|
|
|
|
check_interface(pin, &IID_IKsPropertySet, FALSE);
|
|
check_interface(pin, &IID_IMediaPosition, FALSE);
|
|
check_interface(pin, &IID_IMediaSeeking, FALSE);
|
|
|
|
IPin_Release(pin);
|
|
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
static const GUID test_iid = {0x33333333};
|
|
static LONG outer_ref = 1;
|
|
|
|
static HRESULT WINAPI outer_QueryInterface(IUnknown *iface, REFIID iid, void **out)
|
|
{
|
|
if (IsEqualGUID(iid, &IID_IUnknown)
|
|
|| IsEqualGUID(iid, &IID_IBaseFilter)
|
|
|| IsEqualGUID(iid, &test_iid))
|
|
{
|
|
*out = (IUnknown *)0xdeadbeef;
|
|
return S_OK;
|
|
}
|
|
ok(0, "unexpected call %s\n", wine_dbgstr_guid(iid));
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
static ULONG WINAPI outer_AddRef(IUnknown *iface)
|
|
{
|
|
return InterlockedIncrement(&outer_ref);
|
|
}
|
|
|
|
static ULONG WINAPI outer_Release(IUnknown *iface)
|
|
{
|
|
return InterlockedDecrement(&outer_ref);
|
|
}
|
|
|
|
static const IUnknownVtbl outer_vtbl =
|
|
{
|
|
outer_QueryInterface,
|
|
outer_AddRef,
|
|
outer_Release,
|
|
};
|
|
|
|
static IUnknown test_outer = {&outer_vtbl};
|
|
|
|
static void test_aggregation(void)
|
|
{
|
|
IBaseFilter *filter, *filter2;
|
|
IUnknown *unk, *unk2;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
|
|
filter = (IBaseFilter *)0xdeadbeef;
|
|
hr = CoCreateInstance(&CLSID_VideoMixingRenderer, &test_outer, CLSCTX_INPROC_SERVER,
|
|
&IID_IBaseFilter, (void **)&filter);
|
|
ok(hr == E_NOINTERFACE, "Got hr %#x.\n", hr);
|
|
ok(!filter, "Got interface %p.\n", filter);
|
|
|
|
hr = CoCreateInstance(&CLSID_VideoMixingRenderer, &test_outer, CLSCTX_INPROC_SERVER,
|
|
&IID_IUnknown, (void **)&unk);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(outer_ref == 1, "Got unexpected refcount %d.\n", outer_ref);
|
|
ok(unk != &test_outer, "Returned IUnknown should not be outer IUnknown.\n");
|
|
ref = get_refcount(unk);
|
|
ok(ref == 1, "Got unexpected refcount %d.\n", ref);
|
|
|
|
ref = IUnknown_AddRef(unk);
|
|
ok(ref == 2, "Got unexpected refcount %d.\n", ref);
|
|
ok(outer_ref == 1, "Got unexpected refcount %d.\n", outer_ref);
|
|
|
|
ref = IUnknown_Release(unk);
|
|
ok(ref == 1, "Got unexpected refcount %d.\n", ref);
|
|
ok(outer_ref == 1, "Got unexpected refcount %d.\n", outer_ref);
|
|
|
|
hr = IUnknown_QueryInterface(unk, &IID_IUnknown, (void **)&unk2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(unk2 == unk, "Got unexpected IUnknown %p.\n", unk2);
|
|
IUnknown_Release(unk2);
|
|
|
|
hr = IUnknown_QueryInterface(unk, &IID_IBaseFilter, (void **)&filter);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_QueryInterface(filter, &IID_IUnknown, (void **)&unk2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(unk2 == (IUnknown *)0xdeadbeef, "Got unexpected IUnknown %p.\n", unk2);
|
|
|
|
hr = IBaseFilter_QueryInterface(filter, &IID_IBaseFilter, (void **)&filter2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(filter2 == (IBaseFilter *)0xdeadbeef, "Got unexpected IBaseFilter %p.\n", filter2);
|
|
|
|
hr = IUnknown_QueryInterface(unk, &test_iid, (void **)&unk2);
|
|
ok(hr == E_NOINTERFACE, "Got hr %#x.\n", hr);
|
|
ok(!unk2, "Got unexpected IUnknown %p.\n", unk2);
|
|
|
|
hr = IBaseFilter_QueryInterface(filter, &test_iid, (void **)&unk2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(unk2 == (IUnknown *)0xdeadbeef, "Got unexpected IUnknown %p.\n", unk2);
|
|
|
|
IBaseFilter_Release(filter);
|
|
ref = IUnknown_Release(unk);
|
|
ok(!ref, "Got unexpected refcount %d.\n", ref);
|
|
ok(outer_ref == 1, "Got unexpected refcount %d.\n", outer_ref);
|
|
}
|
|
|
|
static void test_enum_pins(void)
|
|
{
|
|
IBaseFilter *filter = create_vmr7(0);
|
|
IEnumPins *enum1, *enum2;
|
|
ULONG count, ref;
|
|
IPin *pins[3];
|
|
HRESULT hr;
|
|
|
|
ref = get_refcount(filter);
|
|
ok(ref == 1, "Got unexpected refcount %d.\n", ref);
|
|
|
|
hr = IBaseFilter_EnumPins(filter, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_EnumPins(filter, &enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ref = get_refcount(filter);
|
|
ok(ref == 2, "Got unexpected refcount %d.\n", ref);
|
|
ref = get_refcount(enum1);
|
|
ok(ref == 1, "Got unexpected refcount %d.\n", ref);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, NULL, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, pins, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ref = get_refcount(filter);
|
|
ok(ref == 3, "Got unexpected refcount %d.\n", ref);
|
|
ref = get_refcount(pins[0]);
|
|
ok(ref == 3, "Got unexpected refcount %d.\n", ref);
|
|
ref = get_refcount(enum1);
|
|
ok(ref == 1, "Got unexpected refcount %d.\n", ref);
|
|
IPin_Release(pins[0]);
|
|
ref = get_refcount(filter);
|
|
ok(ref == 2, "Got unexpected refcount %d.\n", ref);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, pins, NULL);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Reset(enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, pins, &count);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(count == 1, "Got count %u.\n", count);
|
|
IPin_Release(pins[0]);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, pins, &count);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
ok(!count, "Got count %u.\n", count);
|
|
|
|
hr = IEnumPins_Reset(enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum1, 2, pins, NULL);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum1, 2, pins, &count);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
ok(count == 1, "Got count %u.\n", count);
|
|
IPin_Release(pins[0]);
|
|
|
|
hr = IEnumPins_Reset(enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Clone(enum1, &enum2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Skip(enum1, 2);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Skip(enum1, 1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Skip(enum1, 1);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, pins, NULL);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum2, 1, pins, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IPin_Release(pins[0]);
|
|
|
|
IEnumPins_Release(enum2);
|
|
|
|
if (SUCCEEDED(set_mixing_mode(filter)))
|
|
{
|
|
hr = IEnumPins_Next(enum1, 1, pins, NULL);
|
|
todo_wine ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Reset(enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, pins, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IPin_Release(pins[0]);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, pins, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IPin_Release(pins[0]);
|
|
|
|
hr = IEnumPins_Next(enum1, 1, pins, NULL);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Reset(enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum1, 2, pins, &count);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(count == 2, "Got count %u.\n", count);
|
|
IPin_Release(pins[0]);
|
|
IPin_Release(pins[1]);
|
|
|
|
hr = IEnumPins_Reset(enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumPins_Next(enum1, 3, pins, &count);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
ok(count == 2, "Got count %u.\n", count);
|
|
IPin_Release(pins[0]);
|
|
IPin_Release(pins[1]);
|
|
}
|
|
else
|
|
skip("Mixing mode is not supported.\n");
|
|
|
|
IEnumPins_Release(enum1);
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
static void test_find_pin(void)
|
|
{
|
|
IBaseFilter *filter = create_vmr7(0);
|
|
IEnumPins *enum_pins;
|
|
IPin *pin, *pin2;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
|
|
IBaseFilter_EnumPins(filter, &enum_pins);
|
|
|
|
hr = IBaseFilter_FindPin(filter, L"input pin", &pin);
|
|
ok(hr == VFW_E_NOT_FOUND, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_FindPin(filter, L"In", &pin);
|
|
ok(hr == VFW_E_NOT_FOUND, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IEnumPins_Next(enum_pins, 1, &pin2, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(pin == pin2, "Pins did not match.\n");
|
|
IPin_Release(pin);
|
|
IPin_Release(pin2);
|
|
|
|
hr = IBaseFilter_FindPin(filter, L"VMR input1", &pin);
|
|
ok(hr == VFW_E_NOT_FOUND, "Got hr %#x.\n", hr);
|
|
|
|
if (SUCCEEDED(set_mixing_mode(filter)))
|
|
{
|
|
IEnumPins_Reset(enum_pins);
|
|
|
|
hr = IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IEnumPins_Next(enum_pins, 1, &pin2, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(pin == pin2, "Pins did not match.\n");
|
|
IPin_Release(pin);
|
|
IPin_Release(pin2);
|
|
|
|
hr = IBaseFilter_FindPin(filter, L"VMR Input1", &pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IEnumPins_Next(enum_pins, 1, &pin2, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(pin == pin2, "Pins did not match.\n");
|
|
IPin_Release(pin);
|
|
IPin_Release(pin2);
|
|
|
|
hr = IBaseFilter_FindPin(filter, L"VMR Input2", &pin);
|
|
ok(hr == VFW_E_NOT_FOUND, "Got hr %#x.\n", hr);
|
|
}
|
|
else
|
|
skip("Mixing mode is not supported.\n");
|
|
|
|
IEnumPins_Release(enum_pins);
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
static void test_pin_info(void)
|
|
{
|
|
IBaseFilter *filter = create_vmr7(0);
|
|
PIN_DIRECTION dir;
|
|
ULONG count, ref;
|
|
PIN_INFO info;
|
|
HRESULT hr;
|
|
WCHAR *id;
|
|
IPin *pin;
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
hr = IPin_QueryPinInfo(pin, &info);
|
|
ok(info.pFilter == filter, "Expected filter %p, got %p.\n", filter, info.pFilter);
|
|
ok(info.dir == PINDIR_INPUT, "Got direction %d.\n", info.dir);
|
|
ok(!wcscmp(info.achName, L"VMR Input0"), "Got name %s.\n", wine_dbgstr_w(info.achName));
|
|
IBaseFilter_Release(info.pFilter);
|
|
|
|
hr = IPin_QueryDirection(pin, &dir);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(dir == PINDIR_INPUT, "Got direction %d.\n", dir);
|
|
|
|
hr = IPin_QueryId(pin, &id);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!wcscmp(id, L"VMR Input0"), "Got id %s.\n", wine_dbgstr_w(id));
|
|
CoTaskMemFree(id);
|
|
|
|
hr = IPin_QueryInternalConnections(pin, NULL, &count);
|
|
ok(hr == E_NOTIMPL, "Got hr %#x.\n", hr);
|
|
|
|
IPin_Release(pin);
|
|
|
|
if (SUCCEEDED(set_mixing_mode(filter)))
|
|
{
|
|
IBaseFilter_FindPin(filter, L"VMR Input1", &pin);
|
|
hr = IPin_QueryPinInfo(pin, &info);
|
|
ok(info.pFilter == filter, "Expected filter %p, got %p.\n", filter, info.pFilter);
|
|
ok(info.dir == PINDIR_INPUT, "Got direction %d.\n", info.dir);
|
|
ok(!wcscmp(info.achName, L"VMR Input1"), "Got name %s.\n", wine_dbgstr_w(info.achName));
|
|
IBaseFilter_Release(info.pFilter);
|
|
|
|
hr = IPin_QueryDirection(pin, &dir);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(dir == PINDIR_INPUT, "Got direction %d.\n", dir);
|
|
|
|
hr = IPin_QueryId(pin, &id);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!wcscmp(id, L"VMR Input1"), "Got id %s.\n", wine_dbgstr_w(id));
|
|
CoTaskMemFree(id);
|
|
|
|
hr = IPin_QueryInternalConnections(pin, NULL, &count);
|
|
ok(hr == E_NOTIMPL, "Got hr %#x.\n", hr);
|
|
|
|
IPin_Release(pin);
|
|
}
|
|
else
|
|
skip("Mixing mode is not supported.\n");
|
|
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
static void test_media_types(void)
|
|
{
|
|
IBaseFilter *filter = create_vmr7(0);
|
|
AM_MEDIA_TYPE *mt, req_mt = {{0}};
|
|
VIDEOINFOHEADER vih =
|
|
{
|
|
{0}, {0}, 0, 0, 0,
|
|
{sizeof(BITMAPINFOHEADER), 32, 24, 1, 0, BI_RGB}
|
|
};
|
|
IEnumMediaTypes *enummt;
|
|
unsigned int i;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
IPin *pin;
|
|
|
|
static const GUID *subtype_tests[] =
|
|
{
|
|
&MEDIASUBTYPE_NULL,
|
|
&MEDIASUBTYPE_RGB565,
|
|
&MEDIASUBTYPE_RGB24,
|
|
&MEDIASUBTYPE_RGB32,
|
|
};
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
|
|
hr = IPin_EnumMediaTypes(pin, &enummt);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumMediaTypes_Next(enummt, 1, &mt, NULL);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
IEnumMediaTypes_Release(enummt);
|
|
|
|
req_mt.majortype = MEDIATYPE_Video;
|
|
req_mt.formattype = FORMAT_VideoInfo;
|
|
req_mt.cbFormat = sizeof(VIDEOINFOHEADER);
|
|
req_mt.pbFormat = (BYTE *)&vih;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(subtype_tests); ++i)
|
|
{
|
|
req_mt.subtype = *subtype_tests[i];
|
|
hr = IPin_QueryAccept(pin, &req_mt);
|
|
ok(hr == S_OK, "Got hr %#x for subtype %s.\n", hr, wine_dbgstr_guid(subtype_tests[i]));
|
|
}
|
|
|
|
req_mt.subtype = MEDIASUBTYPE_RGB8;
|
|
hr = IPin_QueryAccept(pin, &req_mt);
|
|
todo_wine ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
req_mt.subtype = MEDIASUBTYPE_RGB24;
|
|
|
|
req_mt.majortype = MEDIATYPE_NULL;
|
|
hr = IPin_QueryAccept(pin, &req_mt);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
req_mt.majortype = MEDIATYPE_Video;
|
|
|
|
req_mt.formattype = FORMAT_None;
|
|
hr = IPin_QueryAccept(pin, &req_mt);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
req_mt.formattype = GUID_NULL;
|
|
hr = IPin_QueryAccept(pin, &req_mt);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
IPin_Release(pin);
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
static void test_enum_media_types(void)
|
|
{
|
|
IBaseFilter *filter = create_vmr7(0);
|
|
IEnumMediaTypes *enum1, *enum2;
|
|
AM_MEDIA_TYPE *mts[2];
|
|
ULONG ref, count;
|
|
HRESULT hr;
|
|
IPin *pin;
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
|
|
hr = IPin_EnumMediaTypes(pin, &enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumMediaTypes_Next(enum1, 1, mts, NULL);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumMediaTypes_Next(enum1, 1, mts, &count);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
ok(!count, "Got count %u.\n", count);
|
|
|
|
hr = IEnumMediaTypes_Reset(enum1);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumMediaTypes_Next(enum1, 1, mts, NULL);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumMediaTypes_Clone(enum1, &enum2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumMediaTypes_Skip(enum1, 1);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IEnumMediaTypes_Next(enum2, 1, mts, NULL);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
IEnumMediaTypes_Release(enum1);
|
|
IEnumMediaTypes_Release(enum2);
|
|
IPin_Release(pin);
|
|
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
static void test_unconnected_filter_state(void)
|
|
{
|
|
IBaseFilter *filter = create_vmr7(0);
|
|
FILTER_STATE state;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
|
|
hr = IBaseFilter_GetState(filter, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == State_Stopped, "Got state %u.\n", state);
|
|
|
|
hr = IBaseFilter_Pause(filter);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_GetState(filter, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == State_Paused, "Got state %u.\n", state);
|
|
|
|
hr = IBaseFilter_Run(filter, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_GetState(filter, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == State_Running, "Got state %u.\n", state);
|
|
|
|
hr = IBaseFilter_Pause(filter);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_GetState(filter, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == State_Paused, "Got state %u.\n", state);
|
|
|
|
hr = IBaseFilter_Stop(filter);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_GetState(filter, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == State_Stopped, "Got state %u.\n", state);
|
|
|
|
hr = IBaseFilter_Run(filter, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_GetState(filter, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == State_Running, "Got state %u.\n", state);
|
|
|
|
hr = IBaseFilter_Stop(filter);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_GetState(filter, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == State_Stopped, "Got state %u.\n", state);
|
|
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
struct testfilter
|
|
{
|
|
struct strmbase_filter filter;
|
|
struct strmbase_source source;
|
|
};
|
|
|
|
static inline struct testfilter *impl_from_strmbase_filter(struct strmbase_filter *iface)
|
|
{
|
|
return CONTAINING_RECORD(iface, struct testfilter, filter);
|
|
}
|
|
|
|
static struct strmbase_pin *testfilter_get_pin(struct strmbase_filter *iface, unsigned int index)
|
|
{
|
|
struct testfilter *filter = impl_from_strmbase_filter(iface);
|
|
if (!index)
|
|
return &filter->source.pin;
|
|
return NULL;
|
|
}
|
|
|
|
static void testfilter_destroy(struct strmbase_filter *iface)
|
|
{
|
|
struct testfilter *filter = impl_from_strmbase_filter(iface);
|
|
strmbase_source_cleanup(&filter->source);
|
|
strmbase_filter_cleanup(&filter->filter);
|
|
}
|
|
|
|
static const struct strmbase_filter_ops testfilter_ops =
|
|
{
|
|
.filter_get_pin = testfilter_get_pin,
|
|
.filter_destroy = testfilter_destroy,
|
|
};
|
|
|
|
static HRESULT WINAPI testsource_DecideAllocator(struct strmbase_source *iface,
|
|
IMemInputPin *peer, IMemAllocator **allocator)
|
|
{
|
|
return S_OK;
|
|
}
|
|
|
|
static const struct strmbase_source_ops testsource_ops =
|
|
{
|
|
.pfnAttemptConnection = BaseOutputPinImpl_AttemptConnection,
|
|
.pfnDecideAllocator = testsource_DecideAllocator,
|
|
};
|
|
|
|
static void testfilter_init(struct testfilter *filter)
|
|
{
|
|
static const GUID clsid = {0xabacab};
|
|
strmbase_filter_init(&filter->filter, NULL, &clsid, &testfilter_ops);
|
|
strmbase_source_init(&filter->source, &filter->filter, L"", &testsource_ops);
|
|
}
|
|
|
|
static void test_allocator(IMemInputPin *input)
|
|
{
|
|
IMemAllocator *req_allocator, *ret_allocator;
|
|
ALLOCATOR_PROPERTIES props, req_props;
|
|
HRESULT hr;
|
|
|
|
hr = IMemInputPin_GetAllocatorRequirements(input, &props);
|
|
ok(hr == E_NOTIMPL, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMemInputPin_GetAllocator(input, &ret_allocator);
|
|
todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
if (hr == S_OK)
|
|
{
|
|
hr = IMemAllocator_GetProperties(ret_allocator, &props);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!props.cBuffers, "Got %d buffers.\n", props.cBuffers);
|
|
ok(!props.cbBuffer, "Got size %d.\n", props.cbBuffer);
|
|
ok(!props.cbAlign, "Got alignment %d.\n", props.cbAlign);
|
|
ok(!props.cbPrefix, "Got prefix %d.\n", props.cbPrefix);
|
|
|
|
hr = IMemInputPin_NotifyAllocator(input, ret_allocator, TRUE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
req_props.cBuffers = 1;
|
|
req_props.cbBuffer = 32 * 16 * 4;
|
|
req_props.cbAlign = 1;
|
|
req_props.cbPrefix = 0;
|
|
hr = IMemAllocator_SetProperties(ret_allocator, &req_props, &props);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(props.cBuffers == 1, "Got %d buffers.\n", props.cBuffers);
|
|
ok(props.cbBuffer == 32 * 16 * 4, "Got size %d.\n", props.cbBuffer);
|
|
ok(props.cbAlign == 1, "Got alignment %d.\n", props.cbAlign);
|
|
ok(!props.cbPrefix, "Got prefix %d.\n", props.cbPrefix);
|
|
|
|
IMemAllocator_Release(ret_allocator);
|
|
}
|
|
|
|
hr = IMemInputPin_NotifyAllocator(input, NULL, TRUE);
|
|
todo_wine ok(hr == E_FAIL, "Got hr %#x.\n", hr);
|
|
|
|
CoCreateInstance(&CLSID_MemoryAllocator, NULL, CLSCTX_INPROC_SERVER,
|
|
&IID_IMemAllocator, (void **)&req_allocator);
|
|
|
|
hr = IMemInputPin_NotifyAllocator(input, req_allocator, TRUE);
|
|
todo_wine ok(hr == E_FAIL, "Got hr %#x.\n", hr);
|
|
|
|
IMemAllocator_Release(req_allocator);
|
|
}
|
|
|
|
struct frame_thread_params
|
|
{
|
|
IMemInputPin *sink;
|
|
IMediaSample *sample;
|
|
};
|
|
|
|
static DWORD WINAPI frame_thread(void *arg)
|
|
{
|
|
struct frame_thread_params *params = arg;
|
|
HRESULT hr;
|
|
|
|
if (winetest_debug > 1) trace("%04x: Sending frame.\n", GetCurrentThreadId());
|
|
hr = IMemInputPin_Receive(params->sink, params->sample);
|
|
if (winetest_debug > 1) trace("%04x: Returned %#x.\n", GetCurrentThreadId(), hr);
|
|
IMediaSample_Release(params->sample);
|
|
heap_free(params);
|
|
return hr;
|
|
}
|
|
|
|
static HANDLE send_frame(IMemInputPin *sink)
|
|
{
|
|
struct frame_thread_params *params = heap_alloc(sizeof(*params));
|
|
REFERENCE_TIME start_time, end_time;
|
|
IMemAllocator *allocator;
|
|
IMediaSample *sample;
|
|
HANDLE thread;
|
|
HRESULT hr;
|
|
BYTE *data;
|
|
|
|
hr = IMemInputPin_GetAllocator(sink, &allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMemAllocator_GetBuffer(allocator, &sample, NULL, NULL, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaSample_GetPointer(sample, &data);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
memset(data, 0x55, IMediaSample_GetSize(sample));
|
|
|
|
hr = IMediaSample_SetActualDataLength(sample, IMediaSample_GetSize(sample));
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
start_time = 0;
|
|
end_time = start_time + 10000000;
|
|
hr = IMediaSample_SetTime(sample, &start_time, &end_time);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaSample_SetPreroll(sample, TRUE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
params->sink = sink;
|
|
params->sample = sample;
|
|
thread = CreateThread(NULL, 0, frame_thread, params, 0, NULL);
|
|
|
|
IMemAllocator_Release(allocator);
|
|
return thread;
|
|
}
|
|
|
|
static HRESULT join_thread_(int line, HANDLE thread)
|
|
{
|
|
DWORD ret;
|
|
ok_(__FILE__, line)(!WaitForSingleObject(thread, 1000), "Wait failed.\n");
|
|
GetExitCodeThread(thread, &ret);
|
|
CloseHandle(thread);
|
|
return ret;
|
|
}
|
|
#define join_thread(a) join_thread_(__LINE__, a)
|
|
|
|
static void test_filter_state(IMemInputPin *input, IMediaControl *control)
|
|
{
|
|
IMemAllocator *allocator;
|
|
IMediaSample *sample;
|
|
OAFilterState state;
|
|
HANDLE thread;
|
|
HRESULT hr;
|
|
|
|
thread = send_frame(input);
|
|
hr = join_thread(thread);
|
|
ok(hr == VFW_E_WRONG_STATE, "Got hr %#x.\n", hr);
|
|
|
|
/* The renderer is not fully paused until it receives a sample. The thread
|
|
* sending the sample blocks in IMemInputPin_Receive() until the filter is
|
|
* stopped or run. */
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
ok(hr == VFW_S_STATE_INTERMEDIATE, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
|
|
hr = IMediaControl_GetState(control, 1000, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
ok(WaitForSingleObject(thread, 100) == WAIT_TIMEOUT, "Thread should block in Receive().\n");
|
|
|
|
hr = IMediaControl_Stop(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = join_thread(thread);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
/* The sink will decommit our allocator for us when stopping, however it
|
|
* will not recommit it when pausing. */
|
|
hr = IMemInputPin_GetAllocator(input, &allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IMemAllocator_GetBuffer(allocator, &sample, NULL, NULL, 0);
|
|
todo_wine ok(hr == VFW_E_NOT_COMMITTED, "Got hr %#x.\n", hr);
|
|
if (hr == S_OK) IMediaSample_Release(sample);
|
|
|
|
hr = IMemAllocator_Commit(allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
thread = send_frame(input);
|
|
hr = join_thread(thread);
|
|
ok(hr == VFW_E_WRONG_STATE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
ok(hr == VFW_S_STATE_INTERMEDIATE, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
|
|
hr = IMediaControl_GetState(control, 1000, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
ok(WaitForSingleObject(thread, 100) == WAIT_TIMEOUT, "Thread should block in Receive().\n");
|
|
|
|
hr = IMediaControl_Run(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = join_thread(thread);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
hr = join_thread(thread);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
todo_wine ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
todo_wine ok(hr == VFW_S_STATE_INTERMEDIATE, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
|
|
hr = IMediaControl_GetState(control, 1000, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
ok(WaitForSingleObject(thread, 100) == WAIT_TIMEOUT, "Thread should block in Receive().\n");
|
|
|
|
hr = IMediaControl_Run(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = join_thread(thread);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
todo_wine ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
todo_wine ok(hr == VFW_S_STATE_INTERMEDIATE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Stop(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMemAllocator_Commit(allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
ok(hr == VFW_S_STATE_INTERMEDIATE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Run(control);
|
|
todo_wine ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
todo_wine ok(hr == VFW_S_STATE_INTERMEDIATE, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
hr = join_thread(thread);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Stop(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
IMemAllocator_Release(allocator);
|
|
}
|
|
|
|
static void test_flushing(IPin *pin, IMemInputPin *input, IMediaControl *control)
|
|
{
|
|
IMemAllocator *allocator;
|
|
OAFilterState state;
|
|
HANDLE thread;
|
|
HRESULT hr;
|
|
|
|
hr = IMemInputPin_GetAllocator(input, &allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IMemAllocator_Commit(allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IMemAllocator_Release(allocator);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
ok(WaitForSingleObject(thread, 100) == WAIT_TIMEOUT, "Thread should block in Receive().\n");
|
|
|
|
hr = IMediaControl_GetState(control, 1000, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IPin_BeginFlush(pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = join_thread(thread);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
hr = join_thread(thread);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IPin_EndFlush(pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
/* We dropped the sample we were holding, so now we need a new one... */
|
|
|
|
hr = IMediaControl_GetState(control, 0, &state);
|
|
todo_wine ok(hr == VFW_S_STATE_INTERMEDIATE, "Got hr %#x.\n", hr);
|
|
ok(state == State_Paused, "Got state %#x.\n", state);
|
|
|
|
thread = send_frame(input);
|
|
ok(WaitForSingleObject(thread, 100) == WAIT_TIMEOUT, "Thread should block in Receive().\n");
|
|
|
|
hr = IMediaControl_GetState(control, 1000, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == State_Paused, "Got state %#x.\n", state);
|
|
|
|
hr = IMediaControl_Run(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = join_thread(thread);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IPin_BeginFlush(pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
hr = join_thread(thread);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IPin_EndFlush(pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
thread = send_frame(input);
|
|
hr = join_thread(thread);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Stop(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
}
|
|
|
|
static void test_current_image(IBaseFilter *filter, IMemInputPin *input,
|
|
IMediaControl *control, const BITMAPINFOHEADER *req_bih)
|
|
{
|
|
LONG buffer[(sizeof(BITMAPINFOHEADER) + 32 * 16 * 4) / 4];
|
|
const BITMAPINFOHEADER *bih = (BITMAPINFOHEADER *)buffer;
|
|
const DWORD *data = (DWORD *)((char *)buffer + sizeof(BITMAPINFOHEADER));
|
|
BITMAPINFOHEADER expect_bih = *req_bih;
|
|
IMemAllocator *allocator;
|
|
OAFilterState state;
|
|
IBasicVideo *video;
|
|
unsigned int i;
|
|
HANDLE thread;
|
|
HRESULT hr;
|
|
LONG size;
|
|
|
|
/* Note that the bitmap returned by GetCurrentImage() has a bit depth of
|
|
* 32 regardless of the format used for pin connection. */
|
|
expect_bih.biBitCount = 32;
|
|
expect_bih.biSizeImage = 32 * 16 * 4;
|
|
|
|
IBaseFilter_QueryInterface(filter, &IID_IBasicVideo, (void **)&video);
|
|
|
|
hr = IBasicVideo_GetCurrentImage(video, NULL, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_GetCurrentImage(video, NULL, buffer);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
size = 0xdeadbeef;
|
|
hr = IBasicVideo_GetCurrentImage(video, &size, NULL);
|
|
todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
todo_wine ok(size == sizeof(BITMAPINFOHEADER) + 32 * 16 * 4, "Got size %d.\n", size);
|
|
|
|
size = sizeof(buffer);
|
|
hr = IBasicVideo_GetCurrentImage(video, &size, buffer);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(size == sizeof(buffer), "Got size %d.\n", size);
|
|
ok(!memcmp(bih, &expect_bih, sizeof(BITMAPINFOHEADER)), "Bitmap headers didn't match.\n");
|
|
/* The contents seem to reflect the last frame rendered. */
|
|
|
|
hr = IMemInputPin_GetAllocator(input, &allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IMemAllocator_Commit(allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IMemAllocator_Release(allocator);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
size = sizeof(buffer);
|
|
hr = IBasicVideo_GetCurrentImage(video, &size, buffer);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(size == sizeof(buffer), "Got size %d.\n", size);
|
|
ok(!memcmp(bih, &expect_bih, sizeof(BITMAPINFOHEADER)), "Bitmap headers didn't match.\n");
|
|
/* The contents seem to reflect the last frame rendered. */
|
|
|
|
thread = send_frame(input);
|
|
hr = IMediaControl_GetState(control, 1000, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
size = 1;
|
|
memset(buffer, 0xcc, sizeof(buffer));
|
|
hr = IBasicVideo_GetCurrentImage(video, &size, buffer);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(size == 1, "Got size %d.\n", size);
|
|
|
|
size = sizeof(buffer);
|
|
memset(buffer, 0xcc, sizeof(buffer));
|
|
hr = IBasicVideo_GetCurrentImage(video, &size, buffer);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(size == sizeof(buffer), "Got size %d.\n", size);
|
|
ok(!memcmp(bih, &expect_bih, sizeof(BITMAPINFOHEADER)), "Bitmap headers didn't match.\n");
|
|
for (i = 0; i < 32 * 16; ++i)
|
|
ok((data[i] & 0xffffff) == 0x555555, "Got unexpected color %08x at %u.\n", data[i], i);
|
|
|
|
hr = IMediaControl_Run(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
join_thread(thread);
|
|
|
|
size = sizeof(buffer);
|
|
memset(buffer, 0xcc, sizeof(buffer));
|
|
hr = IBasicVideo_GetCurrentImage(video, &size, buffer);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(size == sizeof(buffer), "Got size %d.\n", size);
|
|
ok(!memcmp(bih, &expect_bih, sizeof(BITMAPINFOHEADER)), "Bitmap headers didn't match.\n");
|
|
for (i = 0; i < 32 * 16; ++i)
|
|
ok((data[i] & 0xffffff) == 0x555555, "Got unexpected color %08x at %u.\n", data[i], i);
|
|
|
|
hr = IMediaControl_Stop(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
IBasicVideo_Release(video);
|
|
}
|
|
|
|
static void test_connect_pin(void)
|
|
{
|
|
VIDEOINFOHEADER vih =
|
|
{
|
|
.bmiHeader.biSize = sizeof(BITMAPINFOHEADER),
|
|
.bmiHeader.biWidth = 32,
|
|
.bmiHeader.biHeight = 16,
|
|
.bmiHeader.biPlanes = 1,
|
|
.bmiHeader.biCompression = BI_RGB,
|
|
};
|
|
AM_MEDIA_TYPE req_mt =
|
|
{
|
|
.majortype = MEDIATYPE_Video,
|
|
.subtype = MEDIASUBTYPE_WAVE,
|
|
.formattype = FORMAT_VideoInfo,
|
|
.cbFormat = sizeof(vih),
|
|
.pbFormat = (BYTE *)&vih,
|
|
};
|
|
ALLOCATOR_PROPERTIES req_props = {1, 32 * 16 * 4, 1, 0}, ret_props;
|
|
IBaseFilter *filter = create_vmr7(VMRMode_Windowed);
|
|
IFilterGraph2 *graph = create_graph();
|
|
struct testfilter source;
|
|
IMemAllocator *allocator;
|
|
IMediaControl *control;
|
|
IMemInputPin *input;
|
|
AM_MEDIA_TYPE mt;
|
|
IPin *pin, *peer;
|
|
unsigned int i;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
|
|
static const GUID *subtype_tests[] =
|
|
{
|
|
&MEDIASUBTYPE_RGB565,
|
|
&MEDIASUBTYPE_RGB24,
|
|
&MEDIASUBTYPE_RGB32,
|
|
&MEDIASUBTYPE_WAVE,
|
|
};
|
|
|
|
testfilter_init(&source);
|
|
|
|
IFilterGraph2_AddFilter(graph, &source.filter.IBaseFilter_iface, NULL);
|
|
IFilterGraph2_AddFilter(graph, filter, NULL);
|
|
IFilterGraph2_QueryInterface(graph, &IID_IMediaControl, (void **)&control);
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
|
|
vih.bmiHeader.biBitCount = 16;
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
ok(hr == VFW_E_TYPE_NOT_ACCEPTED, "Got hr %#x.\n", hr);
|
|
|
|
vih.bmiHeader.biBitCount = 32;
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
if (hr == VFW_E_TYPE_NOT_ACCEPTED) /* w7u */
|
|
{
|
|
vih.bmiHeader.biBitCount = 24;
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
/* w7u is also rather buggy with its allocator. Requesting a size of
|
|
* 32 * 16 * 4 succeeds and returns that size from SetProperties(), but
|
|
* the actual samples only have a size of 32 * 16 * 3. */
|
|
req_props.cbBuffer = 32 * 16 * 3;
|
|
}
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IFilterGraph2_Disconnect(graph, &source.source.pin.IPin_iface);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IFilterGraph2_Disconnect(graph, pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(subtype_tests); ++i)
|
|
{
|
|
req_mt.subtype = *subtype_tests[i];
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
ok(hr == S_OK, "Got hr %#x for subtype %s.\n", hr, wine_dbgstr_guid(subtype_tests[i]));
|
|
|
|
hr = IFilterGraph2_Disconnect(graph, &source.source.pin.IPin_iface);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IFilterGraph2_Disconnect(graph, pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
}
|
|
|
|
req_mt.formattype = FORMAT_None;
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
ok(hr == VFW_E_TYPE_NOT_ACCEPTED, "Got hr %#x.\n", hr);
|
|
req_mt.formattype = FORMAT_VideoInfo;
|
|
|
|
req_mt.subtype = MEDIASUBTYPE_RGB8;
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
todo_wine ok(hr == VFW_E_TYPE_NOT_ACCEPTED, "Got hr %#x.\n", hr);
|
|
if (hr == S_OK)
|
|
{
|
|
IFilterGraph2_Disconnect(graph, &source.source.pin.IPin_iface);
|
|
IFilterGraph2_Disconnect(graph, pin);
|
|
}
|
|
req_mt.subtype = MEDIASUBTYPE_RGB32;
|
|
|
|
peer = (IPin *)0xdeadbeef;
|
|
hr = IPin_ConnectedTo(pin, &peer);
|
|
ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
ok(!peer, "Got peer %p.\n", peer);
|
|
|
|
hr = IPin_ConnectionMediaType(pin, &mt);
|
|
ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
ok(hr == VFW_E_NOT_STOPPED, "Got hr %#x.\n", hr);
|
|
hr = IMediaControl_Stop(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IPin_ConnectedTo(pin, &peer);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(peer == &source.source.pin.IPin_iface, "Got peer %p.\n", peer);
|
|
IPin_Release(peer);
|
|
|
|
hr = IPin_ConnectionMediaType(pin, &mt);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(compare_media_types(&mt, &req_mt), "Media types didn't match.\n");
|
|
|
|
/* Disconnecting while not stopped is broken: it returns S_OK, but
|
|
* subsequent attempts to connect return VFW_E_ALREADY_CONNECTED. */
|
|
|
|
IPin_QueryInterface(pin, &IID_IMemInputPin, (void **)&input);
|
|
|
|
test_allocator(input);
|
|
|
|
hr = IMemInputPin_GetAllocator(input, &allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IMemAllocator_SetProperties(allocator, &req_props, &ret_props);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!memcmp(&ret_props, &req_props, sizeof(req_props)), "Properties did not match.\n");
|
|
hr = IMemAllocator_Commit(allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IMemAllocator_Release(allocator);
|
|
|
|
hr = IMemInputPin_ReceiveCanBlock(input);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
test_filter_state(input, control);
|
|
test_flushing(pin, input, control);
|
|
test_current_image(filter, input, control, &vih.bmiHeader);
|
|
|
|
hr = IFilterGraph2_Disconnect(graph, pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IFilterGraph2_Disconnect(graph, pin);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
ok(source.source.pin.peer == pin, "Got peer %p.\n", peer);
|
|
IFilterGraph2_Disconnect(graph, &source.source.pin.IPin_iface);
|
|
|
|
peer = (IPin *)0xdeadbeef;
|
|
hr = IPin_ConnectedTo(pin, &peer);
|
|
ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
ok(!peer, "Got peer %p.\n", peer);
|
|
|
|
hr = IPin_ConnectionMediaType(pin, &mt);
|
|
ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
IMemInputPin_Release(input);
|
|
IPin_Release(pin);
|
|
IMediaControl_Release(control);
|
|
ref = IFilterGraph2_Release(graph);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
ref = IBaseFilter_Release(&source.filter.IBaseFilter_iface);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
static void test_overlay(void)
|
|
{
|
|
IBaseFilter *filter = create_vmr7(0);
|
|
IOverlay *overlay;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
IPin *pin;
|
|
HWND hwnd;
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
|
|
hr = IPin_QueryInterface(pin, &IID_IOverlay, (void **)&overlay);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hwnd = (HWND)0xdeadbeef;
|
|
hr = IOverlay_GetWindowHandle(overlay, &hwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(hwnd && hwnd != (HWND)0xdeadbeef, "Got invalid window %p.\n", hwnd);
|
|
|
|
IOverlay_Release(overlay);
|
|
IPin_Release(pin);
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
/* try to make sure pending X events have been processed before continuing */
|
|
static void flush_events(void)
|
|
{
|
|
int diff = 200;
|
|
DWORD time;
|
|
MSG msg;
|
|
|
|
time = GetTickCount() + diff;
|
|
while (diff > 0)
|
|
{
|
|
if (MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLINPUT) == WAIT_TIMEOUT)
|
|
break;
|
|
while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE))
|
|
DispatchMessageA(&msg);
|
|
diff = time - GetTickCount();
|
|
}
|
|
}
|
|
|
|
static LRESULT CALLBACK window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
|
|
{
|
|
if (winetest_debug > 1)
|
|
trace("hwnd %p, msg %#x, wparam %#lx, lparam %#lx.\n", hwnd, msg, wparam, lparam);
|
|
|
|
if (wparam == 0xdeadbeef)
|
|
return 0;
|
|
|
|
return DefWindowProcA(hwnd, msg, wparam, lparam);
|
|
}
|
|
|
|
static void test_video_window_caption(IVideoWindow *window, HWND hwnd)
|
|
{
|
|
WCHAR text[50];
|
|
BSTR caption;
|
|
HRESULT hr;
|
|
|
|
hr = IVideoWindow_get_Caption(window, &caption);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!wcscmp(caption, L"ActiveMovie Window"), "Got caption %s.\n", wine_dbgstr_w(caption));
|
|
SysFreeString(caption);
|
|
|
|
GetWindowTextW(hwnd, text, ARRAY_SIZE(text));
|
|
ok(!wcscmp(text, L"ActiveMovie Window"), "Got caption %s.\n", wine_dbgstr_w(text));
|
|
|
|
caption = SysAllocString(L"foo");
|
|
hr = IVideoWindow_put_Caption(window, caption);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
SysFreeString(caption);
|
|
|
|
hr = IVideoWindow_get_Caption(window, &caption);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!wcscmp(caption, L"foo"), "Got caption %s.\n", wine_dbgstr_w(caption));
|
|
SysFreeString(caption);
|
|
|
|
GetWindowTextW(hwnd, text, ARRAY_SIZE(text));
|
|
ok(!wcscmp(text, L"foo"), "Got caption %s.\n", wine_dbgstr_w(text));
|
|
}
|
|
|
|
static void test_video_window_style(IVideoWindow *window, HWND hwnd, HWND our_hwnd)
|
|
{
|
|
HRESULT hr;
|
|
LONG style;
|
|
|
|
hr = IVideoWindow_get_WindowStyle(window, &style);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(style == (WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW),
|
|
"Got style %#x.\n", style);
|
|
|
|
style = GetWindowLongA(hwnd, GWL_STYLE);
|
|
ok(style == (WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW),
|
|
"Got style %#x.\n", style);
|
|
|
|
hr = IVideoWindow_put_WindowStyle(window, style | WS_DISABLED);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IVideoWindow_put_WindowStyle(window, style | WS_HSCROLL);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IVideoWindow_put_WindowStyle(window, style | WS_VSCROLL);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IVideoWindow_put_WindowStyle(window, style | WS_MAXIMIZE);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IVideoWindow_put_WindowStyle(window, style | WS_MINIMIZE);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_put_WindowStyle(window, style & ~WS_CLIPCHILDREN);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowStyle(window, &style);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(style == (WS_CLIPSIBLINGS | WS_OVERLAPPEDWINDOW), "Got style %#x.\n", style);
|
|
|
|
style = GetWindowLongA(hwnd, GWL_STYLE);
|
|
ok(style == (WS_CLIPSIBLINGS | WS_OVERLAPPEDWINDOW), "Got style %#x.\n", style);
|
|
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
hr = IVideoWindow_get_WindowStyleEx(window, &style);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(style == WS_EX_WINDOWEDGE, "Got style %#x.\n", style);
|
|
|
|
style = GetWindowLongA(hwnd, GWL_EXSTYLE);
|
|
ok(style == WS_EX_WINDOWEDGE, "Got style %#x.\n", style);
|
|
|
|
hr = IVideoWindow_put_WindowStyleEx(window, style | WS_EX_TRANSPARENT);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowStyleEx(window, &style);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(style == (WS_EX_WINDOWEDGE | WS_EX_TRANSPARENT), "Got style %#x.\n", style);
|
|
|
|
style = GetWindowLongA(hwnd, GWL_EXSTYLE);
|
|
ok(style == (WS_EX_WINDOWEDGE | WS_EX_TRANSPARENT), "Got style %#x.\n", style);
|
|
}
|
|
|
|
static BOOL CALLBACK top_window_cb(HWND hwnd, LPARAM ctx)
|
|
{
|
|
DWORD pid;
|
|
GetWindowThreadProcessId(hwnd, &pid);
|
|
if (pid == GetCurrentProcessId() && (GetWindowLongW(hwnd, GWL_STYLE) & WS_VISIBLE))
|
|
{
|
|
*(HWND *)ctx = hwnd;
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
static HWND get_top_window(void)
|
|
{
|
|
HWND hwnd;
|
|
EnumWindows(top_window_cb, (LPARAM)&hwnd);
|
|
return hwnd;
|
|
}
|
|
|
|
static void test_video_window_state(IVideoWindow *window, HWND hwnd, HWND our_hwnd)
|
|
{
|
|
HRESULT hr;
|
|
LONG state;
|
|
HWND top;
|
|
|
|
SetWindowPos(our_hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
|
|
|
hr = IVideoWindow_get_WindowState(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == SW_HIDE, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(state == OAFALSE, "Got state %d.\n", state);
|
|
|
|
ok(!IsWindowVisible(hwnd), "Window should not be visible.\n");
|
|
ok(!IsIconic(hwnd), "Window should not be minimized.\n");
|
|
ok(!IsZoomed(hwnd), "Window should not be maximized.\n");
|
|
|
|
hr = IVideoWindow_put_WindowState(window, SW_SHOWNA);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowState(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == SW_SHOW, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(state == OATRUE, "Got state %d.\n", state);
|
|
|
|
ok(IsWindowVisible(hwnd), "Window should be visible.\n");
|
|
ok(!IsIconic(hwnd), "Window should not be minimized.\n");
|
|
ok(!IsZoomed(hwnd), "Window should not be maximized.\n");
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
top = get_top_window();
|
|
ok(top == hwnd, "Got top window %p.\n", top);
|
|
|
|
hr = IVideoWindow_put_WindowState(window, SW_MINIMIZE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowState(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == SW_MINIMIZE, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(state == OATRUE, "Got state %d.\n", state);
|
|
|
|
ok(IsWindowVisible(hwnd), "Window should be visible.\n");
|
|
ok(IsIconic(hwnd), "Window should be minimized.\n");
|
|
ok(!IsZoomed(hwnd), "Window should not be maximized.\n");
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
hr = IVideoWindow_put_WindowState(window, SW_RESTORE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowState(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == SW_SHOW, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(state == OATRUE, "Got state %d.\n", state);
|
|
|
|
ok(IsWindowVisible(hwnd), "Window should be visible.\n");
|
|
ok(!IsIconic(hwnd), "Window should not be minimized.\n");
|
|
ok(!IsZoomed(hwnd), "Window should not be maximized.\n");
|
|
ok(GetActiveWindow() == hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
hr = IVideoWindow_put_WindowState(window, SW_MAXIMIZE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowState(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == SW_MAXIMIZE, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(state == OATRUE, "Got state %d.\n", state);
|
|
|
|
ok(IsWindowVisible(hwnd), "Window should be visible.\n");
|
|
ok(!IsIconic(hwnd), "Window should be minimized.\n");
|
|
ok(IsZoomed(hwnd), "Window should not be maximized.\n");
|
|
ok(GetActiveWindow() == hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
hr = IVideoWindow_put_WindowState(window, SW_RESTORE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_put_WindowState(window, SW_HIDE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowState(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == SW_HIDE, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(state == OAFALSE, "Got state %d.\n", state);
|
|
|
|
ok(!IsWindowVisible(hwnd), "Window should not be visible.\n");
|
|
ok(!IsIconic(hwnd), "Window should not be minimized.\n");
|
|
ok(!IsZoomed(hwnd), "Window should not be maximized.\n");
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
hr = IVideoWindow_put_Visible(window, OATRUE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowState(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == SW_SHOW, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(state == OATRUE, "Got state %d.\n", state);
|
|
|
|
ok(IsWindowVisible(hwnd), "Window should be visible.\n");
|
|
ok(!IsIconic(hwnd), "Window should not be minimized.\n");
|
|
ok(!IsZoomed(hwnd), "Window should not be maximized.\n");
|
|
ok(GetActiveWindow() == hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
hr = IVideoWindow_put_Visible(window, OAFALSE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowState(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == SW_HIDE, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(state == OAFALSE, "Got state %d.\n", state);
|
|
|
|
ok(!IsWindowVisible(hwnd), "Window should not be visible.\n");
|
|
ok(!IsIconic(hwnd), "Window should not be minimized.\n");
|
|
ok(!IsZoomed(hwnd), "Window should not be maximized.\n");
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
hr = IVideoWindow_put_WindowState(window, SW_SHOWNA);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_SetWindowForeground(window, TRUE);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
|
|
SetWindowPos(our_hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
|
hr = IVideoWindow_SetWindowForeground(window, OATRUE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(GetActiveWindow() == hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
ok(GetFocus() == hwnd, "Got focus window %p.\n", GetFocus());
|
|
ok(GetForegroundWindow() == hwnd, "Got foreground window %p.\n", GetForegroundWindow());
|
|
top = get_top_window();
|
|
ok(top == hwnd, "Got top window %p.\n", top);
|
|
|
|
hr = IVideoWindow_SetWindowForeground(window, OAFALSE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(GetActiveWindow() == hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
ok(GetFocus() == hwnd, "Got focus window %p.\n", GetFocus());
|
|
ok(GetForegroundWindow() == hwnd, "Got foreground window %p.\n", GetForegroundWindow());
|
|
top = get_top_window();
|
|
ok(top == hwnd, "Got top window %p.\n", top);
|
|
|
|
SetWindowPos(our_hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
|
hr = IVideoWindow_SetWindowForeground(window, OAFALSE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
ok(GetFocus() == our_hwnd, "Got focus window %p.\n", GetFocus());
|
|
ok(GetForegroundWindow() == our_hwnd, "Got foreground window %p.\n", GetForegroundWindow());
|
|
top = get_top_window();
|
|
ok(top == hwnd, "Got top window %p.\n", top);
|
|
}
|
|
|
|
static void test_video_window_position(IVideoWindow *window, HWND hwnd, HWND our_hwnd)
|
|
{
|
|
LONG left, width, top, height, expect_width, expect_height;
|
|
RECT rect = {0, 0, 600, 400};
|
|
HWND top_hwnd;
|
|
HRESULT hr;
|
|
|
|
SetWindowPos(our_hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
|
|
|
AdjustWindowRect(&rect, GetWindowLongA(hwnd, GWL_STYLE), FALSE);
|
|
expect_width = rect.right - rect.left;
|
|
expect_height = rect.bottom - rect.top;
|
|
|
|
hr = IVideoWindow_put_Left(window, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IVideoWindow_put_Top(window, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Left(window, &left);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(left == 0, "Got left %d.\n", left);
|
|
hr = IVideoWindow_get_Top(window, &top);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(top == 0, "Got top %d.\n", top);
|
|
hr = IVideoWindow_get_Width(window, &width);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(width == expect_width, "Got width %d.\n", width);
|
|
hr = IVideoWindow_get_Height(window, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(height == expect_height, "Got height %d.\n", height);
|
|
hr = IVideoWindow_GetWindowPosition(window, &left, &top, &width, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(left == 0, "Got left %d.\n", left);
|
|
ok(top == 0, "Got top %d.\n", top);
|
|
ok(width == expect_width, "Got width %d.\n", width);
|
|
ok(height == expect_height, "Got height %d.\n", height);
|
|
GetWindowRect(hwnd, &rect);
|
|
ok(rect.left == 0, "Got window left %d.\n", rect.left);
|
|
ok(rect.top == 0, "Got window top %d.\n", rect.top);
|
|
ok(rect.right == expect_width, "Got window right %d.\n", rect.right);
|
|
ok(rect.bottom == expect_height, "Got window bottom %d.\n", rect.bottom);
|
|
|
|
hr = IVideoWindow_put_Left(window, 10);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Left(window, &left);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(left == 10, "Got left %d.\n", left);
|
|
hr = IVideoWindow_get_Top(window, &top);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(top == 0, "Got top %d.\n", top);
|
|
hr = IVideoWindow_get_Width(window, &width);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(width == expect_width, "Got width %d.\n", width);
|
|
hr = IVideoWindow_get_Height(window, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(height == expect_height, "Got height %d.\n", height);
|
|
hr = IVideoWindow_GetWindowPosition(window, &left, &top, &width, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(left == 10, "Got left %d.\n", left);
|
|
ok(top == 0, "Got top %d.\n", top);
|
|
ok(width == expect_width, "Got width %d.\n", width);
|
|
ok(height == expect_height, "Got height %d.\n", height);
|
|
GetWindowRect(hwnd, &rect);
|
|
ok(rect.left == 10, "Got window left %d.\n", rect.left);
|
|
ok(rect.top == 0, "Got window top %d.\n", rect.top);
|
|
ok(rect.right == 10 + expect_width, "Got window right %d.\n", rect.right);
|
|
ok(rect.bottom == expect_height, "Got window bottom %d.\n", rect.bottom);
|
|
|
|
hr = IVideoWindow_put_Height(window, 200);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Left(window, &left);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(left == 10, "Got left %d.\n", left);
|
|
hr = IVideoWindow_get_Top(window, &top);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(top == 0, "Got top %d.\n", top);
|
|
hr = IVideoWindow_get_Width(window, &width);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(width == expect_width, "Got width %d.\n", width);
|
|
hr = IVideoWindow_get_Height(window, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(height == 200, "Got height %d.\n", height);
|
|
hr = IVideoWindow_GetWindowPosition(window, &left, &top, &width, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(left == 10, "Got left %d.\n", left);
|
|
ok(top == 0, "Got top %d.\n", top);
|
|
ok(width == expect_width, "Got width %d.\n", width);
|
|
ok(height == 200, "Got height %d.\n", height);
|
|
GetWindowRect(hwnd, &rect);
|
|
ok(rect.left == 10, "Got window left %d.\n", rect.left);
|
|
ok(rect.top == 0, "Got window top %d.\n", rect.top);
|
|
ok(rect.right == 10 + expect_width, "Got window right %d.\n", rect.right);
|
|
ok(rect.bottom == 200, "Got window bottom %d.\n", rect.bottom);
|
|
|
|
hr = IVideoWindow_SetWindowPosition(window, 100, 200, 300, 400);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Left(window, &left);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(left == 100, "Got left %d.\n", left);
|
|
hr = IVideoWindow_get_Top(window, &top);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(top == 200, "Got top %d.\n", top);
|
|
hr = IVideoWindow_get_Width(window, &width);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(width == 300, "Got width %d.\n", width);
|
|
hr = IVideoWindow_get_Height(window, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(height == 400, "Got height %d.\n", height);
|
|
hr = IVideoWindow_GetWindowPosition(window, &left, &top, &width, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(left == 100, "Got left %d.\n", left);
|
|
ok(top == 200, "Got top %d.\n", top);
|
|
ok(width == 300, "Got width %d.\n", width);
|
|
ok(height == 400, "Got height %d.\n", height);
|
|
GetWindowRect(hwnd, &rect);
|
|
ok(rect.left == 100, "Got window left %d.\n", rect.left);
|
|
ok(rect.top == 200, "Got window top %d.\n", rect.top);
|
|
ok(rect.right == 400, "Got window right %d.\n", rect.right);
|
|
ok(rect.bottom == 600, "Got window bottom %d.\n", rect.bottom);
|
|
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
top_hwnd = get_top_window();
|
|
ok(top_hwnd == our_hwnd, "Got top window %p.\n", top_hwnd);
|
|
}
|
|
|
|
static void test_video_window_owner(IVideoWindow *window, HWND hwnd, HWND our_hwnd)
|
|
{
|
|
HWND parent, top_hwnd;
|
|
LONG style, state;
|
|
OAHWND oahwnd;
|
|
HRESULT hr;
|
|
|
|
SetWindowPos(our_hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
|
|
|
hr = IVideoWindow_get_Owner(window, &oahwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!oahwnd, "Got owner %#lx.\n", oahwnd);
|
|
|
|
parent = GetAncestor(hwnd, GA_PARENT);
|
|
ok(parent == GetDesktopWindow(), "Got parent %p.\n", parent);
|
|
style = GetWindowLongA(hwnd, GWL_STYLE);
|
|
ok(!(style & WS_CHILD), "Got style %#x.\n", style);
|
|
|
|
hr = IVideoWindow_put_Owner(window, (OAHWND)our_hwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Owner(window, &oahwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(oahwnd == (OAHWND)our_hwnd, "Got owner %#lx.\n", oahwnd);
|
|
|
|
parent = GetAncestor(hwnd, GA_PARENT);
|
|
ok(parent == our_hwnd, "Got parent %p.\n", parent);
|
|
style = GetWindowLongA(hwnd, GWL_STYLE);
|
|
ok((style & WS_CHILD), "Got style %#x.\n", style);
|
|
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
top_hwnd = get_top_window();
|
|
ok(top_hwnd == our_hwnd, "Got top window %p.\n", top_hwnd);
|
|
|
|
ShowWindow(our_hwnd, SW_HIDE);
|
|
|
|
hr = IVideoWindow_put_Visible(window, OATRUE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == OAFALSE, "Got state %d.\n", state);
|
|
|
|
hr = IVideoWindow_put_Owner(window, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Owner(window, &oahwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!oahwnd, "Got owner %#lx.\n", oahwnd);
|
|
|
|
parent = GetAncestor(hwnd, GA_PARENT);
|
|
ok(parent == GetDesktopWindow(), "Got parent %p.\n", parent);
|
|
style = GetWindowLongA(hwnd, GWL_STYLE);
|
|
ok(!(style & WS_CHILD), "Got style %#x.\n", style);
|
|
|
|
ok(GetActiveWindow() == hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
top_hwnd = get_top_window();
|
|
ok(top_hwnd == hwnd, "Got top window %p.\n", top_hwnd);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &state);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(state == OATRUE, "Got state %d.\n", state);
|
|
}
|
|
|
|
struct notify_message_params
|
|
{
|
|
IVideoWindow *window;
|
|
HWND hwnd;
|
|
UINT message;
|
|
};
|
|
|
|
static DWORD CALLBACK notify_message_proc(void *arg)
|
|
{
|
|
const struct notify_message_params *params = arg;
|
|
HRESULT hr = IVideoWindow_NotifyOwnerMessage(params->window, (OAHWND)params->hwnd, params->message, 0, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
return 0;
|
|
}
|
|
|
|
static void test_video_window_messages(IVideoWindow *window, HWND hwnd, HWND our_hwnd)
|
|
{
|
|
struct notify_message_params params;
|
|
unsigned int i;
|
|
OAHWND oahwnd;
|
|
HANDLE thread;
|
|
HRESULT hr;
|
|
BOOL ret;
|
|
MSG msg;
|
|
|
|
static UINT drain_tests[] =
|
|
{
|
|
WM_MOUSEACTIVATE,
|
|
WM_NCLBUTTONDOWN,
|
|
WM_NCLBUTTONUP,
|
|
WM_NCLBUTTONDBLCLK,
|
|
WM_NCRBUTTONDOWN,
|
|
WM_NCRBUTTONUP,
|
|
WM_NCRBUTTONDBLCLK,
|
|
WM_NCMBUTTONDOWN,
|
|
WM_NCMBUTTONUP,
|
|
WM_NCMBUTTONDBLCLK,
|
|
WM_KEYDOWN,
|
|
WM_KEYUP,
|
|
WM_MOUSEMOVE,
|
|
WM_LBUTTONDOWN,
|
|
WM_LBUTTONUP,
|
|
WM_LBUTTONDBLCLK,
|
|
WM_RBUTTONDOWN,
|
|
WM_RBUTTONUP,
|
|
WM_RBUTTONDBLCLK,
|
|
WM_MBUTTONDOWN,
|
|
WM_MBUTTONUP,
|
|
WM_MBUTTONDBLCLK,
|
|
};
|
|
|
|
flush_events();
|
|
|
|
hr = IVideoWindow_get_MessageDrain(window, &oahwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!oahwnd, "Got window %#lx.\n", oahwnd);
|
|
|
|
hr = IVideoWindow_put_MessageDrain(window, (OAHWND)our_hwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_MessageDrain(window, &oahwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(oahwnd == (OAHWND)our_hwnd, "Got window %#lx.\n", oahwnd);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(drain_tests); ++i)
|
|
{
|
|
SendMessageA(hwnd, drain_tests[i], 0xdeadbeef, 0);
|
|
ret = PeekMessageA(&msg, 0, drain_tests[i], drain_tests[i], PM_REMOVE);
|
|
ok(ret, "Expected a message.\n");
|
|
ok(msg.hwnd == our_hwnd, "Got hwnd %p.\n", msg.hwnd);
|
|
ok(msg.message == drain_tests[i], "Got message %#x.\n", msg.message);
|
|
ok(msg.wParam == 0xdeadbeef, "Got wparam %#lx.\n", msg.wParam);
|
|
ok(!msg.lParam, "Got lparam %#lx.\n", msg.lParam);
|
|
DispatchMessageA(&msg);
|
|
|
|
ret = PeekMessageA(&msg, 0, drain_tests[i], drain_tests[i], PM_REMOVE);
|
|
ok(!ret, "Got unexpected message %#x.\n", msg.message);
|
|
}
|
|
|
|
hr = IVideoWindow_put_MessageDrain(window, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_put_Owner(window, (OAHWND)our_hwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
flush_events();
|
|
|
|
hr = IVideoWindow_NotifyOwnerMessage(window, (OAHWND)our_hwnd, WM_SYSCOLORCHANGE, 0, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
ret = GetQueueStatus(QS_SENDMESSAGE | QS_POSTMESSAGE);
|
|
ok(!ret, "Got unexpected status %#x.\n", ret);
|
|
|
|
hr = IVideoWindow_NotifyOwnerMessage(window, (OAHWND)our_hwnd, WM_SETCURSOR,
|
|
(WPARAM)hwnd, MAKELONG(HTCLIENT, WM_MOUSEMOVE));
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
ret = GetQueueStatus(QS_SENDMESSAGE | QS_POSTMESSAGE);
|
|
ok(!ret, "Got unexpected status %#x.\n", ret);
|
|
|
|
params.window = window;
|
|
params.hwnd = our_hwnd;
|
|
params.message = WM_SYSCOLORCHANGE;
|
|
thread = CreateThread(NULL, 0, notify_message_proc, ¶ms, 0, NULL);
|
|
ok(WaitForSingleObject(thread, 100) == WAIT_TIMEOUT, "Thread should block.\n");
|
|
ret = MsgWaitForMultipleObjects(0, NULL, FALSE, 1000, QS_SENDMESSAGE);
|
|
ok(!ret, "Did not find a sent message.\n");
|
|
|
|
while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessageA(&msg);
|
|
ok(!WaitForSingleObject(thread, 1000), "Wait timed out.\n");
|
|
CloseHandle(thread);
|
|
|
|
params.message = WM_SETCURSOR;
|
|
thread = CreateThread(NULL, 0, notify_message_proc, ¶ms, 0, NULL);
|
|
ok(!WaitForSingleObject(thread, 1000), "Thread should not block.\n");
|
|
CloseHandle(thread);
|
|
ret = GetQueueStatus(QS_SENDMESSAGE | QS_POSTMESSAGE);
|
|
ok(!ret, "Got unexpected status %#x.\n", ret);
|
|
|
|
hr = IVideoWindow_put_Owner(window, 0);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
}
|
|
|
|
static void test_video_window_autoshow(IVideoWindow *window, IFilterGraph2 *graph, HWND hwnd)
|
|
{
|
|
IMediaControl *control;
|
|
HRESULT hr;
|
|
LONG l;
|
|
|
|
IFilterGraph2_QueryInterface(graph, &IID_IMediaControl, (void **)&control);
|
|
|
|
hr = IVideoWindow_get_AutoShow(window, &l);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(l == OATRUE, "Got %d.\n", l);
|
|
|
|
hr = IVideoWindow_put_Visible(window, OAFALSE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &l);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(l == OATRUE, "Got %d.\n", l);
|
|
|
|
hr = IMediaControl_Stop(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &l);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(l == OATRUE, "Got %d.\n", l);
|
|
|
|
hr = IVideoWindow_put_AutoShow(window, OAFALSE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_put_Visible(window, OAFALSE);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMediaControl_Pause(control);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Visible(window, &l);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(l == OAFALSE, "Got %d.\n", l);
|
|
|
|
hr = IMediaControl_Stop(control);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
IMediaControl_Release(control);
|
|
}
|
|
|
|
static void test_video_window(void)
|
|
{
|
|
ALLOCATOR_PROPERTIES req_props = {1, 600 * 400 * 4, 1, 0}, ret_props;
|
|
VIDEOINFOHEADER vih =
|
|
{
|
|
.bmiHeader.biSize = sizeof(BITMAPINFOHEADER),
|
|
.bmiHeader.biBitCount = 32,
|
|
.bmiHeader.biWidth = 600,
|
|
.bmiHeader.biHeight = 400,
|
|
.bmiHeader.biPlanes = 1,
|
|
.bmiHeader.biCompression = BI_RGB,
|
|
};
|
|
AM_MEDIA_TYPE req_mt =
|
|
{
|
|
.majortype = MEDIATYPE_Video,
|
|
.subtype = MEDIASUBTYPE_RGB32,
|
|
.formattype = FORMAT_VideoInfo,
|
|
.cbFormat = sizeof(vih),
|
|
.pbFormat = (BYTE *)&vih,
|
|
};
|
|
IFilterGraph2 *graph = create_graph();
|
|
WNDCLASSA window_class = {0};
|
|
struct testfilter source;
|
|
IMemAllocator *allocator;
|
|
LONG width, height, l;
|
|
IVideoWindow *window;
|
|
IMemInputPin *input;
|
|
IBaseFilter *filter;
|
|
HWND hwnd, our_hwnd;
|
|
IOverlay *overlay;
|
|
BSTR caption;
|
|
HRESULT hr;
|
|
DWORD tid;
|
|
ULONG ref;
|
|
IPin *pin;
|
|
RECT rect;
|
|
|
|
window_class.lpszClassName = "wine_test_class";
|
|
window_class.lpfnWndProc = window_proc;
|
|
RegisterClassA(&window_class);
|
|
our_hwnd = CreateWindowA("wine_test_class", "test window", WS_VISIBLE | WS_OVERLAPPEDWINDOW,
|
|
100, 200, 300, 400, NULL, NULL, NULL, NULL);
|
|
flush_events();
|
|
|
|
filter = create_vmr7(0);
|
|
flush_events();
|
|
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
IPin_QueryInterface(pin, &IID_IMemInputPin, (void **)&input);
|
|
|
|
hr = IPin_QueryInterface(pin, &IID_IOverlay, (void **)&overlay);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IOverlay_GetWindowHandle(overlay, &hwnd);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
if (winetest_debug > 1) trace("ours %p, theirs %p\n", our_hwnd, hwnd);
|
|
GetWindowRect(hwnd, &rect);
|
|
|
|
tid = GetWindowThreadProcessId(hwnd, NULL);
|
|
ok(tid == GetCurrentThreadId(), "Expected tid %#x, got %#x.\n", GetCurrentThreadId(), tid);
|
|
|
|
hr = IBaseFilter_QueryInterface(filter, &IID_IVideoWindow, (void **)&window);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_Caption(window, &caption);
|
|
todo_wine ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_WindowStyle(window, &l);
|
|
todo_wine ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_get_AutoShow(window, &l);
|
|
todo_wine ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
testfilter_init(&source);
|
|
IFilterGraph2_AddFilter(graph, &source.filter.IBaseFilter_iface, NULL);
|
|
IFilterGraph2_AddFilter(graph, filter, NULL);
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
if (hr == VFW_E_TYPE_NOT_ACCEPTED) /* w7u */
|
|
{
|
|
req_mt.subtype = MEDIASUBTYPE_RGB24;
|
|
vih.bmiHeader.biBitCount = 24;
|
|
req_props.cbBuffer = 32 * 16 * 3;
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
}
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMemInputPin_GetAllocator(input, &allocator);
|
|
todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
if (hr == S_OK)
|
|
{
|
|
hr = IMemAllocator_SetProperties(allocator, &req_props, &ret_props);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!memcmp(&ret_props, &req_props, sizeof(req_props)), "Properties did not match.\n");
|
|
hr = IMemAllocator_Commit(allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IMemAllocator_Release(allocator);
|
|
}
|
|
|
|
ok(GetActiveWindow() == our_hwnd, "Got active window %p.\n", GetActiveWindow());
|
|
|
|
test_video_window_caption(window, hwnd);
|
|
test_video_window_style(window, hwnd, our_hwnd);
|
|
test_video_window_state(window, hwnd, our_hwnd);
|
|
test_video_window_position(window, hwnd, our_hwnd);
|
|
test_video_window_autoshow(window, graph, hwnd);
|
|
test_video_window_owner(window, hwnd, our_hwnd);
|
|
test_video_window_messages(window, hwnd, our_hwnd);
|
|
|
|
hr = IVideoWindow_put_FullScreenMode(window, OATRUE);
|
|
ok(hr == E_NOTIMPL, "Got hr %#x.\n", hr);
|
|
hr = IVideoWindow_get_FullScreenMode(window, &l);
|
|
ok(hr == E_NOTIMPL, "Got hr %#x.\n", hr);
|
|
|
|
hr = IVideoWindow_GetMinIdealImageSize(window, &width, &height);
|
|
todo_wine ok(hr == VFW_E_WRONG_STATE, "Got hr %#x.\n", hr);
|
|
hr = IVideoWindow_GetMaxIdealImageSize(window, &width, &height);
|
|
todo_wine ok(hr == VFW_E_WRONG_STATE, "Got hr %#x.\n", hr);
|
|
|
|
IFilterGraph2_Release(graph);
|
|
IVideoWindow_Release(window);
|
|
IOverlay_Release(overlay);
|
|
IMemInputPin_Release(input);
|
|
IPin_Release(pin);
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
ref = IBaseFilter_Release(&source.filter.IBaseFilter_iface);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
DestroyWindow(our_hwnd);
|
|
}
|
|
|
|
static void check_source_position_(int line, IBasicVideo *video,
|
|
LONG expect_left, LONG expect_top, LONG expect_width, LONG expect_height)
|
|
{
|
|
LONG left, top, width, height, l;
|
|
HRESULT hr;
|
|
|
|
left = top = width = height = 0xdeadbeef;
|
|
hr = IBasicVideo_GetSourcePosition(video, &left, &top, &width, &height);
|
|
ok_(__FILE__,line)(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(left == expect_left, "Got left %d.\n", left);
|
|
ok_(__FILE__,line)(top == expect_top, "Got top %d.\n", top);
|
|
ok_(__FILE__,line)(width == expect_width, "Got width %d.\n", width);
|
|
ok_(__FILE__,line)(height == expect_height, "Got height %d.\n", height);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_SourceLeft(video, &l);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get left, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(l == left, "Got left %d.\n", l);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_SourceTop(video, &l);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get top, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(l == top, "Got top %d.\n", l);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_SourceWidth(video, &l);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get width, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(l == width, "Got width %d.\n", l);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_SourceHeight(video, &l);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get height, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(l == height, "Got height %d.\n", l);
|
|
}
|
|
#define check_source_position(a,b,c,d,e) check_source_position_(__LINE__,a,b,c,d,e)
|
|
|
|
static void test_basic_video_source(IBasicVideo *video)
|
|
{
|
|
HRESULT hr;
|
|
|
|
check_source_position(video, 0, 0, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultSource(video);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_SourceLeft(video, -10);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceLeft(video, 10);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_SourceTop(video, -10);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceTop(video, 10);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_SourceWidth(video, -500);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceWidth(video, 0);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceWidth(video, 700);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceWidth(video, 500);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_source_position(video, 0, 0, 500, 400);
|
|
hr = IBasicVideo_IsUsingDefaultSource(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_SourceHeight(video, -300);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceHeight(video, 0);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceHeight(video, 600);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceHeight(video, 300);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_source_position(video, 0, 0, 500, 300);
|
|
hr = IBasicVideo_IsUsingDefaultSource(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_SourceLeft(video, -10);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceLeft(video, 10);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_source_position(video, 10, 0, 500, 300);
|
|
hr = IBasicVideo_IsUsingDefaultSource(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_SourceTop(video, -10);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_SourceTop(video, 20);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_source_position(video, 10, 20, 500, 300);
|
|
hr = IBasicVideo_IsUsingDefaultSource(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_SetSourcePosition(video, 4, 5, 60, 40);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_source_position(video, 4, 5, 60, 40);
|
|
hr = IBasicVideo_IsUsingDefaultSource(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_SetSourcePosition(video, 0, 0, 600, 400);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_source_position(video, 0, 0, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultSource(video);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_SetSourcePosition(video, 4, 5, 60, 40);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_SetDefaultSourcePosition(video);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_source_position(video, 0, 0, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultSource(video);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
}
|
|
|
|
static void check_destination_position_(int line, IBasicVideo *video,
|
|
LONG expect_left, LONG expect_top, LONG expect_width, LONG expect_height)
|
|
{
|
|
LONG left, top, width, height, l;
|
|
HRESULT hr;
|
|
|
|
left = top = width = height = 0xdeadbeef;
|
|
hr = IBasicVideo_GetDestinationPosition(video, &left, &top, &width, &height);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get position, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(left == expect_left, "Got left %d.\n", left);
|
|
ok_(__FILE__,line)(top == expect_top, "Got top %d.\n", top);
|
|
ok_(__FILE__,line)(width == expect_width, "Got width %d.\n", width);
|
|
ok_(__FILE__,line)(height == expect_height, "Got height %d.\n", height);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_DestinationLeft(video, &l);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get left, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(l == left, "Got left %d.\n", l);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_DestinationTop(video, &l);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get top, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(l == top, "Got top %d.\n", l);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_DestinationWidth(video, &l);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get width, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(l == width, "Got width %d.\n", l);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_DestinationHeight(video, &l);
|
|
ok_(__FILE__,line)(hr == S_OK, "Failed to get height, hr %#x.\n", hr);
|
|
ok_(__FILE__,line)(l == height, "Got height %d.\n", l);
|
|
}
|
|
#define check_destination_position(a,b,c,d,e) check_destination_position_(__LINE__,a,b,c,d,e)
|
|
|
|
static void test_basic_video_destination(IBasicVideo *video)
|
|
{
|
|
IVideoWindow *window;
|
|
HRESULT hr;
|
|
RECT rect;
|
|
|
|
IBasicVideo_QueryInterface(video, &IID_IVideoWindow, (void **)&window);
|
|
|
|
check_destination_position(video, 0, 0, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_DestinationLeft(video, -10);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, -10, 0, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_DestinationLeft(video, 10);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 10, 0, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_DestinationTop(video, -20);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 10, -20, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_DestinationTop(video, 20);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 10, 20, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_DestinationWidth(video, -700);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_DestinationWidth(video, 0);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_DestinationWidth(video, 700);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 10, 20, 700, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_DestinationWidth(video, 500);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 10, 20, 500, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_DestinationHeight(video, -500);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_DestinationHeight(video, 0);
|
|
ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_put_DestinationHeight(video, 500);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 10, 20, 500, 500);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_put_DestinationHeight(video, 300);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 10, 20, 500, 300);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_SetDestinationPosition(video, 4, 5, 60, 40);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 4, 5, 60, 40);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_SetDestinationPosition(video, 0, 0, 600, 400);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 0, 0, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_SetDestinationPosition(video, 4, 5, 60, 40);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_SetDefaultDestinationPosition(video);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 0, 0, 600, 400);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
SetRect(&rect, 100, 200, 500, 500);
|
|
AdjustWindowRect(&rect, WS_OVERLAPPEDWINDOW, FALSE);
|
|
hr = IVideoWindow_SetWindowPosition(window, rect.left, rect.top,
|
|
rect.right - rect.left, rect.bottom - rect.top);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 0, 0, 400, 300);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_SetDestinationPosition(video, 0, 0, 400, 300);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 0, 0, 400, 300);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
SetRect(&rect, 100, 200, 600, 600);
|
|
AdjustWindowRect(&rect, WS_OVERLAPPEDWINDOW, FALSE);
|
|
hr = IVideoWindow_SetWindowPosition(window, rect.left, rect.top,
|
|
rect.right - rect.left, rect.bottom - rect.top);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
check_destination_position(video, 0, 0, 400, 300);
|
|
hr = IBasicVideo_IsUsingDefaultDestination(video);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
|
|
IVideoWindow_Release(window);
|
|
}
|
|
|
|
static void test_basic_video(void)
|
|
{
|
|
ALLOCATOR_PROPERTIES req_props = {1, 600 * 400 * 4, 1, 0}, ret_props;
|
|
VIDEOINFOHEADER vih =
|
|
{
|
|
.AvgTimePerFrame = 200000,
|
|
.rcSource = {4, 6, 16, 12},
|
|
.rcTarget = {40, 60, 120, 160},
|
|
.bmiHeader.biSize = sizeof(BITMAPINFOHEADER),
|
|
.bmiHeader.biBitCount = 32,
|
|
.bmiHeader.biWidth = 600,
|
|
.bmiHeader.biHeight = 400,
|
|
.bmiHeader.biPlanes = 1,
|
|
.bmiHeader.biCompression = BI_RGB,
|
|
};
|
|
AM_MEDIA_TYPE req_mt =
|
|
{
|
|
.majortype = MEDIATYPE_Video,
|
|
.subtype = MEDIASUBTYPE_RGB32,
|
|
.formattype = FORMAT_VideoInfo,
|
|
.cbFormat = sizeof(vih),
|
|
.pbFormat = (BYTE *)&vih,
|
|
};
|
|
IBaseFilter *filter = create_vmr7(VMRMode_Windowed);
|
|
IFilterGraph2 *graph = create_graph();
|
|
LONG left, top, width, height, l;
|
|
struct testfilter source;
|
|
IMemAllocator *allocator;
|
|
IMemInputPin *input;
|
|
ITypeInfo *typeinfo;
|
|
IBasicVideo *video;
|
|
TYPEATTR *typeattr;
|
|
REFTIME reftime;
|
|
HRESULT hr;
|
|
UINT count;
|
|
ULONG ref;
|
|
IPin *pin;
|
|
RECT rect;
|
|
|
|
IBaseFilter_QueryInterface(filter, &IID_IBasicVideo, (void **)&video);
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
IPin_QueryInterface(pin, &IID_IMemInputPin, (void **)&input);
|
|
|
|
hr = IBasicVideo_GetTypeInfoCount(video, &count);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(count == 1, "Got count %u.\n", count);
|
|
|
|
hr = IBasicVideo_GetTypeInfo(video, 0, 0, &typeinfo);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = ITypeInfo_GetTypeAttr(typeinfo, &typeattr);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(typeattr->typekind == TKIND_DISPATCH, "Got kind %u.\n", typeattr->typekind);
|
|
ok(IsEqualGUID(&typeattr->guid, &IID_IBasicVideo), "Got IID %s.\n", wine_dbgstr_guid(&typeattr->guid));
|
|
ITypeInfo_ReleaseTypeAttr(typeinfo, typeattr);
|
|
ITypeInfo_Release(typeinfo);
|
|
|
|
hr = IBasicVideo_get_AvgTimePerFrame(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_AvgTimePerFrame(video, &reftime);
|
|
ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_get_BitRate(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_BitRate(video, &l);
|
|
ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_get_BitErrorRate(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_BitErrorRate(video, &l);
|
|
ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_get_VideoWidth(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_VideoHeight(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_get_SourceLeft(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_SourceWidth(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_SourceTop(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_SourceHeight(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_get_DestinationLeft(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_DestinationWidth(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_DestinationTop(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_get_DestinationHeight(video, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_GetSourcePosition(video, NULL, &top, &width, &height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_GetSourcePosition(video, &left, NULL, &width, &height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_GetSourcePosition(video, &left, &top, NULL, &height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_GetSourcePosition(video, &left, &top, &width, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_GetDestinationPosition(video, NULL, &top, &width, &height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_GetDestinationPosition(video, &left, NULL, &width, &height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_GetDestinationPosition(video, &left, &top, NULL, &height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_GetDestinationPosition(video, &left, &top, &width, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_GetVideoSize(video, &width, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_GetVideoSize(video, NULL, &height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBasicVideo_GetVideoPaletteEntries(video, 0, 1, NULL, &l);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IBasicVideo_GetVideoPaletteEntries(video, 0, 1, &l, NULL);
|
|
todo_wine ok(hr == VFW_E_NOT_CONNECTED, "Got hr %#x.\n", hr);
|
|
|
|
testfilter_init(&source);
|
|
IFilterGraph2_AddFilter(graph, &source.filter.IBaseFilter_iface, L"vmr9");
|
|
IFilterGraph2_AddFilter(graph, filter, L"source");
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
if (hr == E_FAIL)
|
|
{
|
|
skip("Got E_FAIL when connecting.\n");
|
|
goto out;
|
|
}
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMemInputPin_GetAllocator(input, &allocator);
|
|
todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
if (hr == S_OK)
|
|
{
|
|
hr = IMemAllocator_SetProperties(allocator, &req_props, &ret_props);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!memcmp(&ret_props, &req_props, sizeof(req_props)), "Properties did not match.\n");
|
|
hr = IMemAllocator_Commit(allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IMemAllocator_Release(allocator);
|
|
}
|
|
|
|
reftime = 0.0;
|
|
hr = IBasicVideo_get_AvgTimePerFrame(video, &reftime);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(compare_double(reftime, 0.02, 1 << 28), "Got frame rate %.16e.\n", reftime);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_BitRate(video, &l);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!l, "Got bit rate %d.\n", l);
|
|
|
|
l = 0xdeadbeef;
|
|
hr = IBasicVideo_get_BitErrorRate(video, &l);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!l, "Got bit rate %d.\n", l);
|
|
|
|
hr = IBasicVideo_GetVideoPaletteEntries(video, 0, 1, &l, NULL);
|
|
todo_wine ok(hr == VFW_E_NO_PALETTE_AVAILABLE, "Got hr %#x.\n", hr);
|
|
|
|
width = height = 0xdeadbeef;
|
|
hr = IBasicVideo_GetVideoSize(video, &width, &height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(width == 600, "Got width %d.\n", width);
|
|
ok(height == 400, "Got height %d.\n", height);
|
|
|
|
test_basic_video_source(video);
|
|
test_basic_video_destination(video);
|
|
|
|
hr = IFilterGraph2_Disconnect(graph, &source.source.pin.IPin_iface);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IFilterGraph2_Disconnect(graph, pin);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
vih.bmiHeader.biWidth = 16;
|
|
vih.bmiHeader.biHeight = 16;
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &req_mt);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IMemInputPin_GetAllocator(input, &allocator);
|
|
todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
if (hr == S_OK)
|
|
{
|
|
hr = IMemAllocator_SetProperties(allocator, &req_props, &ret_props);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!memcmp(&ret_props, &req_props, sizeof(req_props)), "Properties did not match.\n");
|
|
hr = IMemAllocator_Commit(allocator);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
IMemAllocator_Release(allocator);
|
|
}
|
|
|
|
check_source_position(video, 0, 0, 16, 16);
|
|
|
|
SetRect(&rect, 0, 0, 0, 0);
|
|
AdjustWindowRectEx(&rect, WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW, FALSE, 0);
|
|
check_destination_position(video, 0, 0, max(16, GetSystemMetrics(SM_CXMIN) - (rect.right - rect.left)),
|
|
max(16, GetSystemMetrics(SM_CYMIN) - (rect.bottom - rect.top)));
|
|
|
|
out:
|
|
ref = IFilterGraph2_Release(graph);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
IBasicVideo_Release(video);
|
|
IMemInputPin_Release(input);
|
|
IPin_Release(pin);
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
ref = IBaseFilter_Release(&source.filter.IBaseFilter_iface);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
static void test_windowless_size(void)
|
|
{
|
|
ALLOCATOR_PROPERTIES req_props = {1, 32 * 16 * 4, 1, 0}, ret_props;
|
|
VIDEOINFOHEADER vih =
|
|
{
|
|
.bmiHeader.biSize = sizeof(BITMAPINFOHEADER),
|
|
.bmiHeader.biWidth = 32,
|
|
.bmiHeader.biHeight = 16,
|
|
.bmiHeader.biBitCount = 32,
|
|
.bmiHeader.biPlanes = 1,
|
|
};
|
|
AM_MEDIA_TYPE mt =
|
|
{
|
|
.majortype = MEDIATYPE_Video,
|
|
.subtype = MEDIASUBTYPE_RGB32,
|
|
.formattype = FORMAT_VideoInfo,
|
|
.cbFormat = sizeof(vih),
|
|
.pbFormat = (BYTE *)&vih,
|
|
};
|
|
IBaseFilter *filter = create_vmr7(VMRMode_Windowless);
|
|
LONG width, height, aspect_width, aspect_height;
|
|
IVMRWindowlessControl *windowless_control;
|
|
IFilterGraph2 *graph = create_graph();
|
|
struct testfilter source;
|
|
IMemAllocator *allocator;
|
|
RECT src, dst, expect;
|
|
IMemInputPin *input;
|
|
HWND window;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
IPin *pin;
|
|
|
|
IBaseFilter_QueryInterface(filter, &IID_IVMRWindowlessControl, (void **)&windowless_control);
|
|
IBaseFilter_FindPin(filter, L"VMR Input0", &pin);
|
|
IPin_QueryInterface(pin, &IID_IMemInputPin, (void **)&input);
|
|
testfilter_init(&source);
|
|
IFilterGraph2_AddFilter(graph, &source.filter.IBaseFilter_iface, L"source");
|
|
IFilterGraph2_AddFilter(graph, filter, L"vmr7");
|
|
window = CreateWindowA("static", "quartz_test", WS_OVERLAPPEDWINDOW, 0, 0, 640, 480, 0, 0, 0, 0);
|
|
ok(!!window, "Failed to create a window.\n");
|
|
|
|
hr = IVMRWindowlessControl_SetVideoClippingWindow(windowless_control, window);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IFilterGraph2_ConnectDirect(graph, &source.source.pin.IPin_iface, pin, &mt);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IMemInputPin_GetAllocator(input, &allocator);
|
|
todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
if (hr == S_OK)
|
|
{
|
|
hr = IMemAllocator_SetProperties(allocator, &req_props, &ret_props);
|
|
IMemAllocator_Release(allocator);
|
|
if (hr == E_FAIL)
|
|
{
|
|
skip("Got E_FAIL when setting allocator properties.\n");
|
|
goto out;
|
|
}
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!memcmp(&ret_props, &req_props, sizeof(req_props)), "Properties did not match.\n");
|
|
}
|
|
|
|
hr = IVMRWindowlessControl_GetNativeVideoSize(windowless_control, NULL, &height, &aspect_width, &aspect_height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
hr = IVMRWindowlessControl_GetNativeVideoSize(windowless_control, &width, NULL, &aspect_width, &aspect_height);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
width = height = 0xdeadbeef;
|
|
hr = IVMRWindowlessControl_GetNativeVideoSize(windowless_control, &width, &height, NULL, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(width == 32, "Got width %d.\n", width);
|
|
ok(height == 16, "Got height %d.\n", height);
|
|
|
|
aspect_width = aspect_height = 0xdeadbeef;
|
|
hr = IVMRWindowlessControl_GetNativeVideoSize(windowless_control, &width, &height, &aspect_width, &aspect_height);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(aspect_width == 32, "Got width %d.\n", aspect_width);
|
|
ok(aspect_height == 16, "Got height %d.\n", aspect_height);
|
|
|
|
memset(&src, 0xcc, sizeof(src));
|
|
hr = IVMRWindowlessControl_GetVideoPosition(windowless_control, &src, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
SetRect(&expect, 0, 0, 32, 16);
|
|
ok(EqualRect(&src, &expect), "Got source rect %s.\n", wine_dbgstr_rect(&src));
|
|
|
|
memset(&dst, 0xcc, sizeof(dst));
|
|
hr = IVMRWindowlessControl_GetVideoPosition(windowless_control, NULL, &dst);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
SetRect(&expect, 0, 0, 0, 0);
|
|
ok(EqualRect(&dst, &expect), "Got dest rect %s.\n", wine_dbgstr_rect(&dst));
|
|
|
|
SetRect(&src, 4, 6, 16, 12);
|
|
hr = IVMRWindowlessControl_SetVideoPosition(windowless_control, &src, NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
memset(&src, 0xcc, sizeof(src));
|
|
memset(&dst, 0xcc, sizeof(dst));
|
|
hr = IVMRWindowlessControl_GetVideoPosition(windowless_control, &src, &dst);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
SetRect(&expect, 4, 6, 16, 12);
|
|
ok(EqualRect(&src, &expect), "Got source rect %s.\n", wine_dbgstr_rect(&src));
|
|
SetRect(&expect, 0, 0, 0, 0);
|
|
ok(EqualRect(&dst, &expect), "Got dest rect %s.\n", wine_dbgstr_rect(&dst));
|
|
|
|
SetRect(&dst, 40, 60, 120, 160);
|
|
hr = IVMRWindowlessControl_SetVideoPosition(windowless_control, NULL, &dst);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
memset(&src, 0xcc, sizeof(src));
|
|
memset(&dst, 0xcc, sizeof(dst));
|
|
hr = IVMRWindowlessControl_GetVideoPosition(windowless_control, &src, &dst);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
SetRect(&expect, 4, 6, 16, 12);
|
|
ok(EqualRect(&src, &expect), "Got source rect %s.\n", wine_dbgstr_rect(&src));
|
|
SetRect(&expect, 40, 60, 120, 160);
|
|
ok(EqualRect(&dst, &expect), "Got dest rect %s.\n", wine_dbgstr_rect(&dst));
|
|
|
|
GetWindowRect(window, &src);
|
|
SetRect(&expect, 0, 0, 640, 480);
|
|
ok(EqualRect(&src, &expect), "Got window rect %s.\n", wine_dbgstr_rect(&src));
|
|
|
|
out:
|
|
ref = IFilterGraph2_Release(graph);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
IMemInputPin_Release(input);
|
|
IPin_Release(pin);
|
|
IVMRWindowlessControl_Release(windowless_control);
|
|
ref = IBaseFilter_Release(filter);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
DestroyWindow(window);
|
|
}
|
|
|
|
START_TEST(vmr7)
|
|
{
|
|
CoInitialize(NULL);
|
|
|
|
test_filter_config();
|
|
test_interfaces();
|
|
test_aggregation();
|
|
test_enum_pins();
|
|
test_find_pin();
|
|
test_pin_info();
|
|
test_media_types();
|
|
test_enum_media_types();
|
|
test_unconnected_filter_state();
|
|
test_connect_pin();
|
|
test_overlay();
|
|
test_video_window();
|
|
test_basic_video();
|
|
test_windowless_size();
|
|
|
|
CoUninitialize();
|
|
}
|