Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix capture with the new backend interface | Chris Robinson | 2013-10-28 | 4 | -13/+38 |
| | |||||
* | Convert ALSA to the new backend interface | Chris Robinson | 2013-10-28 | 3 | -274/+388 |
| | |||||
* | Don't return a void | Chris Robinson | 2013-10-28 | 1 | -4/+4 |
| | |||||
* | Declare LoadLib functions in one place | Chris Robinson | 2013-10-28 | 1 | -7/+7 |
| | |||||
* | Add a missing compat.h include for portaudio | Chris Robinson | 2013-10-28 | 1 | -0/+1 |
| | |||||
* | Rename the support method to querySupport | Chris Robinson | 2013-10-28 | 3 | -7/+7 |
| | |||||
* | Support capture backends with the new interface | Chris Robinson | 2013-10-28 | 1 | -2/+1 |
| | |||||
* | Create and use a backend wrapper for capture | Chris Robinson | 2013-10-28 | 3 | -40/+139 |
| | |||||
* | Add audio capture methods to ALCbackend | Chris Robinson | 2013-10-28 | 3 | -0/+29 |
| | |||||
* | Move some stuff out of alMain.h | Chris Robinson | 2013-10-28 | 3 | -0/+235 |
| | |||||
* | Move ALCbackend base stuff to a separate file | Chris Robinson | 2013-10-28 | 3 | -114/+124 |
| | |||||
* | Fix a couple casts | Chris Robinson | 2013-10-28 | 2 | -3/+3 |
| | |||||
* | Move the device mutex to the backend | Chris Robinson | 2013-10-28 | 13 | -17/+65 |
| | |||||
* | Separate compatibility declarations | Chris Robinson | 2013-10-28 | 4 | -0/+56 |
| | |||||
* | Modify how VCALL is handled | Chris Robinson | 2013-10-28 | 2 | -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 style | Chris Robinson | 2013-10-28 | 3 | -87/+193 |
| | |||||
* | Add a backend factory base type | Chris Robinson | 2013-10-28 | 1 | -0/+43 |
| | |||||
* | Add a default getLatency to ALCbackend | Chris Robinson | 2013-10-28 | 2 | -0/+8 |
| | | | | And make sure the backend is properly deleted. | ||||
* | Move the lock/unlock methods to the backend | Chris Robinson | 2013-10-28 | 2 | -0/+57 |
| | |||||
* | Add missing header to git | Chris Robinson | 2013-10-27 | 1 | -0/+62 |
| | |||||
* | Move the ALCdevice handle to the ALCbackend base | Chris Robinson | 2013-10-27 | 1 | -10/+8 |
| | |||||
* | Use an ALCbackend object to access playback backends | Chris Robinson | 2013-10-27 | 1 | -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.c | Chris Robinson | 2013-10-27 | 2 | -38/+44 |
| | |||||
* | Rework threading functions | Chris Robinson | 2013-10-27 | 12 | -86/+97 |
| | |||||
* | Set a name for the mixer and recording threads | Chris Robinson | 2013-10-27 | 11 | -1/+18 |
| | |||||
* | Add a method to set the running thread's name | Chris Robinson | 2013-10-26 | 1 | -0/+38 |
| | |||||
* | Fix a comment | Chris Robinson | 2013-10-26 | 1 | -1/+1 |
| | |||||
* | Use a helper macro for pi*2 | Chris Robinson | 2013-10-08 | 8 | -29/+26 |
| | |||||
* | Use helper macros to convert between degrees and radians | Chris Robinson | 2013-10-08 | 2 | -61/+61 |
| | |||||
* | Use inline initialization for effect state factory vtables | Chris Robinson | 2013-10-07 | 11 | -145/+66 |
| | |||||
* | Constify the effect parameter of effect getters | Chris Robinson | 2013-10-07 | 11 | -56/+49 |
| | |||||
* | Use the UNUSED macro in the effects | Chris Robinson | 2013-10-07 | 11 | -110/+60 |
| | |||||
* | Use the UNUSED macro in the backends | Chris Robinson | 2013-10-07 | 5 | -59/+25 |
| | |||||
* | Use an UNUSED macro instead of void-tagging unused parameters | Chris Robinson | 2013-10-07 | 2 | -10/+6 |
| | |||||
* | Add a CMake option to not define the IDs used on Windows | Chris Robinson | 2013-10-07 | 1 | -0/+3 |
| | | | | | This includes the GUIDs, IIDs, CLSID, and PropertyKeys. It is up to the user to ensure the appropriate IDs are defined when linked. | ||||
* | Use a macro for the silence threshold | Chris Robinson | 2013-10-06 | 12 | -25/+26 |
| | |||||
* | Don't store the effect slot in SendParams | Chris Robinson | 2013-10-06 | 4 | -32/+50 |
| | | | | This makes it much more like DirectParams. | ||||
* | Rename Filter param member to LpFilter | Chris Robinson | 2013-10-06 | 2 | -6/+6 |
| | |||||
* | Use a simpler U64 macro to make 64-bit constants | Chris Robinson | 2013-10-06 | 1 | -1/+1 |
| | |||||
* | Finalize AL_SOFT_deferred_updates | Chris Robinson | 2013-10-05 | 1 | -1/+1 |
| | |||||
* | Only rest as long as needed in the Null renderer | Chris Robinson | 2013-10-05 | 1 | -5/+4 |
| | |||||
* | Add some more missing enums | Chris Robinson | 2013-10-03 | 1 | -0/+5 |
| | |||||
* | Implement the Compressor effect | Chris Robinson | 2013-10-03 | 2 | -18/+234 |
| | |||||
* | Add missing enum to the list | Chris Robinson | 2013-10-03 | 1 | -1/+1 |
| | |||||
* | Compile using -std=c99 when available | Chris Robinson | 2013-10-03 | 3 | -3/+3 |
| | |||||
* | Convert autowah.c line-endings | Chris Robinson | 2013-10-03 | 1 | -284/+284 |
| | |||||
* | Use helpers to set channel gain arrays | Chris Robinson | 2013-10-03 | 10 | -88/+22 |
| | | | | Also avoid unnecessary clearing. | ||||
* | Implement the Autowah effect. | Chris Robinson | 2013-10-03 | 1 | -0/+293 |
| | |||||
* | Avoid a divide-by-0 when distortion edge is 1 | Chris Robinson | 2013-09-04 | 1 | -0/+1 |
| | |||||
* | Use a separate value for the maximum buffer channels | Chris Robinson | 2013-07-23 | 3 | -6/+6 |
| | | | | | | | 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. |