aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Include fenv.h if it exists for fesetroundChris Robinson2008-08-083-1/+17
|
* Set FPU mode to round toward zero for mixingChris Robinson2008-08-082-1/+20
|
* Remove unnecessary castingChris Robinson2008-08-081-8/+16
|
* Prevent a 0 or negative increment for the buffer positionChris Robinson2008-08-051-0/+2
| | | | Thanks to Christopher Fitzgerald for pointing these last two problems out
* Pass a dummy variable to CreateThread to satisfy Win9xChris Robinson2008-08-051-1/+2
|
* Release 1.5.304openal-soft-1.5.304Chris Robinson2008-07-271-2/+2
|
* Reduce the default buffer size to 4096Chris Robinson2008-07-262-3/+3
| | | | | Should help with latency issues some people have and not put too much extra burden on the mixer, hopefully
* Improve getting and setting EFX filter parametersChris Robinson2008-07-261-37/+39
|
* Use arrays instead of pointer-to-arrays for the low-pass filterChris Robinson2008-07-264-28/+7
|
* Fix some calculations for the reverb bufferChris Robinson2008-07-261-25/+22
|
* Make the filter processing function inlineChris Robinson2008-07-263-38/+39
|
* Implement yet another low-pass filterChris Robinson2008-07-258-18/+543
| | | | This one using the Butterworth IIR filter design
* Use a temp pointer when realloc()ingChris Robinson2008-07-241-16/+26
| | | | So the original data isn't lost on out-of-memory conditions
* Specify padding per buffer, and make sure it's large enough for the filter stepChris Robinson2008-07-244-27/+50
|
* Don't advertise extra samples for mixingChris Robinson2008-07-231-3/+2
|
* Implement an alternative low-pass filterChris Robinson2008-07-232-39/+32
| | | | | | | | | This method samples from the buffer so that it gets a time-correct 5khz stream, which is subtracted from the original sample and has the high-frequency gain applied, then added back. A better method may be to average all the samples from the current one to the one freq/5000 away, instead of bilinear filtering the two nearest freq/5000 apart. Processing cost will need to determine its viability
* Make sure the correct libname is used for pkg-configChris Robinson2008-07-232-7/+7
|
* Add a warning when building on Windows with the DSound backend disabledChris Robinson2008-07-231-0/+6
|
* Add a pkg-config file to install on the systemChris Robinson2008-07-222-0/+25
|
* Add AL_LOKI_IMA_ADPCM_format and AL_EXT_vorbis tokens to alext.hChris Robinson2008-07-221-4/+15
|
* Clarify implicit destruction warningsChris Robinson2008-07-226-7/+12
|
* Move ALC_ENUMERATE_ALL_EXT tokens to alext.hChris Robinson2008-07-222-5/+6
|
* Add AL_LOKI_WAVE_format tokens to alext.hChris Robinson2008-07-221-0/+5
|
* Add ALC_LOKI_audio_channel tokens to alext.hChris Robinson2008-07-221-0/+7
|
* Store extension list with a pointer, not a per-context arrayChris Robinson2008-07-222-2/+2
|
* Set the new linking policy for CMake 2.6 to avoid warningsChris Robinson2008-07-221-0/+6
|
* Don't force initialization when shutting downChris Robinson2008-07-171-6/+7
| | | | Thanks to Michael Simms
* Move (de)initialization into ALc.c and remove unneeded fileChris Robinson2008-07-174-80/+49
|
* Implement doppler factor source propertyChris Robinson2008-07-153-1/+14
|
* Add the reverb room rolloff to the source room rolloff, not overrideChris Robinson2008-07-151-1/+1
|
* Don't check the number of objects being deleted with the number currently ↵Chris Robinson2008-07-112-93/+80
| | | | | | allocated Since apps can validly delete buffer 0, and delete the same source/buffer multiple times in a single call
* Use volatile for member variables that are changed in a different threadChris Robinson2008-07-104-4/+4
|
* Reduce the mix buffer sizes by halfChris Robinson2008-07-081-1/+1
| | | | Nearly 3MB is a bit much. Could reduce it further, but this is good enough for now.
* Leave SourceToListener untransformed for use with untransformed velocitiesChris Robinson2008-07-031-6/+16
| | | | | Distance is also left untransformed so cone calculations with SoundToListener are correct
* Store thread return value in the struct to avoid void*-to-uint castingChris Robinson2008-06-171-8/+9
|
* Allow for overriding the default lib destination with LIB_INSTALL_DIRChris Robinson2008-06-061-4/+7
| | | | So 64-bit builds can be optionally redirected to lib64
* Make the project explicitly CChris Robinson2008-06-061-1/+1
| | | | So it doesn't search for an unneeded C++ compiler
* Release 1.4.272openal-soft-1.4.272Chris Robinson2008-06-041-1/+1
|
* Fix config value checkChris Robinson2008-06-041-1/+1
|
* Release 1.4.270openal-soft-1.4.270Chris Robinson2008-06-041-2/+2
|
* Install openal-info if it is builtChris Robinson2008-06-041-0/+5
|
* Don't override the format config option in DSoundChris Robinson2008-06-041-1/+19
|
* Use %AppData%\alsoft.ini for the config file in WindowsChris Robinson2008-06-042-0/+17
|
* Protect RingBufferSize calculation with the mutexChris Robinson2008-06-041-2/+7
|
* Make sure the lib is initialized when shutting downChris Robinson2008-05-181-0/+2
| | | | Pretty ugly, but the destructor sequence relies in the mutex being initialized
* Add addiitonal copyright lineChris Robinson2008-05-181-0/+1
|
* Add a simple example that prints out some OpenAL infoChris Robinson2008-05-182-1/+178
|
* Remove -fno-strict-aliasing as the code should be safe, nowChris Robinson2008-05-181-7/+0
|
* Fix source calculations for AL_SOURCE_RELATIVE modeChris Robinson2008-05-181-18/+22
| | | | | | Make sure the source position and direction are properly put into listener- space before working with them, and don't calculate the listener velocity for relative coordinates
* Use pthread_mutexattr_setkind_np as a fallback to set a recursive mutex typeChris Robinson2008-05-153-0/+13
| | | | Some systems (FreeBSD) don't like setting it through pthread_mutexattr_settype