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
86976d53
Commit
86976d53
authored
Mar 31, 2004
by
Robert Reif
Committed by
Alexandre Julliard
Mar 31, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More duplex mode soundcard info.
parent
85c2ccec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
1 deletion
+30
-1
audio.c
dlls/winmm/wineoss/audio.c
+30
-1
No files found.
dlls/winmm/wineoss/audio.c
View file @
86976d53
...
@@ -892,7 +892,9 @@ static BOOL OSS_WaveInInit(OSS_DEVICE* ossdev)
...
@@ -892,7 +892,9 @@ static BOOL OSS_WaveInInit(OSS_DEVICE* ossdev)
*/
*/
static
void
OSS_WaveFullDuplexInit
(
OSS_DEVICE
*
ossdev
)
static
void
OSS_WaveFullDuplexInit
(
OSS_DEVICE
*
ossdev
)
{
{
int
caps
;
int
rc
,
arg
;
int
f
,
c
,
r
;
int
caps
;
TRACE
(
"(%p) %s
\n
"
,
ossdev
,
ossdev
->
dev_name
);
TRACE
(
"(%p) %s
\n
"
,
ossdev
,
ossdev
->
dev_name
);
if
(
OSS_OpenDevice
(
ossdev
,
O_RDWR
,
NULL
,
0
,
-
1
,
-
1
,
-
1
)
!=
0
)
if
(
OSS_OpenDevice
(
ossdev
,
O_RDWR
,
NULL
,
0
,
-
1
,
-
1
,
-
1
)
!=
0
)
...
@@ -905,6 +907,33 @@ static void OSS_WaveFullDuplexInit(OSS_DEVICE* ossdev)
...
@@ -905,6 +907,33 @@ static void OSS_WaveFullDuplexInit(OSS_DEVICE* ossdev)
if
(
WINE_TRACE_ON
(
wave
))
if
(
WINE_TRACE_ON
(
wave
))
OSS_Info
(
ossdev
->
fd
);
OSS_Info
(
ossdev
->
fd
);
/* See the comment in OSS_WaveOutInit */
for
(
f
=
0
;
f
<
2
;
f
++
)
{
arg
=
win_std_oss_fmts
[
f
];
rc
=
ioctl
(
ossdev
->
fd
,
SNDCTL_DSP_SAMPLESIZE
,
&
arg
);
if
(
rc
!=
0
||
arg
!=
win_std_oss_fmts
[
f
])
{
TRACE
(
"DSP_SAMPLESIZE: rc=%d returned 0x%x for 0x%x
\n
"
,
rc
,
arg
,
win_std_oss_fmts
[
f
]);
continue
;
}
for
(
c
=
0
;
c
<
2
;
c
++
)
{
arg
=
c
;
rc
=
ioctl
(
ossdev
->
fd
,
SNDCTL_DSP_STEREO
,
&
arg
);
if
(
rc
!=
0
||
arg
!=
c
)
{
TRACE
(
"DSP_STEREO: rc=%d returned %d for %d
\n
"
,
rc
,
arg
,
c
);
continue
;
}
for
(
r
=
0
;
r
<
sizeof
(
win_std_rates
)
/
sizeof
(
*
win_std_rates
);
r
++
)
{
arg
=
win_std_rates
[
r
];
rc
=
ioctl
(
ossdev
->
fd
,
SNDCTL_DSP_SPEED
,
&
arg
);
TRACE
(
"DSP_SPEED: rc=%d returned %d for %dx%dx%d
\n
"
,
rc
,
arg
,
win_std_rates
[
r
],
win_std_oss_fmts
[
f
],
c
+
1
);
}
}
}
if
(
ioctl
(
ossdev
->
fd
,
SNDCTL_DSP_GETCAPS
,
&
caps
)
==
0
)
if
(
ioctl
(
ossdev
->
fd
,
SNDCTL_DSP_GETCAPS
,
&
caps
)
==
0
)
ossdev
->
full_duplex
=
(
caps
&
DSP_CAP_DUPLEX
);
ossdev
->
full_duplex
=
(
caps
&
DSP_CAP_DUPLEX
);
...
...
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