aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alMain.h
Commit message (Collapse)AuthorAgeFilesLines
* Finalize AL_SOFT_source_latencyChris Robinson2012-10-311-47/+0
|
* Don't use a loop to determine the next power of 2Chris Robinson2012-10-131-9/+7
|
* Implement the double and int64 source settersChris Robinson2012-10-131-0/+12
| | | | | Note that currently the int64 setters do not range check before being passed to the int setters, erroneously chopping off the upper bits.
* 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-1/+1
|
* Define RESTRICT in config.h instead of alMain.hChris Robinson2012-10-091-8/+0
|
* Add trace, warn, and error markers to logged outputChris Robinson2012-10-071-6/+6
|
* Define WIN32_LEAN_AND_MEAN when including windows.h in alMain.hChris Robinson2012-10-061-0/+1
|
* Put temporary storage in the device instead of on the stackChris Robinson2012-10-051-1/+5
|
* Use lrintf to fast convert floats to ints when possibleChris Robinson2012-09-281-8/+5
|
* Decrease the default BUFFERSIZE to 2048Chris Robinson2012-09-281-4/+4
|
* Update a commentChris Robinson2012-09-261-5/+5
|
* fpu_control.h is no longer usedChris Robinson2012-09-181-4/+0
|
* Properly handle the SSE control wordChris Robinson2012-09-161-0/+3
|
* Use a struct to store the FPU modeChris Robinson2012-09-161-2/+5
|
* Remove an unused headerChris Robinson2012-09-141-0/+1
|
* Move a couple macros to more appropriate headersChris Robinson2012-09-141-9/+3
|
* Fix up some more header includesChris Robinson2012-09-141-13/+21
|
* Don't include alu.h in alMain.hChris Robinson2012-09-141-1/+43
|
* Enable flush-to-zero mode when possibleChris Robinson2012-09-141-0/+3
|
* Use a non-interleaved DryBufferChris Robinson2012-09-111-1/+1
|
* Update HRTF codeChris Robinson2012-09-111-3/+3
| | | | | | | | | | | 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-5/+5
|
* Add the option to retrieve the source offset and latency in secondsChris Robinson2012-08-201-0/+1
|
* Add methods to get source properties as doublesChris Robinson2012-08-201-0/+6
|
* Fix a parameter nameChris Robinson2012-08-201-1/+1
|
* Properly export alGetSource3i64SOFTChris Robinson2012-08-201-0/+2
|
* Add a macro to help make a 64-bit valueChris Robinson2012-08-191-0/+2
|
* Use a default method to provide a dummy latencyChris Robinson2012-08-191-0/+1
|
* Move the device lock into the backend function tableChris Robinson2012-08-181-6/+9
| | | | | For backend-specific implementations: this should hold the audio mixer loop for playback devices, and provide recursive mutex behavior.
* Add the start of AL_SOFT_source_latencyChris Robinson2012-08-181-0/+26
| | | | | 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-0/+3
| | | | | This is effectively the time until the next update will be heard by the user, or the closest approximation thereof, in nanoseconds.
* Add wrapper methods to ensure aligned allocationsChris Robinson2012-08-151-0/+4
|
* Don't bother handling MMX since we don't use itChris Robinson2012-08-151-5/+2
|
* Add a config option to disable use of CPU extensionsChris Robinson2012-08-131-1/+3
|
* Check for some CPU extensionsChris Robinson2012-08-131-0/+11
|
* Add an option for wide stereo sourcesChris Robinson2012-08-091-0/+3
| | | | Replaces the old stereodup option
* Interpolate between HRTF delay samples using the delay fractionChris Robinson2012-07-201-0/+3
|
* Don't use all caps for enum value namesChris Robinson2012-06-281-6/+6
|
* Remove an unused includeChris Robinson2012-06-191-3/+0
|
* Rename AllDevice -> AllDevicesChris Robinson2012-05-091-1/+1
|
* Use ComputeAngleGains for multi-channel sources and remove the unused lookup ↵Chris Robinson2012-04-291-1/+0
| | | | table stuff
* Remove the stereodup optionChris Robinson2012-04-291-2/+0
| | | | There's better ways to do it now with "wide" sound sources.
* Store the speaker angles in the deviceChris Robinson2012-04-271-0/+1
|
* Add try/catch-like macros to handle errors, and convert alSource.c to use themChris Robinson2012-04-231-0/+47
|
* Remove hungarian notation from the device and context structsChris Robinson2012-04-191-3/+3
|
* Finalize ALC_SOFT_loopbackChris Robinson2012-03-151-32/+0
|
* Use enums to specify the default channel configuration and sample typeChris Robinson2012-03-131-2/+6
|
* Finalize AL_SOFT_direct_channelsChris Robinson2012-03-121-5/+0
|
* Use a separate backend callback to start playback of the deviceChris Robinson2012-03-051-0/+2
| | | | | | | | | | | | 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.