aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
Commit message (Collapse)AuthorAgeFilesLines
* Finalize AL_SOFT_deferred_updatesChris Robinson2013-10-051-1/+1
|
* Add some more missing enumsChris Robinson2013-10-031-0/+5
|
* Implement the Compressor effectChris Robinson2013-10-031-18/+18
|
* Add missing enum to the listChris Robinson2013-10-031-1/+1
|
* Better handle spaces between string list entriesChris Robinson2013-06-161-5/+11
|
* Don't open the log file with both 'truncate' and 'append' flagsChris Robinson2013-06-071-1/+1
|
* Silence some clang warningsChris Robinson2013-06-051-1/+0
|
* Avoid a NULL dereferenceChris Robinson2013-06-041-1/+1
|
* Allow enabling HRTF through a context creation attributeChris Robinson2013-05-311-1/+40
|
* Start an extension that can query the status of HRTF renderingChris Robinson2013-05-311-3/+10
|
* Fix up the naming convention of effect methodsChris Robinson2013-05-291-4/+4
|
* Use generic VCALL[_NOARGS] macros instead of type-specific wrappersChris Robinson2013-05-271-4/+4
|
* Check for SSE2 and set the denormals-are-zero bit for mixing if availableChris Robinson2013-05-221-1/+3
|
* Rename DELETE to DELETE_OBJChris Robinson2013-05-211-2/+2
| | | | Because Windows.
* Add a DELETE macro to help destroy objectsChris Robinson2013-05-211-2/+2
|
* Rename the effect state's Destroy method to DestructChris Robinson2013-05-211-3/+5
|
* Use factories to create and destroy effect statesChris Robinson2013-05-211-0/+4
|
* 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