aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alSource.c
Commit message (Collapse)AuthorAgeFilesLines
* Reduce some indentationChris Robinson2010-09-211-45/+29
|
* Improve some range checksChris Robinson2010-09-211-1/+1
|
* Implement AL_SOFT_buffer_sub_data using the current AL_EXT_buffer_sub_data specChris Robinson2010-09-211-6/+6
| | | | | | 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.
* Source positions at and after the end of the buffer queue go back to 0Chris Robinson2010-09-091-5/+5
|
* Remove unnecessary checkChris Robinson2010-09-071-6/+0
|
* Fix comparison checkChris Robinson2010-09-071-1/+1
|
* Check for invalid negative sizesChris Robinson2010-09-071-11/+45
|
* Remove unused struct memberChris Robinson2010-09-071-2/+0
|
* Use click removal to handle harsh panning/volume changesChris Robinson2010-08-151-5/+0
|
* Use click removal when starting a sourceChris Robinson2010-08-141-5/+1
|
* Combine non-attenuated source calculation functionsChris Robinson2010-08-071-4/+0
|
* Forward some more source properties instead of duplicatingChris Robinson2010-08-071-36/+12
|
* Combine stereo and stereo-duplicate mixersChris Robinson2010-08-051-0/+4
| | | | | Use a separate update method for stereo sources to the set appropriate channel gains
* Use a callback to specify the source update methodChris Robinson2010-08-031-6/+10
|
* Check the buffer's original format when queueing on a sourceChris Robinson2010-07-121-3/+3
|
* Use an array of active sources when mixingChris Robinson2010-06-061-0/+45
| | | | Prevents iterating over all allocated sources during mixing updates
* Add a function to get the frame size from a formatChris Robinson2010-05-241-2/+1
|
* Don't bother storing the loop points in the sourceChris Robinson2010-05-241-3/+0
|
* Loop points should be specified in sample offsetsChris Robinson2010-05-211-9/+2
|
* Use unsigned types when finding the source offsetsChris Robinson2010-05-191-9/+5
|
* A couple formatting fixesChris Robinson2010-05-191-3/+2
|
* Use a map for the filter listChris Robinson2010-05-181-4/+3
|
* Store loop points as uncompressed frame offsets in the source when a buffer ↵Chris Robinson2010-05-131-0/+10
| | | | is attached
* Use a UIntMap for the effect slot listChris Robinson2010-05-121-2/+2
|
* Simplify and fix applying a source offsetChris Robinson2010-05-111-19/+8
|
* Use a separate function to convert compressed bytes to framesChris Robinson2010-05-111-50/+52
|
* Only a streaming source can have a processed bufferChris Robinson2010-05-111-3/+4
|
* Use a map to store sources and buffersChris Robinson2010-05-011-65/+52
| | | | And do a lookup using a binary search instead of linear
* Use doubles instead of floats for the source offset calculationsChris Robinson2010-04-281-42/+42
|
* Get the offset even if the current buffer is 0Chris Robinson2010-04-281-5/+14
|
* Combine two loops into oneChris Robinson2010-04-231-12/+7
|
* Avoid reading buffer 0's sizeChris Robinson2010-04-101-1/+2
|
* Shorten some variable namesChris Robinson2010-03-261-268/+268
|
* Reduce some indentationChris Robinson2010-03-241-455/+407
|
* Avoid calling alDelete* from alGen*Chris Robinson2010-03-201-1/+11
|
* Don't use deprecated macrosChris Robinson2010-03-191-25/+25
|
* GetSourceOffset can't failChris Robinson2010-03-171-27/+12
|
* Handle source offsets for muLaw formatsChris Robinson2010-03-171-11/+31
|
* Remove unnecessary stop callChris Robinson2010-03-161-2/+0
|
* Remove unused variableChris Robinson2010-03-161-3/+0
|
* Avoid some alIs* calls while under the context lockChris Robinson2010-03-161-80/+58
| | | | | Instead, use functions that verify the ID by searching the object list and returning its handle
* Pass the context to alSetErrorChris Robinson2010-03-161-84/+84
|
* Rename some struct members for consistencyChris Robinson2010-03-161-6/+6
|
* Avoid dereferencing a NULL buffer when unqueueing buffer 0Chris Robinson2010-03-151-3/+7
|
* Remove duplication of setting source anglesChris Robinson2010-03-141-20/+2
|
* Fix the retrieval of the RW offsets using the correct functionsChris Robinson2010-03-101-30/+31
|
* Improve source write offset calculationsChris Robinson2010-02-071-9/+19
|
* Consolidate some source offset handling codeChris Robinson2010-01-121-38/+12
|
* Better handle large second offsetsChris Robinson2010-01-121-2/+2
|
* Don't use a flag to set an error when applying the source offsetChris Robinson2010-01-121-43/+48
|