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
df4409fb
Commit
df4409fb
authored
May 05, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
May 05, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winejack.drv only supports 16bit sound so we can simplify the sound
format checks.
parent
91c2507d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
22 deletions
+12
-22
audio.c
dlls/winmm/winejack/audio.c
+12
-22
No files found.
dlls/winmm/winejack/audio.c
View file @
df4409fb
...
...
@@ -1231,22 +1231,17 @@ static DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
return
MMSYSERR_ALLOCATED
;
}
/* make sure we aren't being opened in 8 bit mode */
if
(
lpDesc
->
lpFormat
->
wBitsPerSample
==
8
)
{
TRACE
(
"8bits per sample unsupported, returning WAVERR_BADFORMAT
\n
"
);
return
WAVERR_BADFORMAT
;
}
/* only PCM format is supported so far... */
/* Only the PCM format is supported so far...
* Also we only support 16 bit mode.
*/
if
(
lpDesc
->
lpFormat
->
wFormatTag
!=
WAVE_FORMAT_PCM
||
lpDesc
->
lpFormat
->
nChannels
==
0
||
lpDesc
->
lpFormat
->
nSamplesPerSec
==
0
||
(
lpDesc
->
lpFormat
->
wBitsPerSample
!=
8
&&
lpDesc
->
lpFormat
->
wBitsPerSample
!=
16
)
)
lpDesc
->
lpFormat
->
wBitsPerSample
!=
16
)
{
WARN
(
"Bad format: tag=%04X nChannels=%d nSamplesPerSec=%ld !
\n
"
,
WARN
(
"Bad format: tag=%04X nChannels=%d nSamplesPerSec=%ld
wBitsPerSample=%d
!
\n
"
,
lpDesc
->
lpFormat
->
wFormatTag
,
lpDesc
->
lpFormat
->
nChannels
,
lpDesc
->
lpFormat
->
nSamplesPerSec
);
lpDesc
->
lpFormat
->
nSamplesPerSec
,
lpDesc
->
lpFormat
->
wBitsPerSample
);
return
WAVERR_BADFORMAT
;
}
...
...
@@ -2104,22 +2099,17 @@ static DWORD widOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
return
MMSYSERR_ALLOCATED
;
}
/* make sure we aren't being opened in 8 bit mode */
if
(
lpDesc
->
lpFormat
->
wBitsPerSample
==
8
)
{
TRACE
(
"8bits per sample unsupported, returning WAVERR_BADFORMAT
\n
"
);
return
WAVERR_BADFORMAT
;
}
/* only PCM format is supported so far... */
/* Only the PCM format is supported so far...
* Also we only support 16 bit mode.
*/
if
(
lpDesc
->
lpFormat
->
wFormatTag
!=
WAVE_FORMAT_PCM
||
lpDesc
->
lpFormat
->
nChannels
==
0
||
lpDesc
->
lpFormat
->
nSamplesPerSec
==
0
||
(
lpDesc
->
lpFormat
->
wBitsPerSample
!=
8
&&
lpDesc
->
lpFormat
->
wBitsPerSample
!=
16
)
)
lpDesc
->
lpFormat
->
wBitsPerSample
!=
16
)
{
WARN
(
"Bad format: tag=%04X nChannels=%d nSamplesPerSec=%ld !
\n
"
,
WARN
(
"Bad format: tag=%04X nChannels=%d nSamplesPerSec=%ld
wBitsPerSample=%d
!
\n
"
,
lpDesc
->
lpFormat
->
wFormatTag
,
lpDesc
->
lpFormat
->
nChannels
,
lpDesc
->
lpFormat
->
nSamplesPerSec
);
lpDesc
->
lpFormat
->
nSamplesPerSec
,
lpDesc
->
lpFormat
->
wBitsPerSample
);
return
WAVERR_BADFORMAT
;
}
...
...
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