Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
fc88f4b3
Commit
fc88f4b3
authored
Apr 13, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Check for IAMVideoAccelerator.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d3e74a72
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
videorenderer.c
dlls/quartz/tests/videorenderer.c
+3
-0
vmr7.c
dlls/quartz/tests/vmr7.c
+3
-0
vmr9.c
dlls/quartz/tests/vmr9.c
+3
-0
No files found.
dlls/quartz/tests/videorenderer.c
View file @
fc88f4b3
...
...
@@ -20,6 +20,7 @@
#define COBJMACROS
#include "dshow.h"
#include "videoacc.h"
#include "wine/strmbase.h"
#include "wine/test.h"
...
...
@@ -89,6 +90,7 @@ static void test_interfaces(void)
check_interface
(
filter
,
&
IID_IVideoWindow
,
TRUE
);
check_interface
(
filter
,
&
IID_IAMFilterMiscFlags
,
FALSE
);
check_interface
(
filter
,
&
IID_IAMVideoAccelerator
,
FALSE
);
check_interface
(
filter
,
&
IID_IBasicAudio
,
FALSE
);
check_interface
(
filter
,
&
IID_IDispatch
,
FALSE
);
check_interface
(
filter
,
&
IID_IOverlay
,
FALSE
);
...
...
@@ -105,6 +107,7 @@ static void test_interfaces(void)
todo_wine
check_interface
(
pin
,
&
IID_IQualityControl
,
TRUE
);
check_interface
(
pin
,
&
IID_IUnknown
,
TRUE
);
check_interface
(
pin
,
&
IID_IAMVideoAccelerator
,
FALSE
);
check_interface
(
pin
,
&
IID_IAsyncReader
,
FALSE
);
check_interface
(
pin
,
&
IID_IMediaPosition
,
FALSE
);
check_interface
(
pin
,
&
IID_IMediaSeeking
,
FALSE
);
...
...
dlls/quartz/tests/vmr7.c
View file @
fc88f4b3
...
...
@@ -23,6 +23,7 @@
#include "dshow.h"
#include "d3d9.h"
#include "vmr9.h"
#include "videoacc.h"
#include "wine/strmbase.h"
#include "wine/test.h"
...
...
@@ -239,6 +240,7 @@ static void test_common_interfaces(IBaseFilter *filter)
check_interface
(
filter
,
&
IID_IVMRFilterConfig
,
TRUE
);
todo_wine
check_interface
(
filter
,
&
IID_IVMRMixerBitmap
,
TRUE
);
check_interface
(
filter
,
&
IID_IAMVideoAccelerator
,
FALSE
);
check_interface
(
filter
,
&
IID_IBasicAudio
,
FALSE
);
check_interface
(
filter
,
&
IID_IDirectDrawVideo
,
FALSE
);
check_interface
(
filter
,
&
IID_IPersistPropertyBag
,
FALSE
);
...
...
@@ -255,6 +257,7 @@ static void test_common_interfaces(IBaseFilter *filter)
IBaseFilter_FindPin
(
filter
,
L"VMR Input0"
,
&
pin
);
todo_wine
check_interface
(
pin
,
&
IID_IAMVideoAccelerator
,
TRUE
);
check_interface
(
pin
,
&
IID_IMemInputPin
,
TRUE
);
check_interface
(
pin
,
&
IID_IOverlay
,
TRUE
);
check_interface
(
pin
,
&
IID_IPin
,
TRUE
);
...
...
dlls/quartz/tests/vmr9.c
View file @
fc88f4b3
...
...
@@ -27,6 +27,7 @@
#include "qedit.h"
#include "d3d9.h"
#include "vmr9.h"
#include "videoacc.h"
#include "wmcodecdsp.h"
#include "wine/strmbase.h"
#include "wine/test.h"
...
...
@@ -246,6 +247,7 @@ static void test_common_interfaces(IBaseFilter *filter)
check_interface
(
filter
,
&
IID_IVMRFilterConfig9
,
TRUE
);
check_interface
(
filter
,
&
IID_IVMRMixerBitmap9
,
TRUE
);
check_interface
(
filter
,
&
IID_IAMVideoAccelerator
,
FALSE
);
check_interface
(
filter
,
&
IID_IBasicAudio
,
FALSE
);
check_interface
(
filter
,
&
IID_IDirectDrawVideo
,
FALSE
);
check_interface
(
filter
,
&
IID_IPersistPropertyBag
,
FALSE
);
...
...
@@ -262,6 +264,7 @@ static void test_common_interfaces(IBaseFilter *filter)
IBaseFilter_FindPin
(
filter
,
L"VMR Input0"
,
&
pin
);
todo_wine
check_interface
(
pin
,
&
IID_IAMVideoAccelerator
,
TRUE
);
check_interface
(
pin
,
&
IID_IMemInputPin
,
TRUE
);
check_interface
(
pin
,
&
IID_IOverlay
,
TRUE
);
check_interface
(
pin
,
&
IID_IPin
,
TRUE
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment