Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use std::isfinite instead of isfinite | Chris Robinson | 2018-11-19 | 2 | -3/+5 |
| | |||||
* | Use a regular vector for the reverb sample buffer | Chris Robinson | 2018-11-19 | 1 | -36/+20 |
| | |||||
* | Rename reverb struct members | Chris Robinson | 2018-11-19 | 1 | -224/+224 |
| | |||||
* | Clean up the biquad filter a bit | Chris Robinson | 2018-11-19 | 8 | -50/+49 |
| | |||||
* | Fix up the struct member names in the autowah effect | Chris Robinson | 2018-11-19 | 1 | -54/+58 |
| | |||||
* | Use proper inheritence for EffectStateFactory | Chris Robinson | 2018-11-19 | 12 | -185/+54 |
| | |||||
* | Use a vector to handle mixing buffer storage | Chris Robinson | 2018-11-19 | 1 | -19/+8 |
| | |||||
* | Fix a couple incorrect uses of ringbuffer pointer data | Chris Robinson | 2018-11-19 | 1 | -7/+8 |
| | |||||
* | Remove the ATOMIC_THREAD_FENCE macro | Chris Robinson | 2018-11-19 | 1 | -3/+3 |
| | |||||
* | Return the ringbuffer data pointers as a pair | Chris Robinson | 2018-11-19 | 8 | -99/+95 |
| | |||||
* | Make ll_ringbuffer_write/read take void*/const void* | Chris Robinson | 2018-11-19 | 8 | -24/+24 |
| | |||||
* | Remove the CONST_CAST hack | Chris Robinson | 2018-11-19 | 1 | -29/+27 |
| | |||||
* | Remove the atomic exchange macros | Chris Robinson | 2018-11-19 | 9 | -40/+30 |
| | |||||
* | Simplify the RefCount type | Chris Robinson | 2018-11-19 | 2 | -9/+7 |
| | |||||
* | Replace ATOMIC_REPLACE_HEAD with an inline function | Chris Robinson | 2018-11-19 | 1 | -4/+4 |
| | |||||
* | Remove the unused vector macros | Chris Robinson | 2018-11-18 | 1 | -82/+0 |
| | |||||
* | Use a normal vector in the QSA backend | Chris Robinson | 2018-11-18 | 1 | -42/+45 |
| | |||||
* | Use a normal vector for filter sublists | Chris Robinson | 2018-11-18 | 1 | -7/+5 |
| | |||||
* | Use a normal vector for effect sublists | Chris Robinson | 2018-11-18 | 1 | -5/+5 |
| | |||||
* | Use a normal vector for buffer sublists | Chris Robinson | 2018-11-18 | 1 | -5/+5 |
| | |||||
* | Remove some unnecessary static specifiers | Chris Robinson | 2018-11-18 | 1 | -2/+2 |
| | |||||
* | Use a standard string for the enumerated HRTF names | Chris Robinson | 2018-11-18 | 4 | -27/+8 |
| | |||||
* | Use a standard string for the device's HRTF name | Chris Robinson | 2018-11-18 | 2 | -8/+5 |
| | |||||
* | Use a regular vector for the enumerated HRTF list | Chris Robinson | 2018-11-18 | 4 | -109/+85 |
| | |||||
* | Use a std::string for the device name | Chris Robinson | 2018-11-18 | 19 | -118/+64 |
| | |||||
* | Use a std::thread for the event thread | Chris Robinson | 2018-11-18 | 2 | -8/+5 |
| | |||||
* | 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 | 17 | -104/+104 |
| | |||||
* | Use constructors/destructors with ALCdevice | Chris Robinson | 2018-11-18 | 1 | -148/+71 |
| | | | | | 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 | 1 | -39/+2 |
| | |||||
* | Use cleaner constructor/destructor calls for ALCcontext | Chris Robinson | 2018-11-18 | 2 | -98/+83 |
| | | | | | 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). | ||||
* | Remove an unused typedef | Chris Robinson | 2018-11-18 | 1 | -1/+0 |
| | |||||
* | Remove the pointer-specific atomic exchange macros | Chris Robinson | 2018-11-18 | 2 | -24/+22 |
| | |||||
* | Avoid naming a struct member the same as an enum type | Chris Robinson | 2018-11-18 | 3 | -6/+6 |
| | |||||
* | Add and use new/delete operators to ALeffectslot | Chris Robinson | 2018-11-18 | 1 | -3/+4 |
| | |||||
* | Use a normal vector for auxiliary effect slots | Chris Robinson | 2018-11-18 | 2 | -8/+3 |
| | |||||
* | Use a proper vector for the source sublists | Chris Robinson | 2018-11-18 | 2 | -15/+11 |
| | |||||
* | Move the alignment-aware allocator and vector to headers | Chris Robinson | 2018-11-18 | 2 | -82/+22 |
| | |||||
* | Use new/delete for ALCcontext objects | Chris Robinson | 2018-11-18 | 3 | -20/+7 |
| | |||||
* | Store the listener directly in the context | Chris Robinson | 2018-11-17 | 4 | -75/+73 |
| | |||||
* | Move the vector and matrix declarations to a separate header | Chris Robinson | 2018-11-17 | 7 | -12/+11 |
| | |||||
* | Move the ALCcontext definition to its own header | Chris Robinson | 2018-11-17 | 16 | -15/+210 |
| | |||||
* | Remove unused headers and checks | Chris Robinson | 2018-11-17 | 7 | -7/+0 |
| | |||||
* | Convert bs2b.c to C++ | Chris Robinson | 2018-11-17 | 1 | -7/+8 |
| | |||||
* | Remove now unneeded inldefs.c | Chris Robinson | 2018-11-17 | 1 | -111/+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 | 7 | -3/+3 |
| | |||||
* | Remove ASSUME_ALIGNED | Chris Robinson | 2018-11-17 | 4 | -21/+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 | 2 | -0/+0 |
| |