aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add default handlers for reset, captureSamples, and availableSamplesChris Robinson2013-10-296-47/+40
|
* Convert the PulseAudio backend to the new interfaceChris Robinson2013-10-294-630/+865
|
* Remove the cmake option to use wine headersChris Robinson2013-10-291-16/+0
|
* Disable MSVC warning 4098Chris Robinson2013-10-291-0/+1
| | | | | | | | | | | | | a.k.a. "'void' function returning a value", caused by returning a void in a function that returns void. Such as: void foo() { } void bar() { return foo(); } Which can happen due to some generalized macros that generate wrappers.
* Add a macro to forward methods to a base typeChris Robinson2013-10-294-78/+43
|
* Convert the loopback backend to the new interfaceChris Robinson2013-10-294-38/+109
|
* Remove a couple unnecessary (and incorrect) parameter namesChris Robinson2013-10-281-2/+2
|
* Fix capture with the new backend interfaceChris Robinson2013-10-284-13/+38
|
* Convert ALSA to the new backend interfaceChris Robinson2013-10-283-274/+388
|
* Don't return a voidChris Robinson2013-10-281-4/+4
|
* Declare LoadLib functions in one placeChris Robinson2013-10-281-7/+7
|
* Add a missing compat.h include for portaudioChris Robinson2013-10-281-0/+1
|
* Rename the support method to querySupportChris Robinson2013-10-283-7/+7
|
* 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.
* Support capture backends with the new interfaceChris Robinson2013-10-281-2/+1
|
* Create and use a backend wrapper for captureChris Robinson2013-10-284-47/+139
|
* Add audio capture methods to ALCbackendChris Robinson2013-10-283-0/+29
|
* Move some stuff out of alMain.hChris Robinson2013-10-284-216/+238
|
* Move ALCbackend base stuff to a separate fileChris Robinson2013-10-284-114/+125
|
* Fix a couple castsChris Robinson2013-10-282-3/+3
|
* Move the device mutex to the backendChris Robinson2013-10-2815-21/+70
|
* Separate compatibility declarationsChris Robinson2013-10-285-52/+58
|
* Modify how VCALL is handledChris Robinson2013-10-286-51/+51
| | | | | | | | | | | 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-284-90/+193
|
* Add a backend factory base typeChris Robinson2013-10-281-0/+43
|
* Add a default getLatency to ALCbackendChris Robinson2013-10-282-0/+8
| | | | And make sure the backend is properly deleted.
* Move the lock/unlock methods to the backendChris Robinson2013-10-284-8/+64
|
* Add missing header to gitChris Robinson2013-10-271-0/+62
|
* Move the ALCdevice handle to the ALCbackend baseChris Robinson2013-10-271-10/+8
|
* Use an ALCbackend object to access playback backendsChris Robinson2013-10-273-26/+110
| | | | | | | 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.
* Move SetThreadName to threads.cChris Robinson2013-10-272-38/+44
|
* Rework threading functionsChris Robinson2013-10-2715-91/+112
|
* Add a cmake option to disable building only alsoft-configChris Robinson2013-10-271-2/+3
|
* Set a name for the mixer and recording threadsChris Robinson2013-10-2712-1/+23
|
* Add a method to set the running thread's nameChris Robinson2013-10-264-2/+56
|
* Link to the correct sdl library for the loopback exampleChris Robinson2013-10-261-1/+1
|
* Fix a commentChris Robinson2013-10-261-1/+1
|
* Use SET_VTABLE1 to set the ALeffect vtablesChris Robinson2013-10-081-12/+12
|
* Use a helper macro for pi*2Chris Robinson2013-10-0810-30/+28
|
* Use helper macros to convert between degrees and radiansChris Robinson2013-10-083-63/+66
|
* Use inline initialization for effect state factory vtablesChris Robinson2013-10-0712-147/+71
|
* Constify the effect parameter of effect gettersChris Robinson2013-10-0712-60/+53
|
* Remove the last of the al_try codeChris Robinson2013-10-074-167/+128
|
* Use inline functions to lookup and remove objectsChris Robinson2013-10-071-10/+22
|
* Remove al_try from alAuxEffectSlot.cChris Robinson2013-10-071-234/+209
|
* Return only true or false from the source getters and settersChris Robinson2013-10-072-113/+106
|
* Remove al_try from alSource.cChris Robinson2013-10-071-325/+304
|
* Remove al_try from alListener.cChris Robinson2013-10-071-291/+267
|
* Remove al_try from alState.cChris Robinson2013-10-071-326/+283
|
* Use the UNUSED macro in the effectsChris Robinson2013-10-0711-110/+60
|