Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Specify the buffer size as itself instead of the period count | Chris Robinson | 2019-04-26 | 1 | -5/+5 |
| | | | | | | | Certain backends don't need a buffer size to be a strict multiple of the period count, which allows a little more flexibility. The period/update size simply acts as the minimum request, which helps control CPU load by determining how often parameter and other pre-mixing updates are processed. | ||||
* | Remove the backend factory deinit method | Chris Robinson | 2019-04-14 | 1 | -9/+0 |
| | | | | | | It was never actually called anywhere, and there's no safe place where it can be called. It's probably better to let the individual backends worry about cleaning themselves up anyway. | ||||
* | Rename DevProbe enum names | Chris Robinson | 2019-03-19 | 1 | -2/+2 |
| | |||||
* | Remove redundant void argument list in function def | Filip Gawin | 2019-01-09 | 1 | -1/+1 |
| | |||||
* | Use c++ headers | Filip Gawin | 2019-01-09 | 1 | -2/+2 |
| | |||||
* | Rename BackendLock to StateLock | Chris Robinson | 2018-12-30 | 1 | -2/+1 |
| | |||||
* | Add missing includes for mem_fn | Chris Robinson | 2018-12-29 | 1 | -0/+1 |
| | |||||
* | Return a unique_ptr for the backend | Chris Robinson | 2018-12-29 | 1 | -2/+2 |
| | |||||
* | Make the backend type an enum class | Chris Robinson | 2018-12-29 | 1 | -4/+4 |
| | |||||
* | Convert the backends to use proper inheritence | Chris Robinson | 2018-12-28 | 1 | -112/+87 |
| | |||||
* | Turn more methods into member functions | Chris Robinson | 2018-12-27 | 1 | -63/+65 |
| | |||||
* | Get rid of the unnecessary STATIC_(UP)CAST macros | Chris Robinson | 2018-12-27 | 1 | -3/+2 |
| | |||||
* | Use a proper constructor/destructor for the ALCbackend base | Chris Robinson | 2018-12-27 | 1 | -3/+3 |
| | |||||
* | Return unique_ptrs instead of raw pointers | Chris Robinson | 2018-12-27 | 1 | -2/+2 |
| | | | | For the ring buffer, channel converter, and sample converter. | ||||
* | Clean up the ring buffer struct and use member functions | Chris Robinson | 2018-12-26 | 1 | -7/+10 |
| | |||||
* | Remove extraneous typedef, struct, and enum keywords | Chris Robinson | 2018-12-24 | 1 | -1/+1 |
| | |||||
* | Use inline methods for the device format sizes | Chris Robinson | 2018-12-19 | 1 | -9/+3 |
| | |||||
* | Clean up the JACK backend | Chris Robinson | 2018-11-27 | 1 | -169/+186 |
| | |||||
* | Replace last uses of alsem_t with al::semaphore | Chris Robinson | 2018-11-27 | 1 | -8/+4 |
| | |||||
* | Replace some uses of althrd_t with std::thread | Chris Robinson | 2018-11-26 | 1 | -15/+18 |
| | |||||
* | Avoid using ATOMIC_LOAD on ALCdevice::Connected | Chris Robinson | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | Rename some struct members | Chris Robinson | 2018-11-26 | 1 | -4/+4 |
| | |||||
* | Avoid using the ATOMIC() macro | Chris Robinson | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | Avoid using ATOMIC_INIT | Chris Robinson | 2018-11-26 | 1 | -11/+4 |
| | |||||
* | Use proper time types for the device clock time and latency | Chris Robinson | 2018-11-22 | 1 | -2/+2 |
| | |||||
* | Return the ringbuffer data pointers as a pair | Chris Robinson | 2018-11-19 | 1 | -14/+12 |
| | |||||
* | Remove the atomic exchange macros | Chris Robinson | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Use a std::string for the device name | Chris Robinson | 2018-11-18 | 1 | -5/+3 |
| | |||||
* | Avoid more cases of an enum variable and type name clash | Chris Robinson | 2018-11-18 | 1 | -3/+3 |
| | |||||
* | Don't pass the current thread to althrd_setname | Chris Robinson | 2018-11-17 | 1 | -1/+1 |
| | |||||
* | Convert the JACK backend factory | Chris Robinson | 2018-11-15 | 1 | -33/+18 |
| | |||||
* | Use a regular char* for the device's name | Chris Robinson | 2018-11-15 | 1 | -3/+4 |
| | |||||
* | Avoid some more uses of al_string | Chris Robinson | 2018-11-15 | 1 | -4/+3 |
| | |||||
* | Use std::string instead of al_string for enumerating | Chris Robinson | 2018-11-15 | 1 | -2/+3 |
| | |||||
* | Convert the JACK backend to C++ | Chris Robinson | 2018-11-13 | 1 | -0/+608 |