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
78f6d671
Commit
78f6d671
authored
Sep 29, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Sep 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Add tests for sample presentation time for the video renderer.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0867dd77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
84 additions
and
4 deletions
+84
-4
videorenderer.c
dlls/quartz/tests/videorenderer.c
+84
-4
No files found.
dlls/quartz/tests/videorenderer.c
View file @
78f6d671
...
...
@@ -663,11 +663,11 @@ static DWORD WINAPI frame_thread(void *arg)
return
hr
;
}
static
HANDLE
send_frame
(
IMemInputPin
*
sink
)
static
HANDLE
send_frame
_time
(
IMemInputPin
*
sink
,
REFERENCE_TIME
start_time
,
unsigned
char
color
)
{
struct
frame_thread_params
*
params
=
heap_alloc
(
sizeof
(
*
params
));
REFERENCE_TIME
start_time
,
end_time
;
IMemAllocator
*
allocator
;
REFERENCE_TIME
end_time
;
IMediaSample
*
sample
;
HANDLE
thread
;
HRESULT
hr
;
...
...
@@ -681,12 +681,12 @@ static HANDLE send_frame(IMemInputPin *sink)
hr
=
IMediaSample_GetPointer
(
sample
,
&
data
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
memset
(
data
,
0x55
,
32
*
16
*
2
);
memset
(
data
,
color
,
32
*
16
*
2
);
hr
=
IMediaSample_SetActualDataLength
(
sample
,
32
*
16
*
2
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
start_time
=
0
;
start_time
*=
1000000
0
;
end_time
=
start_time
+
10000000
;
hr
=
IMediaSample_SetTime
(
sample
,
&
start_time
,
&
end_time
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
...
...
@@ -699,6 +699,11 @@ static HANDLE send_frame(IMemInputPin *sink)
return
thread
;
}
static
HANDLE
send_frame
(
IMemInputPin
*
sink
)
{
return
send_frame_time
(
sink
,
0
,
0x55
);
/* purple */
}
static
HRESULT
join_thread_
(
int
line
,
HANDLE
thread
)
{
DWORD
ret
;
...
...
@@ -912,6 +917,80 @@ static void test_flushing(IPin *pin, IMemInputPin *input, IFilterGraph2 *graph)
IMediaControl_Release
(
control
);
}
static
void
test_sample_time
(
IPin
*
pin
,
IMemInputPin
*
input
,
IFilterGraph2
*
graph
)
{
IMediaControl
*
control
;
OAFilterState
state
;
HANDLE
thread
;
HRESULT
hr
;
IFilterGraph2_QueryInterface
(
graph
,
&
IID_IMediaControl
,
(
void
**
)
&
control
);
hr
=
IMediaControl_Pause
(
control
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IMediaControl_GetState
(
control
,
0
,
&
state
);
todo_wine
ok
(
hr
==
VFW_S_STATE_INTERMEDIATE
,
"Got hr %#x.
\n
"
,
hr
);
thread
=
send_frame_time
(
input
,
1
,
0x11
);
/* dark blue */
hr
=
IMediaControl_GetState
(
control
,
1000
,
&
state
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
WaitForSingleObject
(
thread
,
100
)
==
WAIT_TIMEOUT
,
"Thread should block in Receive().
\n
"
);
hr
=
IMediaControl_Run
(
control
);
todo_wine
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
WaitForSingleObject
(
thread
,
500
)
==
WAIT_TIMEOUT
,
"Thread should block in Receive().
\n
"
);
hr
=
join_thread
(
thread
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
/* Sample time is relative to the time passed to Run(). Thus a sample
* stamped at or earlier than 1s will now be displayed immediately, because
* that time has already passed.
* One may manually verify that all of the frames in this function are
* rendered, including (by adding a Sleep() after sending the frame) the
* dark and light green frames. Thus the video renderer does not attempt to
* drop any frames that it considers late. This remains true if the frames
* are marked as discontinuous. */
hr
=
join_thread
(
send_frame_time
(
input
,
1
,
0x22
));
/* dark green */
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
join_thread
(
send_frame_time
(
input
,
0
,
0x33
));
/* light green */
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
join_thread
(
send_frame_time
(
input
,
-
2
,
0x44
));
/* dark red */
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
thread
=
send_frame_time
(
input
,
2
,
0x66
);
/* orange */
ok
(
WaitForSingleObject
(
thread
,
800
)
==
WAIT_TIMEOUT
,
"Thread should block in Receive().
\n
"
);
hr
=
join_thread
(
thread
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
thread
=
send_frame_time
(
input
,
1000000
,
0xff
);
/* white */
ok
(
WaitForSingleObject
(
thread
,
100
)
==
WAIT_TIMEOUT
,
"Thread should block in Receive().
\n
"
);
hr
=
IPin_BeginFlush
(
pin
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
join_thread
(
thread
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IPin_EndFlush
(
pin
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
thread
=
send_frame_time
(
input
,
1000000
,
0xff
);
ok
(
WaitForSingleObject
(
thread
,
100
)
==
WAIT_TIMEOUT
,
"Thread should block in Receive().
\n
"
);
hr
=
IMediaControl_Stop
(
control
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
join_thread
(
thread
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
IMediaControl_Release
(
control
);
}
static
void
test_connect_pin
(
void
)
{
VIDEOINFOHEADER
vih
=
...
...
@@ -1017,6 +1096,7 @@ static void test_connect_pin(void)
test_filter_state
(
input
,
graph
);
test_flushing
(
pin
,
input
,
graph
);
test_sample_time
(
pin
,
input
,
graph
);
hr
=
IFilterGraph2_Disconnect
(
graph
,
pin
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
...
...
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