Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
2fe3b3a0
Commit
2fe3b3a0
authored
Dec 27, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Dec 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Skip the IVideoWindow tests if connecting returns E_FAIL.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3b09a6b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
vmr9.c
dlls/quartz/tests/vmr9.c
+7
-2
No files found.
dlls/quartz/tests/vmr9.c
View file @
2fe3b3a0
...
@@ -2180,7 +2180,13 @@ static void test_video_window(void)
...
@@ -2180,7 +2180,13 @@ static void test_video_window(void)
testfilter_init
(
&
source
);
testfilter_init
(
&
source
);
IFilterGraph2_AddFilter
(
graph
,
&
source
.
filter
.
IBaseFilter_iface
,
NULL
);
IFilterGraph2_AddFilter
(
graph
,
&
source
.
filter
.
IBaseFilter_iface
,
NULL
);
IFilterGraph2_AddFilter
(
graph
,
filter
,
NULL
);
IFilterGraph2_AddFilter
(
graph
,
filter
,
NULL
);
IFilterGraph2_QueryInterface
(
graph
,
&
IID_IMediaControl
,
(
void
**
)
&
control
);
hr
=
IFilterGraph2_ConnectDirect
(
graph
,
&
source
.
source
.
pin
.
IPin_iface
,
pin
,
&
req_mt
);
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
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IMemInputPin_GetAllocator
(
input
,
&
allocator
);
hr
=
IMemInputPin_GetAllocator
(
input
,
&
allocator
);
...
@@ -2215,8 +2221,6 @@ static void test_video_window(void)
...
@@ -2215,8 +2221,6 @@ static void test_video_window(void)
hr
=
IVideoWindow_GetMaxIdealImageSize
(
window
,
&
width
,
&
height
);
hr
=
IVideoWindow_GetMaxIdealImageSize
(
window
,
&
width
,
&
height
);
todo_wine
ok
(
hr
==
VFW_E_WRONG_STATE
,
"Got hr %#x.
\n
"
,
hr
);
todo_wine
ok
(
hr
==
VFW_E_WRONG_STATE
,
"Got hr %#x.
\n
"
,
hr
);
IFilterGraph2_QueryInterface
(
graph
,
&
IID_IMediaControl
,
(
void
**
)
&
control
);
hr
=
IMediaControl_Pause
(
control
);
hr
=
IMediaControl_Pause
(
control
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
...
@@ -2237,6 +2241,7 @@ static void test_video_window(void)
...
@@ -2237,6 +2241,7 @@ static void test_video_window(void)
hr
=
IMediaControl_Stop
(
control
);
hr
=
IMediaControl_Stop
(
control
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
out:
IMediaControl_Release
(
control
);
IMediaControl_Release
(
control
);
IFilterGraph2_Release
(
graph
);
IFilterGraph2_Release
(
graph
);
IVideoWindow_Release
(
window
);
IVideoWindow_Release
(
window
);
...
...
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