aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/dsound.c
Commit message (Collapse)AuthorAgeFilesLines
* Use a separate backend callback to start playback of the deviceChris Robinson2012-03-051-17/+36
| | | | | | | | | | | | This allows us to properly update the ALCdevice and its resources with the new parameters before starting playback, instead of expecting the mixer to block and wait after it has begun. This also lets us avoid holding the device lock while resetting and starting the device, which helps prevent lock inversion on some backends (ie, one thread locking A then B, and another thread locking B then A), ultimately allowing certain backends to asynchronously update the ALCdevice without risk of lockup. Capture still has issues here, however.
* Print enumerated dsound devicesChris Robinson2012-02-261-0/+18
|
* Watch for unsupported sample types for dsound captureChris Robinson2012-02-261-0/+15
|
* Avoid default names for winmm and dsoundChris Robinson2012-02-201-11/+13
|
* Always use "OpenAL Soft" for the short device enumeration listChris Robinson2012-02-201-4/+0
|
* Support signed and unsigned 32-bit int outputChris Robinson2012-02-141-0/+4
|
* Implement capture for the DirectSound backendChris Robinson2012-01-311-61/+410
| | | | Based on a patch by Jeffrey Knockel <jeff250.at.gmail.com>
* Retry opening the DSound device with 16-bit short if 32-bit float output failsChris Robinson2012-01-171-0/+11
|
* Define _WIN32_WINNT on the command line with _WIN32Chris Robinson2011-09-201-1/+0
|
* Return an ALC error enum from the OpenPlayback backend methodChris Robinson2011-08-241-8/+5
|
* Don't expose "DirectSound Default" in the ALL_DEVICES listChris Robinson2011-08-201-14/+1
| | | | | This is under the assumption that one of the devices in ALL_DEVICES corresponds to the default. This is not true for all backends (eg, ALSA).
* Move backend sources to a separate sub-directoryChris Robinson2011-08-201-0/+627