aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Add a device parameter to alcLoopbackOpenDeviceSOFTChris Robinson2012-02-151-3/+9
|
* Add a device request flag for the sample typeChris Robinson2012-02-151-6/+17
|
* Separate the format config option into channels and sample-typeChris Robinson2012-02-151-51/+102
|
* Define a minimum output sample rate and warn if the config option goes below itChris Robinson2012-02-151-4/+8
|
* Combine a couple if checksChris Robinson2012-02-151-9/+5
|
* Support signed and unsigned 32-bit int outputChris Robinson2012-02-1413-9/+126
|
* Check for each ALSA prefix config option only as neededChris Robinson2012-02-131-22/+26
|
* Use more proper enum names for the resamplerChris Robinson2012-02-123-18/+16
|
* Add config options for card- and device-specific prefixes in ALSA device namesChris Robinson2012-02-111-7/+17
|
* Format the ALSA device name when enumerating themChris Robinson2012-02-111-35/+17
|
* Rename SpeakerGain to ChannelGainChris Robinson2012-02-104-21/+21
|
* Match the 7.1 channel angles with the speakersChris Robinson2012-02-091-4/+4
|
* Pre-scale the channel anglesChris Robinson2012-02-091-33/+44
|
* Rename non_virtual_channels to direct_channelsChris Robinson2012-02-092-7/+6
|
* Improve checks for supported output formats from ALSAChris Robinson2012-02-091-19/+46
|
* Always use the default speaker layout for loopback devicesChris Robinson2012-02-071-6/+10
|
* Don't enable BS2B for loopback devicesChris Robinson2012-02-071-2/+0
|
* Improve a couple error messages with the full ALSA device control nameChris Robinson2012-02-071-3/+3
|
* Change the default stereo speaker positions to match the stereo channel ↵Chris Robinson2012-02-041-2/+2
| | | | | | | | | positions A separate "headphones" configuration may be nice to add for -90,+90, however not many audio APIs can detect this. Ideally HRTF would be used with headphones too, which largely ignores the speaker positions, however there could be situations where this is unfeasible or unwanted.
* Use an enum for static const valuesChris Robinson2012-01-311-4/+6
|
* Implement capture for the DirectSound backendChris Robinson2012-01-311-61/+410
| | | | Based on a patch by Jeffrey Knockel <jeff250.at.gmail.com>
* Only initialize the default reverb effect when a slot is availableChris Robinson2012-01-291-1/+2
|
* Use sizeof(ALfloat) when finding the max stepping valueChris Robinson2012-01-261-4/+4
| | | | | The mixer always reads from floats, so the size of the storage type is unimportant.
* Make sure context attributes are specified for loopback devicesChris Robinson2012-01-261-0/+6
|
* Make sure InitializeEffect on the default slot doesn't set a context errorChris Robinson2012-01-261-0/+1
|
* Return the error code from UpdateDeviceParamsChris Robinson2012-01-251-22/+14
|
* Make sure the attributes list specifies a format for loopback devicesChris Robinson2012-01-251-3/+19
|
* Don't process a default device slot if it doesn't existChris Robinson2012-01-251-12/+15
|
* Set the source's slot send parameter to NULL if it's the AL_EFFECT_NULL typeChris Robinson2012-01-232-2/+5
|
* Avoid duplicating some initialization codeChris Robinson2012-01-201-13/+3
|
* Not all devices will have a default effect slotChris Robinson2012-01-201-2/+5
|
* Fix WaveIn shutdown for realChris Robinson2012-01-201-11/+8
| | | | | | The processing thread must be messaged when shutting down, and depending on the state of the device, waveInReset may not do it. Additionally, all buffers must be removed from the device before they can be unprepared and the device closed.
* Remove an unnecessary else statementChris Robinson2012-01-201-41/+38
|
* Always message the WinMM processing thread when a buffer is doneChris Robinson2012-01-201-12/+2
| | | | | So the processing thread can keep track of completed buffers when shutting down, too.
* Fix a possible race condition when shutting down WinMM devicesChris Robinson2012-01-201-23/+21
| | | | | | If the processing threads are interrupted between the shutdown check and re- adding the buffer back to the device, the device can be left with a buffer that will get unprepared and freed while in use.
* Add a default-reverb config option, and rename __ALSOFT_FORCE_REVERB to matchChris Robinson2012-01-201-1/+3
|
* Add the ability to specify a preset for forced reverbChris Robinson2012-01-191-1/+1
|
* Add a global option to apply a reverb effect on source send 0Chris Robinson2012-01-192-2/+53
| | | | | | A special slot on the device is created and processed, so it can be shared across all contexts on the device. Sources that don't have a slot set on send 0 will use this special slot instead.
* Avoid printing messages about device parameter changes in the backendsChris Robinson2012-01-179-187/+38
|
* Report parameter request changes in UpdateDeviceParamsChris Robinson2012-01-171-18/+44
|
* Change the default output format to 32-bit floatChris Robinson2012-01-171-1/+1
|
* Retry opening the PortAudio device with 16-bit short if 32-bit float output ↵Chris Robinson2012-01-171-3/+9
| | | | fails
* Retry opening the DSound device with 16-bit short if 32-bit float output failsChris Robinson2012-01-171-0/+11
|
* Retry opening the WinMM device with 16-bit short if 32-bit float output failsChris Robinson2012-01-171-0/+6
|
* Support 32-bit float in the WinMM backendChris Robinson2012-01-171-4/+11
|
* Safely insert the new context into the listChris Robinson2012-01-121-2/+3
|
* Finalize AL_SOFT_buffer_samplesChris Robinson2012-01-101-1/+1
|
* Make LockDevice, LockContext, etc, inlineChris Robinson2012-01-091-21/+0
|
* Remove the warning when a context being released is globally currentChris Robinson2012-01-011-3/+0
| | | | | | Just about every implementation allows this, and there's no direct harm caused by it. However, leave the warnings for when it's still current on specific threads, as this can cause issues.
* Use the device lock when removing the context from the device's listChris Robinson2012-01-011-9/+2
|