[PATCH 2/2] dxva2: Check input stream format in GetVideoProcessorDeviceGuids().

Nikolay Sivov nsivov at codeweavers.com
Mon Jun 7 11:34:16 CDT 2021


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/dxva2/main.c        | 5 +++++
 dlls/dxva2/tests/dxva2.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dlls/dxva2/main.c b/dlls/dxva2/main.c
index 4eefffd6052..f91b033055c 100644
--- a/dlls/dxva2/main.c
+++ b/dlls/dxva2/main.c
@@ -390,6 +390,11 @@ static HRESULT WINAPI device_manager_processor_service_GetVideoProcessorDeviceGu
 {
     FIXME("%p, %p, %p, %p semi-stub.\n", iface, video_desc, count, guids);
 
+    *count = 0;
+
+    if (!dxva_is_supported_stream_format(video_desc))
+        return E_FAIL;
+
     if (!(*guids = CoTaskMemAlloc(sizeof(**guids))))
         return E_OUTOFMEMORY;
 
diff --git a/dlls/dxva2/tests/dxva2.c b/dlls/dxva2/tests/dxva2.c
index f785b2ce147..80749b81f12 100644
--- a/dlls/dxva2/tests/dxva2.c
+++ b/dlls/dxva2/tests/dxva2.c
@@ -380,7 +380,6 @@ static void test_device_manager(void)
         ok(hr == E_FAIL, "Unexpected hr %#x, format %d.\n", hr, rt_unsupported_formats[i]);
 
         hr = IDirectXVideoProcessorService_GetVideoProcessorDeviceGuids(proc_service, &video_desc, &count, &guids);
-    todo_wine
         ok(hr == E_FAIL, "Unexpected hr %#x.\n", hr);
     }
 
-- 
2.30.2




More information about the wine-devel mailing list