Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com>
---
dlls/quartz/tests/vmr9.c | 116 +++++++++++++++++++++++++++++++++++++++
1 file changed, 116 insertions(+)
diff --git a/dlls/quartz/tests/vmr9.c b/dlls/quartz/tests/vmr9.c
index 656f943ca35..2416d2c0d19 100644
--- a/dlls/quartz/tests/vmr9.c
+++ b/dlls/quartz/tests/vmr9.c
@@ -3729,6 +3729,121 @@ out:
ok(!ref, "Got outstanding refcount %d.\n", ref);
}
+static void test_windowless_size(void)
+{
+ 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_vmr9(VMR9Mode_Windowless);
+ LONG width, height, aspect_width, aspect_height;
+ IVMRWindowlessControl9 *windowless_control;
+ IFilterGraph2 *graph = create_graph();
+ struct testfilter source;
+ RECT src, dst, expect;
+ IMemInputPin *input;
+ HWND window;
+ HRESULT hr;
+ ULONG ref;
+ IPin *pin;
+
+ IBaseFilter_QueryInterface(filter, &IID_IVMRWindowlessControl9, (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"vmr9");
+ window = CreateWindowA("static", "quartz_test", WS_OVERLAPPEDWINDOW, 0, 0, 640, 480, 0, 0, 0, 0);
+ ok(!!window, "Failed to create a window.\n");
+
+ hr = IVMRWindowlessControl9_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);
+ test_allocator(input);
+
+ hr = IVMRWindowlessControl9_GetNativeVideoSize(windowless_control, NULL, &height, &aspect_width, &aspect_height);
+ ok(hr == E_POINTER, "Got hr %#x.\n", hr);
+ hr = IVMRWindowlessControl9_GetNativeVideoSize(windowless_control, &width, NULL, &aspect_width, &aspect_height);
+ ok(hr == E_POINTER, "Got hr %#x.\n", hr);
+
+ width = height = 0xdeadbeef;
+ hr = IVMRWindowlessControl9_GetNativeVideoSize(windowless_control, &width, &height, NULL, NULL);
+ todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
+ todo_wine ok(width == 32, "Got width %d.\n", width);
+ todo_wine ok(height == 16, "Got height %d.\n", height);
+
+ aspect_width = aspect_height = 0xdeadbeef;
+ hr = IVMRWindowlessControl9_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 = IVMRWindowlessControl9_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 = IVMRWindowlessControl9_GetVideoPosition(windowless_control, NULL, &dst);
+ ok(hr == S_OK, "Got hr %#x.\n", hr);
+ SetRect(&expect, 0, 0, 0, 0);
+ todo_wine ok(EqualRect(&dst, &expect), "Got dest rect %s.\n", wine_dbgstr_rect(&dst));
+
+ SetRect(&src, 4, 6, 16, 12);
+ hr = IVMRWindowlessControl9_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 = IVMRWindowlessControl9_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);
+ todo_wine ok(EqualRect(&dst, &expect), "Got dest rect %s.\n", wine_dbgstr_rect(&dst));
+
+ SetRect(&dst, 40, 60, 120, 160);
+ hr = IVMRWindowlessControl9_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 = IVMRWindowlessControl9_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);
+ todo_wine 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));
+
+ ref = IFilterGraph2_Release(graph);
+ ok(!ref, "Got outstanding refcount %d.\n", ref);
+ IMemInputPin_Release(input);
+ IPin_Release(pin);
+ IVMRWindowlessControl9_Release(windowless_control);
+ ref = IBaseFilter_Release(filter);
+ ok(!ref, "Got outstanding refcount %d.\n", ref);
+ DestroyWindow(window);
+}
+
START_TEST(vmr9)
{
IBaseFilter *filter;
@@ -3762,6 +3877,7 @@ START_TEST(vmr9)
test_clipping_window();
test_surface_allocator_notify_refcount();
test_basic_video();
+ test_windowless_size();
CoUninitialize();
}
--
2.26.2