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
8e62e823
Commit
8e62e823
authored
Oct 05, 2011
by
Jörg Höhle
Committed by
Alexandre Julliard
Oct 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi/tests: Fix errors and crashes in various native configurations.
parent
00684f84
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
capture.c
dlls/mmdevapi/tests/capture.c
+2
-2
render.c
dlls/mmdevapi/tests/render.c
+0
-0
No files found.
dlls/mmdevapi/tests/capture.c
View file @
8e62e823
...
...
@@ -196,7 +196,7 @@ static void test_audioclient(void)
hr
=
IAudioClient_GetDevicePeriod
(
ac
,
&
t1
,
&
t2
);
ok
(
hr
==
S_OK
,
"Valid GetDevicePeriod call returns %08x
\n
"
,
hr
);
trace
(
"Returned periods: %u.%0
5u ms %u.%05
u ms
\n
"
,
trace
(
"Returned periods: %u.%0
4u ms %u.%04
u ms
\n
"
,
(
UINT
)(
t1
/
10000
),
(
UINT
)(
t1
%
10000
),
(
UINT
)(
t2
/
10000
),
(
UINT
)(
t2
%
10000
));
...
...
@@ -278,7 +278,7 @@ static void test_audioclient(void)
hr
=
IAudioClient_GetStreamLatency
(
ac
,
&
t1
);
ok
(
hr
==
S_OK
,
"Valid GetStreamLatency call returns %08x
\n
"
,
hr
);
trace
(
"Returned latency: %u.%0
5
u ms
\n
"
,
trace
(
"Returned latency: %u.%0
4
u ms
\n
"
,
(
UINT
)(
t1
/
10000
),
(
UINT
)(
t1
%
10000
));
hr
=
IAudioClient_Initialize
(
ac
,
AUDCLNT_SHAREMODE_SHARED
,
0
,
5000000
,
0
,
pwfx
,
NULL
);
...
...
dlls/mmdevapi/tests/render.c
View file @
8e62e823
This diff is collapsed.
Click to expand it.
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