aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
Commit message (Collapse)AuthorAgeFilesLines
* Add a GNU-specific AL_PRINTChris Robinson2013-10-281-2/+8
| | | | | This one makes use of the ', ## __VA_ARGS__' construct to avoid splitting the output into two *printf calls.
* Create and use a backend wrapper for captureChris Robinson2013-10-281-7/+0
|
* Move some stuff out of alMain.hChris Robinson2013-10-281-216/+3
|
* Move the device mutex to the backendChris Robinson2013-10-281-4/+0
|
* Separate compatibility declarationsChris Robinson2013-10-281-52/+2
|
* Modify how VCALL is handledChris Robinson2013-10-281-6/+6
| | | | | | | | | | | Now instead of specifying the arguments as a third argument to the macro, like VCALL(object,function,(arg1, arg2)); they are specified separately after the macro, like VCALL(object,function)(arg1, arg2); Also, VCALL_NOARGS has been removed in favor of VCALL0, which behaves like above but expects an empty argument list (a separate macro is needed to work around preprocessor limitations).
* Convert the Null backend to the ALCbackend styleChris Robinson2013-10-281-3/+0
|
* Move the lock/unlock methods to the backendChris Robinson2013-10-281-6/+5
|
* Use an ALCbackend object to access playback backendsChris Robinson2013-10-271-14/+8
| | | | | | | This is the start of a backend redesign. Currently, a wrapper object is used to avoid having to redo all the backends at once, but they should slowly be converted to derive from ALCbackend instead. The ALCbackend interface can change as needed.
* Rework threading functionsChris Robinson2013-10-272-4/+14
|
* Set a name for the mixer and recording threadsChris Robinson2013-10-271-0/+5
|
* Add a method to set the running thread's nameChris Robinson2013-10-261-0/+2
|
* Use a helper macro for pi*2Chris Robinson2013-10-081-0/+1
|
* Use helper macros to convert between degrees and radiansChris Robinson2013-10-081-2/+5
|
* Use inline initialization for effect state factory vtablesChris Robinson2013-10-071-2/+5
|
* Constify the effect parameter of effect gettersChris Robinson2013-10-071-4/+4
|
* Remove the last of the al_try codeChris Robinson2013-10-071-32/+0
|
* Use inline functions to lookup and remove objectsChris Robinson2013-10-071-10/+22
|
* Return only true or false from the source getters and settersChris Robinson2013-10-071-1/+1
|
* Use an UNUSED macro instead of void-tagging unused parametersChris Robinson2013-10-071-3/+13
|
* Remove a duplicate and unused macroChris Robinson2013-10-071-10/+0
|
* Add a workaround for KDevelop not recognizing the ALIGN macroChris Robinson2013-10-071-0/+5
|
* Fix effect slot struct declarations so KDevelop doesn't barf on themChris Robinson2013-10-073-20/+17
|
* Start using a simpler method for error handlingChris Robinson2013-10-061-0/+15
| | | | This helps avoid the al_try/al_throwerr/al_endtry stuff.
* Use a macro for the silence thresholdChris Robinson2013-10-061-0/+2
|
* Don't store the effect slot in SendParamsChris Robinson2013-10-061-1/+3
| | | | This makes it much more like DirectParams.
* Rename Filter param member to LpFilterChris Robinson2013-10-061-2/+2
|
* Use a simpler U64 macro to make 64-bit constantsChris Robinson2013-10-061-1/+11
|
* Add a workaround for KDevelop not recognizing 'restrict'Chris Robinson2013-10-061-0/+7
|
* Finalize AL_SOFT_deferred_updatesChris Robinson2013-10-051-11/+0
|
* Implement the Compressor effectChris Robinson2013-10-032-30/+37
|
* Use helpers to set channel gain arraysChris Robinson2013-10-031-1/+18
| | | | Also avoid unnecessary clearing.
* Implement the Autowah effect.Chris Robinson2013-10-033-4/+15
|
* Use a separate value for the maximum buffer channelsChris Robinson2013-07-232-7/+9
| | | | | | | Unlike the device, input buffers are accessed based on channel numbers instead of enums. This means the maximum number of channels they hold depends on the number of channels any one format can have, rather than the total number of recognized channels. Currently, this is 8 for 7.1.
* Limit the source step to 10Chris Robinson2013-07-021-8/+1
| | | | | | | | | This means the combination of the buffer frequency, source pitch, and doppler shift can't exceed 10x the device playback frequency. This is needed to keep the mixer from starving with a really high increment, causing small DstBufferSize values that require a lot of iterations.
* Use ALfilterState for the distortion effect filtersChris Robinson2013-06-061-0/+8
|
* Silence some clang warningsChris Robinson2013-06-051-6/+0
|
* Allow enabling HRTF through a context creation attributeChris Robinson2013-05-311-1/+4
|
* Start an extension that can query the status of HRTF renderingChris Robinson2013-05-311-0/+5
|
* Fix up the naming convention of effect methodsChris Robinson2013-05-292-25/+28
|
* Use C99's inline instead of __inlineChris Robinson2013-05-285-59/+59
|
* Use the high-shelf filter in place of low-passChris Robinson2013-05-281-2/+0
| | | | | They effectively both work to lower (or raise) high frequencies. However, the high-shelf performs better when gain=1.
* Use ALfilterState for the master echo and reverb filtersChris Robinson2013-05-271-19/+0
|
* Remove an unused methodChris Robinson2013-05-271-12/+0
|
* Use ALfilterState for the source direct and send filtersChris Robinson2013-05-272-4/+4
|
* Move ALEQFilter to alFilter.c/h and rename it to ALfilterStateChris Robinson2013-05-271-0/+43
|
* Cleanup the ALeffectStateFactory_create methodsChris Robinson2013-05-271-5/+3
| | | | | Get rid of the ALeffectStateFactory_create macro, and use the VCALL_NOARGS helper (requires adding the 'this' factory parameter).
* No-op if DELETE_OBJ is given a NULL pointerChris Robinson2013-05-271-4/+7
|
* Use generic VCALL[_NOARGS] macros instead of type-specific wrappersChris Robinson2013-05-273-17/+10
|
* Add helper macros to set an error and return, and use it in a few placesChris Robinson2013-05-261-0/+10
|