aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Use an array to specify the offset for each channel of the device bufferChris Robinson2012-11-043-61/+78
| | | | This effectively inverts the DevChannels array
* Rename some struct fields for DirectSoundChris Robinson2012-11-041-48/+48
|
* Avoid recreating the DSound primary bufferChris Robinson2012-11-041-1/+1
|
* Fix retrieving the source's write offsetChris Robinson2012-11-011-2/+2
|
* Pass the offset latency properties to the set handlerChris Robinson2012-11-011-8/+18
|
* Set the proper error when trying to set AL_SAMPLE_OFFSET_LATENCY_SOFT or ↵Chris Robinson2012-11-011-1/+8
| | | | AL_SEC_OFFSET_LATENCY_SOFT
* Add an example to get and show the source latencyChris Robinson2012-10-312-1/+220
|
* Avoid prefixing function pointers in the streaming exampleChris Robinson2012-10-311-11/+11
|
* Print the name of the device when opening it in the example appsChris Robinson2012-10-312-4/+3
|
* Make a decimal value a float typeChris Robinson2012-10-311-1/+1
|
* Finalize AL_SOFT_source_latencyChris Robinson2012-10-313-48/+47
|
* Add an example program showing how to apply reverb to a sourceChris Robinson2012-10-312-1/+347
|
* Add a couple comments to the codeChris Robinson2012-10-261-0/+2
|
* Avoid branching when clamping and converting float samples to integerChris Robinson2012-10-261-2/+2
|
* Add the AL subdir to the list of include flags in the pkg-config fileChris Robinson2012-10-261-1/+1
| | | | | This allows apps to include "al.h", "alc.h", etc, like with Creative's SDK and CMake's FindOpenAL module, or as "AL/al.h" and "AL/alc.h" like before.
* Reorder and comment some function in alhelpers.cChris Robinson2012-10-251-81/+88
|
* Move some math functions to where they're usedChris Robinson2012-10-252-26/+25
|
* Add a couple missing RESTRICTsChris Robinson2012-10-251-1/+1
|
* Fix some typesChris Robinson2012-10-251-5/+6
|
* Add the RESTRICT keyword to a function pointer definition's parametersChris Robinson2012-10-251-1/+1
|
* Add explicit casts for MSVCChris Robinson2012-10-251-9/+9
|
* Remove the float math wrapper functionsChris Robinson2012-10-253-99/+0
|
* Add retrieval of missing source propertiesChris Robinson2012-10-211-0/+16
|
* Use an asterisk to denote a requested format option in the traceChris Robinson2012-10-161-4/+4
|
* Require an alignment declaration for SSE supportChris Robinson2012-10-151-1/+1
|
* Put the HRTF DirectParams into an anonymous structChris Robinson2012-10-153-37/+39
|
* Constify the direct and send parameters given to the mixerChris Robinson2012-10-156-21/+21
|
* Use a separate step to deinterlace reverb samplesChris Robinson2012-10-141-14/+33
|
* Remove the unused Device parameterChris Robinson2012-10-146-17/+11
|
* Store the output buffers in the DirectParams structChris Robinson2012-10-145-10/+25
|
* Remove the now-unused Source parameter from the DryMix methodsChris Robinson2012-10-146-16/+11
|
* Store some more HRTF info in the DirectParams structChris Robinson2012-10-143-5/+14
|
* Mark some parameters as const and/or RESTRICTChris Robinson2012-10-144-12/+13
|
* Move alhelpers and alffmpeg code to a common sub-directoryChris Robinson2012-10-146-3/+5
|
* Use a helper method to convert i64 values to the proper typesChris Robinson2012-10-141-74/+88
|
* Check i64 property ranges before passing them to the int handlersChris Robinson2012-10-141-19/+76
| | | | | | | Note that some properties (e.g. AL_BUFFER, AL_DIRECT_FILTER) actually take unsigned int values, and so are checked against the unsigned range even though they eventually get casted to an int. The int handler casts them back as needed.
* Don't add the dry gain to the mixing matrixChris Robinson2012-10-131-1/+1
|
* Silence an implicit int-to-float conversion warning on MSVCChris Robinson2012-10-131-1/+1
|
* Don't use a loop to determine the next power of 2Chris Robinson2012-10-131-9/+7
|
* List the in-progress AL_SOFT_source_latency extensionChris Robinson2012-10-131-1/+2
|
* Implement the double and int64 source settersChris Robinson2012-10-133-4/+267
| | | | | Note that currently the int64 setters do not range check before being passed to the int setters, erroneously chopping off the upper bits.
* Fix copying the listener Up vectorChris Robinson2012-10-121-1/+1
|
* Use the enum to set the default distance modelChris Robinson2012-10-121-1/+1
|
* Initialize the listener velocity parameterChris Robinson2012-10-121-0/+2
|
* Apply the listener matrix to the listener velocity onceChris Robinson2012-10-122-12/+11
|
* Avoid needlessly copying the listener matrixChris Robinson2012-10-121-7/+3
|
* Apply the listener position to the transformation matrixChris Robinson2012-10-121-38/+44
|
* Check the distance against epsilon to determine if it matchesChris Robinson2012-10-122-2/+7
|
* Properly scale wide-stereo sourcesChris Robinson2012-10-101-1/+1
|
* Avoid mixing to a send slot if the gain is too lowChris Robinson2012-10-101-0/+3
|