Zebediah Figura : quartz/tests: Add some tests for DirectSound renderer pin interfaces.

Alexandre Julliard julliard at winehq.org
Tue Mar 12 16:56:15 CDT 2019


Module: wine
Branch: master
Commit: 6f81d51e38b76cbb9455e90d038440316f54042e
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=6f81d51e38b76cbb9455e90d038440316f54042e

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Tue Mar 12 00:33:00 2019 -0500

quartz/tests: Add some tests for DirectSound renderer pin interfaces.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/quartz/tests/dsoundrender.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/dlls/quartz/tests/dsoundrender.c b/dlls/quartz/tests/dsoundrender.c
index 28166e5..0d48bec 100644
--- a/dlls/quartz/tests/dsoundrender.c
+++ b/dlls/quartz/tests/dsoundrender.c
@@ -129,6 +129,7 @@ static void check_interface_(unsigned int line, void *iface_ptr, REFIID iid, BOO
 static void test_interfaces(void)
 {
     IBaseFilter *filter = create_dsound_render();
+    IPin *pin;
 
     check_interface(filter, &IID_IAMDirectSound, TRUE);
     check_interface(filter, &IID_IBaseFilter, TRUE);
@@ -150,6 +151,18 @@ static void test_interfaces(void)
     check_interface(filter, &IID_IQualProp, FALSE);
     check_interface(filter, &IID_IVideoWindow, FALSE);
 
+    IBaseFilter_FindPin(filter, sink_id, &pin);
+
+    check_interface(pin, &IID_IPin, TRUE);
+    check_interface(pin, &IID_IMemInputPin, TRUE);
+    todo_wine check_interface(pin, &IID_IQualityControl, TRUE);
+    check_interface(pin, &IID_IUnknown, TRUE);
+
+    check_interface(pin, &IID_IAsyncReader, FALSE);
+    check_interface(pin, &IID_IMediaPosition, FALSE);
+    todo_wine check_interface(pin, &IID_IMediaSeeking, FALSE);
+
+    IPin_Release(pin);
     IBaseFilter_Release(filter);
 }
 




More information about the wine-cvs mailing list