aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement distortion and equalizer effectsChris Robinson2013-05-181-3/+18
| | | | Code provided by Mike Gorchak
* Add a QSA backend for QNXChris Robinson2013-03-141-0/+3
|
* Add Chorus and Flanger effectsChris Robinson2013-03-131-2/+16
| | | | Code provided by Mike Gorchak
* Trace the list of supported backendsChris Robinson2012-12-041-0/+7
|
* Lock the device before calling aluHandleDisconnectChris Robinson2012-12-021-0/+4
| | | | | | PulseAudio causes an assert if being relocked inside a callback on the worker thread, where aluHandleDisconnect is called. We can assume it's already locked there, so just make sure the device is locked before being calling it.
* Trace the opened device name in alcCaptureOpenDeviceChris Robinson2012-12-021-1/+1
|
* Use WARN when implicitly deleting resources with the contextChris Robinson2012-12-021-2/+2
|
* Use an array to specify the offset for each channel of the device bufferChris Robinson2012-11-041-55/+65
| | | | This effectively inverts the DevChannels array
* Finalize AL_SOFT_source_latencyChris Robinson2012-10-311-1/+1
|
* Use an asterisk to denote a requested format option in the traceChris Robinson2012-10-161-4/+4
|
* List the in-progress AL_SOFT_source_latency extensionChris Robinson2012-10-131-1/+2
|
* Implement the double and int64 source settersChris Robinson2012-10-131-0/+6
| | | | | Note that currently the int64 setters do not range check before being passed to the int setters, erroneously chopping off the upper bits.
* Use the enum to set the default distance modelChris Robinson2012-10-121-1/+1
|
* Initialize the listener velocity parameterChris Robinson2012-10-121-0/+2
|
* Build the listener matrix separatelyChris Robinson2012-10-091-1/+1
|
* Don't include alListener.h from alMain.hChris Robinson2012-10-091-2/+1
|
* Store a pointer to the listener in the contextChris Robinson2012-10-091-16/+17
|
* Avoid unnecessarily locking the list lockChris Robinson2012-10-071-43/+31
|
* Shorten format trace messagesChris Robinson2012-10-061-2/+2
|
* Round up the device's default slot alignmentChris Robinson2012-10-051-1/+1
|
* Ensure the device's default effect slot is properly alignedChris Robinson2012-09-261-2/+2
|
* Help ensure the update size is a multiple of 4 with SSEChris Robinson2012-09-201-0/+5
|
* Use a struct to store the FPU modeChris Robinson2012-09-161-5/+5
|
* Shorten a warningChris Robinson2012-09-141-1/+1
|
* Warn about SSE performance with non-multiple-of-4 update sizesChris Robinson2012-09-111-0/+6
|
* Update HRTF codeChris Robinson2012-09-111-3/+1
| | | | | | | | | | | This update allows for much more flexibility in the HRTF data. It also allows for HRTF table file names to include "%r" to represent the device's playback rate (e.g. if you set hrtf-%r.mhr, then it will try to use hrtf-44100.mhr or hrtf-48000.mhr depending if the device's output rate is 44100 or 48000, respectively). The makehrtf utility has also been updated to support more options and input file formats, as well as the new mhr format.
* Make sure device buffers are 16-byte alignedChris Robinson2012-08-291-7/+7
|
* Add methods to get source properties as doublesChris Robinson2012-08-201-0/+3
|
* Properly export alGetSource3i64SOFTChris Robinson2012-08-201-0/+1
|
* Use a default method to provide a dummy latencyChris Robinson2012-08-191-0/+5
|
* Move the device lock into the backend function tableChris Robinson2012-08-181-7/+16
| | | | | For backend-specific implementations: this should hold the audio mixer loop for playback devices, and provide recursive mutex behavior.
* Keep the backend device open until the last reference is releasedChris Robinson2012-08-181-4/+5
| | | | | | This should generally happen with the next ALCdevice_DecRef call unless the device is in the middle of being used in another thread, in which case it's probably best to not remove the resources.
* Add the start of AL_SOFT_source_latencyChris Robinson2012-08-181-0/+3
| | | | | This extension will provide a way for apps to get accurate latency and playback position information
* Add a device method to retrieve the active latencyChris Robinson2012-08-171-1/+1
| | | | | This is effectively the time until the next update will be heard by the user, or the closest approximation thereof, in nanoseconds.
* Add cmake options to disable or require support for CPU extensionsChris Robinson2012-08-151-1/+7
|
* Add an SSE-enhanced HRTF mixer using intrinsicsChris Robinson2012-08-141-1/+3
| | | | Not as good as it could be, but it's something
* Add a config option to disable use of CPU extensionsChris Robinson2012-08-131-1/+31
|
* Check for some CPU extensionsChris Robinson2012-08-131-0/+1
|
* Handle the scalar values a bit betterChris Robinson2012-08-111-2/+2
|
* Add an option for wide stereo sourcesChris Robinson2012-08-091-0/+4
| | | | Replaces the old stereodup option
* Use wrappers for float-typed math functionsChris Robinson2012-06-291-1/+1
|
* Don't use all caps for enum value namesChris Robinson2012-06-281-43/+43
|
* Don't needlessly verify a deviceChris Robinson2012-06-191-5/+6
|
* Rename AllDevice -> AllDevicesChris Robinson2012-05-091-19/+19
|
* Remove the stereodup optionChris Robinson2012-04-291-17/+0
| | | | There's better ways to do it now with "wide" sound sources.
* Reorganize some ALsource fieldsChris Robinson2012-04-271-2/+2
|
* Use a macro to declare the function and enum list membersChris Robinson2012-04-201-447/+451
|
* Combine ALCenum and ALenum listsChris Robinson2012-04-201-5/+263
|
* Reorganize ALC functions and fixup some commentsChris Robinson2012-04-201-392/+407
|
* Remove some more hungarian notationChris Robinson2012-04-191-38/+38
|