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
582b5432
Commit
582b5432
authored
Apr 14, 2015
by
Andrew Eikum
Committed by
Alexandre Julliard
Apr 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound/tests: Don't perform ALAW test on secondary buffers.
win2k supports it, winxp gives one error, vista+ gives another. This isn't interesting behavior to test.
parent
e17f4fd2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
19 deletions
+21
-19
dsound.c
dlls/dsound/tests/dsound.c
+21
-19
No files found.
dlls/dsound/tests/dsound.c
View file @
582b5432
...
...
@@ -1391,25 +1391,27 @@ static void perform_invalid_fmt_tests(const char *testname, IDirectSound *dso, I
ok
(
wfx
.
nAvgBytesPerSec
==
44100
*
4
+
1
,
"%s: avgbytes: %u
\n
"
,
testname
,
wfx
.
nAvgBytesPerSec
);
IDirectSoundBuffer_Release
(
got_buf
);
wfx
.
wFormatTag
=
WAVE_FORMAT_ALAW
;
wfx
.
nChannels
=
2
;
wfx
.
nSamplesPerSec
=
44100
;
wfx
.
wBitsPerSample
=
16
;
wfx
.
nBlockAlign
=
wfx
.
nChannels
*
wfx
.
wBitsPerSample
/
8
;
wfx
.
nAvgBytesPerSec
=
wfx
.
nSamplesPerSec
*
wfx
.
nBlockAlign
;
rc
=
do_invalid_fmt_test
(
dso
,
buf
,
&
wfx
,
&
got_buf
);
ok
(
buf
?
rc
==
S_OK
:
(
rc
==
E_NOTIMPL
||
rc
==
DSERR_INVALIDCALL
/* winxp */
),
"%s: SetFormat: %08x
\n
"
,
testname
,
rc
);
if
(
got_buf
){
rc
=
IDirectSoundBuffer_GetFormat
(
got_buf
,
&
wfx
,
sizeof
(
wfx
),
NULL
);
ok
(
rc
==
S_OK
,
"%s: GetFormat: %08x
\n
"
,
testname
,
rc
);
ok
(
wfx
.
wFormatTag
==
WAVE_FORMAT_ALAW
,
"%s: format: 0x%x
\n
"
,
testname
,
wfx
.
wFormatTag
);
ok
(
wfx
.
nChannels
==
2
,
"%s: channels: %u
\n
"
,
testname
,
wfx
.
nChannels
);
ok
(
wfx
.
nSamplesPerSec
==
44100
,
"%s: rate: %u
\n
"
,
testname
,
wfx
.
nSamplesPerSec
);
ok
(
wfx
.
wBitsPerSample
==
16
,
"%s: bps: %u
\n
"
,
testname
,
wfx
.
wBitsPerSample
);
ok
(
wfx
.
nBlockAlign
==
4
,
"%s: blockalign: %u
\n
"
,
testname
,
wfx
.
nBlockAlign
);
ok
(
wfx
.
nAvgBytesPerSec
==
44100
*
4
,
"%s: avgbytes: %u
\n
"
,
testname
,
wfx
.
nAvgBytesPerSec
);
IDirectSoundBuffer_Release
(
got_buf
);
if
(
buf
){
wfx
.
wFormatTag
=
WAVE_FORMAT_ALAW
;
wfx
.
nChannels
=
2
;
wfx
.
nSamplesPerSec
=
44100
;
wfx
.
wBitsPerSample
=
16
;
wfx
.
nBlockAlign
=
wfx
.
nChannels
*
wfx
.
wBitsPerSample
/
8
;
wfx
.
nAvgBytesPerSec
=
wfx
.
nSamplesPerSec
*
wfx
.
nBlockAlign
;
rc
=
do_invalid_fmt_test
(
dso
,
buf
,
&
wfx
,
&
got_buf
);
ok
(
rc
==
S_OK
,
"%s: SetFormat: %08x
\n
"
,
testname
,
rc
);
if
(
got_buf
){
rc
=
IDirectSoundBuffer_GetFormat
(
got_buf
,
&
wfx
,
sizeof
(
wfx
),
NULL
);
ok
(
rc
==
S_OK
,
"%s: GetFormat: %08x
\n
"
,
testname
,
rc
);
ok
(
wfx
.
wFormatTag
==
WAVE_FORMAT_ALAW
,
"%s: format: 0x%x
\n
"
,
testname
,
wfx
.
wFormatTag
);
ok
(
wfx
.
nChannels
==
2
,
"%s: channels: %u
\n
"
,
testname
,
wfx
.
nChannels
);
ok
(
wfx
.
nSamplesPerSec
==
44100
,
"%s: rate: %u
\n
"
,
testname
,
wfx
.
nSamplesPerSec
);
ok
(
wfx
.
wBitsPerSample
==
16
,
"%s: bps: %u
\n
"
,
testname
,
wfx
.
wBitsPerSample
);
ok
(
wfx
.
nBlockAlign
==
4
,
"%s: blockalign: %u
\n
"
,
testname
,
wfx
.
nBlockAlign
);
ok
(
wfx
.
nAvgBytesPerSec
==
44100
*
4
,
"%s: avgbytes: %u
\n
"
,
testname
,
wfx
.
nAvgBytesPerSec
);
IDirectSoundBuffer_Release
(
got_buf
);
}
}
if
(
!
gotdx8
){
...
...
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