[Bug 3716] auto-detection of audio devices in winecfg isn't working

Wine Bugs wine-bugs at winehq.org
Sun Nov 6 08:51:05 CST 2005


http://bugs.winehq.org/show_bug.cgi?id=3716





------- Additional Comments From infyquest at gmail.com  2005-06-11 08:51 -------
Hi Robert,
I made a patch that tells you all the audio modules detected.(which has been in 
the CVS)
By Default the its being set to OSS as it being the more stable one even if 
there is more than one.
For some other audio modules there is no accurate mechanism for detecting them 
like nas, audioIO(Solaris).
try this small program after you unload the modules for oss and also after 
removing the /dev entries

void main()
{
 int fd = open("/dev/dsp", O_WRONLY | O_NONBLOCK);

 if(fd)
 {
   close(fd);
   printf("OSS Detected\n");
 }
}

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list