Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use a standard string for the device's HRTF name | Chris Robinson | 2018-11-18 | 3 | -9/+6 |
| | |||||
* | Use a regular vector for the enumerated HRTF list | Chris Robinson | 2018-11-18 | 5 | -111/+86 |
| | |||||
* | Use a std::string for the device name | Chris Robinson | 2018-11-18 | 20 | -119/+65 |
| | |||||
* | Use a std::thread for the event thread | Chris Robinson | 2018-11-18 | 4 | -12/+31 |
| | |||||
* | Fix the initial device refcount | Chris Robinson | 2018-11-18 | 1 | -1/+1 |
| | |||||
* | Fix a float constant type | Chris Robinson | 2018-11-18 | 1 | -1/+1 |
| | |||||
* | Avoid more cases of an enum variable and type name clash | Chris Robinson | 2018-11-18 | 18 | -107/+107 |
| | |||||
* | Use constructors/destructors with ALCdevice | Chris Robinson | 2018-11-18 | 2 | -222/+142 |
| | | | | | As with ALCcontext, this is really ALCdevice_struct because of the way it's declared in the public header. | ||||
* | Avoid a fixed-size string buffer | Chris Robinson | 2018-11-18 | 1 | -6/+7 |
| | |||||
* | Separate class and variable definitions | Chris Robinson | 2018-11-18 | 1 | -2/+3 |
| | |||||
* | Use constructors/destructors for ALeffectslot | Chris Robinson | 2018-11-18 | 3 | -97/+39 |
| | |||||
* | Use cleaner constructor/destructor calls for ALCcontext | Chris Robinson | 2018-11-18 | 3 | -105/+90 |
| | | | | | Note that the actual type name is ALCcontext_struct, because of how it's defined in AL/alc.h (ALCcontext is just an alias to struct ALCcontext_struct). | ||||
* | Improve audio underrun recordery in alffplay | Chris Robinson | 2018-11-18 | 1 | -0/+12 |
| | | | | | Now it has a better idea to skip samples during refill instead of after restarting. | ||||
* | Remove an unused typedef | Chris Robinson | 2018-11-18 | 1 | -1/+0 |
| | |||||
* | Remove the pointer-specific atomic exchange macros | Chris Robinson | 2018-11-18 | 7 | -55/+33 |
| | |||||
* | Avoid naming a struct member the same as an enum type | Chris Robinson | 2018-11-18 | 8 | -20/+20 |
| | |||||
* | Use std::isfinite instead of the global isfinite | Chris Robinson | 2018-11-18 | 1 | -8/+8 |
| | |||||
* | Add and use new/delete operators to ALeffectslot | Chris Robinson | 2018-11-18 | 3 | -16/+15 |
| | |||||
* | Use a normal vector for auxiliary effect slots | Chris Robinson | 2018-11-18 | 4 | -40/+32 |
| | |||||
* | Use a proper vector for the source sublists | Chris Robinson | 2018-11-18 | 3 | -58/+47 |
| | |||||
* | Move the alignment-aware allocator and vector to headers | Chris Robinson | 2018-11-18 | 3 | -82/+60 |
| | |||||
* | Use new/delete for ALCcontext objects | Chris Robinson | 2018-11-18 | 5 | -34/+22 |
| | |||||
* | Store the listener directly in the context | Chris Robinson | 2018-11-17 | 6 | -104/+104 |
| | |||||
* | Move the vector and matrix declarations to a separate header | Chris Robinson | 2018-11-17 | 12 | -64/+81 |
| | |||||
* | Move the ALCcontext definition to its own header | Chris Robinson | 2018-11-17 | 30 | -191/+234 |
| | |||||
* | Try to clear up an MSVC warning | Chris Robinson | 2018-11-17 | 1 | -1/+1 |
| | |||||
* | Avoid an explicit static_cast to bool | Chris Robinson | 2018-11-17 | 1 | -1/+1 |
| | |||||
* | Remove unused headers and checks | Chris Robinson | 2018-11-17 | 17 | -166/+24 |
| | |||||
* | Convert almalloc.c to C++ | Chris Robinson | 2018-11-17 | 2 | -3/+3 |
| | |||||
* | Always use C++11 atomics | Chris Robinson | 2018-11-17 | 3 | -347/+2 |
| | |||||
* | Convert bs2b.c to C++ | Chris Robinson | 2018-11-17 | 2 | -8/+9 |
| | |||||
* | Remove now unneeded inldefs.c | Chris Robinson | 2018-11-17 | 2 | -112/+0 |
| | | | | | All code using inline functions is now C++, so will generate callable functions as-needed. | ||||
* | Convert the mixers to C++ | Chris Robinson | 2018-11-17 | 8 | -14/+14 |
| | |||||
* | Remove ASSUME_ALIGNED | Chris Robinson | 2018-11-17 | 6 | -37/+16 |
| | | | | | | It's become a liability with C++ since it returns void* instead of the input pointer type, and it doesn't seem to help optimizations anyway (auto- vectorization still produces unaligned loads and stores). | ||||
* | Convert the filters to C++ | Chris Robinson | 2018-11-17 | 3 | -2/+2 |
| | |||||
* | Remove the old unused bsincgen.c | Chris Robinson | 2018-11-17 | 1 | -404/+0 |
| | |||||
* | Convert ringbuffer.c to C++ | Chris Robinson | 2018-11-17 | 2 | -6/+6 |
| | |||||
* | Convert mastering.c to C++ | Chris Robinson | 2018-11-17 | 2 | -2/+2 |
| | |||||
* | Convert converter.c to C++ | Chris Robinson | 2018-11-17 | 3 | -73/+66 |
| | |||||
* | Convert the remaining effects to C++ | Chris Robinson | 2018-11-17 | 4 | -36/+51 |
| | |||||
* | Convert the dedicated, distortion, echo, and equalizer to C++ | Chris Robinson | 2018-11-17 | 5 | -41/+55 |
| | |||||
* | Add a couple missing includes | Chris Robinson | 2018-11-17 | 2 | -0/+2 |
| | |||||
* | Don't pass the current thread to althrd_setname | Chris Robinson | 2018-11-17 | 16 | -63/+26 |
| | |||||
* | Convert threads.c to C++ | Chris Robinson | 2018-11-17 | 7 | -324/+35 |
| | | | | Also vastly simplify and remove related code. | ||||
* | Use standard complex types instead of custom | Chris Robinson | 2018-11-17 | 6 | -217/+145 |
| | |||||
* | Remove some more unused stuff | Chris Robinson | 2018-11-17 | 2 | -32/+4 |
| | |||||
* | Make the Hann windows const | Chris Robinson | 2018-11-17 | 2 | -111/+110 |
| | |||||
* | Convert fshifter.c to C++ | Chris Robinson | 2018-11-17 | 2 | -10/+14 |
| | |||||
* | Convert modulator.c to C++ | Chris Robinson | 2018-11-17 | 2 | -10/+13 |
| | |||||
* | Convert null.c to C++ | Chris Robinson | 2018-11-17 | 2 | -8/+15 |
| |