Quantcast
Channel: naudio Work Item Rss Feed
Viewing all articles
Browse latest Browse all 738

Created Unassigned: Wrong DirectSound device GUID [16461]

$
0
0
There are wrong DirectSoundDeviceInfo.Guid and DirectSoundDeviceInfo.ModuleName in NAudio implementation.

List of devices using NAudio (with incorrect Guids)
(_Install-Package NAudio_)
```
foreach (var d in DirectSoundOut.Devices)
{
Console.WriteLine("{0} {1} {2}", d.Description, d.Guid, d.ModuleName);
}
```

List of devices using SlimDX (with correct Guids, I've checked that the same in a Windows registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture)
(_Install-Package SlimDX_)
```
foreach(DeviceInformation d in DirectSoundCapture.GetDevices())
{
Console.WriteLine("{0} {1} {2}", d.Description, d.ModuleName, d.DriverGuid);
}
```


Viewing all articles
Browse latest Browse all 738

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>