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
343f85ea
Commit
343f85ea
authored
Aug 02, 2010
by
Jeff Cook
Committed by
Alexandre Julliard
Aug 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winealsa.drv: If we can't open a device as stereo, try mono. This is necessary…
winealsa.drv: If we can't open a device as stereo, try mono. This is necessary for snd-usb-audio mics.
parent
6120d7cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
waveinit.c
dlls/winealsa.drv/waveinit.c
+4
-0
No files found.
dlls/winealsa.drv/waveinit.c
View file @
343f85ea
...
...
@@ -106,6 +106,10 @@ static int ALSA_TestDeviceForWine(int card, int device, snd_pcm_stream_t stream
retcode
=
snd_pcm_hw_params_set_channels
(
pcm
,
hwparams
,
2
);
if
(
retcode
<
0
)
{
retcode
=
snd_pcm_hw_params_set_channels
(
pcm
,
hwparams
,
1
);
/* If we can't open stereo, try mono; this is vital for snd_usb_audio microphones */
}
if
(
retcode
<
0
)
{
reason
=
"Could not set channels"
;
goto
exit
;
}
...
...
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