aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* Rename some stuff for consistencyChris Robinson2010-11-283-43/+42
|
* Don't store the internal format in the bufferChris Robinson2010-11-283-21/+83
| | | | The type and channel config are good enough
* Support rear formats directly in the mixerChris Robinson2010-11-274-207/+51
|
* Avoid a potential overflow when setting the source offsetChris Robinson2010-11-271-1/+1
|
* Clean up the source byte offset codeChris Robinson2010-11-271-20/+15
|
* Remove some unneeded muLaw special casesChris Robinson2010-11-271-17/+0
|
* Support muLaw with LoadDataChris Robinson2010-11-273-86/+98
|
* Remove an unnecessary assertChris Robinson2010-11-271-1/+0
|
* Be much more flexible with loading and converting buffer dataChris Robinson2010-11-271-100/+286
|
* Don't inline the decompose functionChris Robinson2010-11-272-87/+95
|
* Decompose input buffer formats and use it when converting uncompressed dataChris Robinson2010-11-272-13/+150
|
* Rename a functionChris Robinson2010-11-272-7/+7
|
* Shorten a couple really long linesChris Robinson2010-11-271-5/+9
|
* Support 64-bit double buffers directlyChris Robinson2010-11-272-17/+5
|
* muLaw converts to 16-bit, not floatChris Robinson2010-11-271-1/+1
|
* Use the enums in a couple more placesChris Robinson2010-11-271-2/+2
|
* Use enums when selecting the mixerChris Robinson2010-11-262-0/+116
|
* Remove an unnecessary 'struct' keywordChris Robinson2010-11-261-3/+3
|
* Properly clamp high pitch valuesChris Robinson2010-11-261-1/+14
|
* Make the buffer padding size dependent on the resamplerChris Robinson2010-11-262-3/+11
|
* Don't allocate padding with the buffer itselfChris Robinson2010-11-261-35/+35
|
* Decrease the buffer size moreChris Robinson2010-11-261-1/+1
|
* Make a FRACTIONONE macro, and use itChris Robinson2010-11-261-1/+2
|
* Share the interpolation functions and use them in the reverb effectChris Robinson2010-11-261-0/+16
|
* Call MixSource directly, instead of through a function pointerChris Robinson2010-11-252-6/+0
|
* Add a cubic resamplerChris Robinson2010-11-251-0/+1
|
* Add "pre-padding" to the temp bufferChris Robinson2010-11-251-0/+1
| | | | This will help to implement resamplers that want previous samples
* Make the buffer queue a double-linked listChris Robinson2010-11-252-0/+7
|
* Remove the cosine resamplerChris Robinson2010-11-251-1/+0
| | | | It's too slow when auxiliary sends are being used.
* Fix a bunch of commentsChris Robinson2010-11-251-34/+34
|
* Don't "convert" LOKI quad to MCFORMATS quadChris Robinson2010-11-251-11/+2
|
* Support 8-bit sample data in the mixerChris Robinson2010-11-241-76/+39
|
* Fully progress the source to a stopped state when no buffers are playableChris Robinson2010-11-241-0/+4
|
* Reorder some stored source paramsChris Robinson2010-11-241-5/+5
|
* Get rid of the device timer stuffChris Robinson2010-11-211-13/+0
|
* Use a double when converting millisecond offsets to byte offsetsChris Robinson2010-11-071-3/+3
|
* Increase the max number of source sends to 4, and decrease the default to 1Chris Robinson2010-11-061-1/+1
|
* Use the number of sends the device is configured for in more placesChris Robinson2010-11-061-2/+4
|
* Remove unnecessary comments and reorder some linesChris Robinson2010-11-061-13/+8
|
* Improve a macro to reference its parameterChris Robinson2010-10-111-2/+2
|
* Fix 64-bit compilationChris Robinson2010-10-111-1/+1
|
* Pass the device to the mix function and localize the dry mix and click buffersChris Robinson2010-09-262-8/+4
|
* Make the SourceMix function a method of the ALsource structChris Robinson2010-09-263-1/+16
|
* Use ALfloat for the dry mix bufferChris Robinson2010-09-231-1/+1
|
* Store and mix signed 16-bit samplesChris Robinson2010-09-221-77/+108
|
* Allow accessing the buffer data as multiple data types in the mixerChris Robinson2010-09-222-366/+352
| | | | Also reduces a bunch of indentation
* Reduce some more indentationChris Robinson2010-09-216-183/+188
|
* Reduce some indentationChris Robinson2010-09-216-209/+166
|
* Improve some range checksChris Robinson2010-09-212-3/+5
|
* Implement AL_SOFT_buffer_sub_data using the current AL_EXT_buffer_sub_data specChris Robinson2010-09-213-8/+15
| | | | | | This extension can be useful for some applications, but a full EXT version may not be ready for some time. Using the SOFT moniker will help differentiate it in case changes need to be done for the EXT version.