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
d322d63b
Commit
d322d63b
authored
Oct 08, 2007
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Oct 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Set default sound driver to alsa,oss,coreaudio.
parent
4b4cfff4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
35 deletions
+7
-35
winemm.h
dlls/winmm/winemm.h
+1
-1
audio.c
programs/winecfg/audio.c
+6
-34
No files found.
dlls/winmm/winemm.h
View file @
d322d63b
...
...
@@ -25,7 +25,7 @@
#include "winbase.h"
#include "mmddk.h"
#define WINE_DEFAULT_WINMM_DRIVER "
oss
"
#define WINE_DEFAULT_WINMM_DRIVER "
alsa,oss,coreaudio
"
#define WINE_DEFAULT_WINMM_MAPPER "msacm32.drv"
#define WINE_DEFAULT_WINMM_MIDI "midimap.dll"
...
...
programs/winecfg/audio.c
View file @
d322d63b
...
...
@@ -82,12 +82,12 @@ static const char* DSound_Bits[] = {
static
const
AUDIO_DRIVER
sAudioDrivers
[]
=
{
{
IDS_DRIVER_ALSA
,
"alsa"
},
{
IDS_DRIVER_ESOUND
,
"esd"
},
{
IDS_DRIVER_OSS
,
"oss"
},
{
IDS_DRIVER_COREAUDIO
,
"coreaudio"
},
{
IDS_DRIVER_JACK
,
"jack"
},
{
IDS_DRIVER_NAS
,
"nas"
},
{
IDS_DRIVER_ESOUND
,
"esd"
},
{
IDS_DRIVER_AUDIOIO
,
"audioio"
},
{
IDS_DRIVER_COREAUDIO
,
"coreaudio"
},
{
0
,
""
}
};
...
...
@@ -623,41 +623,13 @@ static void initAudioDlg (HWND hDlg)
buf
=
get_reg_key
(
config_key
,
"Drivers"
,
"Audio"
,
NULL
);
/* check for first time install and set a default driver
* select
in this order: oss, alsa, first available driver,
none
* select
first available driver, and if that fails:
none
*/
if
(
buf
==
NULL
)
{
const
AUDIO_DRIVER
*
pAudioDrv
=
NULL
;
/* select oss if available */
for
(
pAudioDrv
=
loadedAudioDrv
;
pAudioDrv
->
nameID
;
pAudioDrv
++
)
{
if
(
strcmp
(
pAudioDrv
->
szDriver
,
"oss"
)
==
0
)
{
selectDriver
(
hDlg
,
"oss"
);
break
;
}
}
if
(
strlen
(
curAudioDriver
)
==
0
)
{
/* select alsa if available */
for
(
pAudioDrv
=
loadedAudioDrv
;
pAudioDrv
->
nameID
;
pAudioDrv
++
)
{
if
(
strcmp
(
pAudioDrv
->
szDriver
,
"alsa"
)
==
0
)
{
selectDriver
(
hDlg
,
"alsa"
);
break
;
}
}
}
if
(
strlen
(
curAudioDriver
)
==
0
)
{
/* select first available driver */
if
(
*
loadedAudioDrv
->
szDriver
)
selectDriver
(
hDlg
,
loadedAudioDrv
->
szDriver
);
}
/* select first available driver */
if
(
*
loadedAudioDrv
->
szDriver
)
selectDriver
(
hDlg
,
loadedAudioDrv
->
szDriver
);
}
else
/* make a local copy of the current registry setting */
strcpy
(
curAudioDriver
,
buf
);
...
...
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