aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Use one long buffer for the chorus and flanger delay linesChris Robinson2013-11-102-38/+26
|
* Rename lfo_coeff to lfo_scaleChris Robinson2013-11-082-16/+16
|
* Use integer modulo for chorus and flangerChris Robinson2013-11-082-58/+62
| | | | Also simplify LFO coefficient calculations.
* Only use the inner loop for the chorus/flanger template methodChris Robinson2013-11-082-112/+114
|
* Redo the autowah effectChris Robinson2013-11-071-71/+71
| | | | | | | | It's now a low-pass filter with a cutoff that varies according to the input signal amplitude. There remains issues with apparent feedback in the resonant frequency with high resonance values. The actual cutoff range for the filter is also a guess.
* Reimplement the compressor to work per-sampleChris Robinson2013-11-061-37/+51
|
* Remove the Lock and Unlock methods from BackendFuncsChris Robinson2013-11-0412-61/+7
| | | | | All backends that still use the old interface use the default locking methods, which is also used by the ALCbackend base.
* Forward some wrapper functions to the base methodChris Robinson2013-11-041-31/+31
|
* Use C99 inline in more placesChris Robinson2013-11-044-0/+32
|
* Use C99 inline semanticsChris Robinson2013-11-043-29/+45
|
* Only set device functions when neededChris Robinson2013-11-041-2/+6
|
* Use a unique backend type for loopbackChris Robinson2013-11-043-32/+32
|
* Rename VCALL and VCALL0 to V and V0Chris Robinson2013-11-022-40/+40
|
* Constify some function pointersChris Robinson2013-11-021-8/+8
|
* Make backend factory methods static as neededChris Robinson2013-11-024-35/+39
|
* Convert the OSS backend to the new interfaceChris Robinson2013-11-024-180/+287
|
* Set vtables in the constructorChris Robinson2013-11-021-4/+4
|
* Make LockContext and UnlockContext inline againChris Robinson2013-11-021-10/+0
|
* Rename alcGetLatency to ALCdevice_GetLatencyChris Robinson2013-11-021-1/+1
|
* Move a macro definition up nearer to where it's usedChris Robinson2013-10-291-4/+4
|
* Use a helper macro for making vtable thunksChris Robinson2013-10-291-34/+17
|
* Add default handlers for reset, captureSamples, and availableSamplesChris Robinson2013-10-295-47/+36
|
* Convert the PulseAudio backend to the new interfaceChris Robinson2013-10-293-624/+865
|
* Add a macro to forward methods to a base typeChris Robinson2013-10-293-78/+40
|
* Convert the loopback backend to the new interfaceChris Robinson2013-10-293-35/+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
|
* Support capture backends with the new interfaceChris Robinson2013-10-281-2/+1
|
* Create and use a backend wrapper for captureChris Robinson2013-10-283-40/+139
|
* Add audio capture methods to ALCbackendChris Robinson2013-10-283-0/+29
|
* Move some stuff out of alMain.hChris Robinson2013-10-283-0/+235
|
* Move ALCbackend base stuff to a separate fileChris Robinson2013-10-283-114/+124
|
* Fix a couple castsChris Robinson2013-10-282-3/+3
|
* Move the device mutex to the backendChris Robinson2013-10-2813-17/+65
|
* Separate compatibility declarationsChris Robinson2013-10-284-0/+56
|
* Modify how VCALL is handledChris Robinson2013-10-282-32/+32
| | | | | | | | | | | 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-283-87/+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-282-0/+57
|
* 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-271-10/+100
| | | | | | | 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-2712-86/+97
|