Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
a9d2fb8e
Commit
a9d2fb8e
authored
21 years ago
by
Robert Reif
Committed by
Alexandre Julliard
21 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a problem on BSD.
Fixed a trace.
parent
6d5ba7d4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/winmm/wineoss/audio.c
+3
-1
3 additions, 1 deletion
dlls/winmm/wineoss/audio.c
with
3 additions
and
1 deletion
dlls/winmm/wineoss/audio.c
+
3
−
1
View file @
a9d2fb8e
...
...
@@ -589,7 +589,7 @@ static BOOL OSS_WaveOutInit(OSS_DEVICE* ossdev)
*/
int
oss_mask
,
oss_caps
;
ioctl
(
ossdev
->
fd
,
SNDCTL_DSP_GETFMTS
,
&
oss_mask
);
TRACE
(
"OSS dsp out mask=%08x
\n
"
,
oss_mask
);
TRACE
(
"OSS dsp out mask=%08x
(
"
,
oss_mask
);
if
(
oss_mask
&
AFMT_MU_LAW
)
TRACE
(
"AFMT_MU_LAW "
);
if
(
oss_mask
&
AFMT_A_LAW
)
TRACE
(
"AFMT_A_LAW "
);
if
(
oss_mask
&
AFMT_IMA_ADPCM
)
TRACE
(
"AFMT_IMA_ADPCM "
);
...
...
@@ -614,7 +614,9 @@ static BOOL OSS_WaveOutInit(OSS_DEVICE* ossdev)
#ifdef DSP_CAP_MULTI
TRACE
(
"
\t
Multi: %s
\n
"
,
oss_caps
&
DSP_CAP_MULTI
?
"true"
:
"false"
);
#endif
#ifdef DSP_CAP_BIND
TRACE
(
"
\t
Bind: %s
\n
"
,
oss_caps
&
DSP_CAP_BIND
?
"true"
:
"false"
);
#endif
}
/* We must first set the format and the stereo mode as some sound cards
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment