Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Specify the buffer size as itself instead of the period count | Chris Robinson | 2019-04-26 | 1 | -3/+2 |
| | | | | | | | 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 | -68/+51 |
| | | | | | | 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 | -3/+3 |
| | |||||
* | Avoid using old style casts | Filip Gawin | 2019-01-08 | 1 | -1/+1 |
| | | | | | | To think about: examples/alffplay.cpp:600 OpenAL32/Include/alMain.h:295 | ||||
* | Return a unique_ptr for the backend | Chris Robinson | 2018-12-29 | 1 | -3/+3 |
| | |||||
* | Make the backend type an enum class | Chris Robinson | 2018-12-29 | 1 | -5/+5 |
| | |||||
* | Convert the backends to use proper inheritence | Chris Robinson | 2018-12-28 | 1 | -173/+112 |
| | |||||
* | Make more methods into member functions | Chris Robinson | 2018-12-27 | 1 | -34/+54 |
| | |||||
* | Rename some more struct members for consistency | Chris Robinson | 2018-12-27 | 1 | -62/+59 |
| | |||||
* | Get rid of the unnecessary STATIC_(UP)CAST macros | Chris Robinson | 2018-12-27 | 1 | -11/+8 |
| | |||||
* | Use a proper constructor/destructor for the ALCbackend base | Chris Robinson | 2018-12-27 | 1 | -6/+6 |
| | |||||
* | Return unique_ptrs instead of raw pointers | Chris Robinson | 2018-12-27 | 1 | -1/+1 |
| | | | | 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 | -4/+7 |
| | |||||
* | Remove extraneous typedef, struct, and enum keywords | Chris Robinson | 2018-12-24 | 1 | -1/+1 |
| | |||||
* | Use a normal delete instead of ll_ringbuffer_free | Chris Robinson | 2018-12-22 | 1 | -12/+6 |
| | | | | And use RingBufferPtr in more places | ||||
* | Use inline methods for the device format sizes | Chris Robinson | 2018-12-19 | 1 | -2/+2 |
| | |||||
* | Rename some struct members | Chris Robinson | 2018-11-26 | 1 | -67/+62 |
| | |||||
* | Make ll_ringbuffer_write/read take void*/const void* | Chris Robinson | 2018-11-19 | 1 | -2/+2 |
| | |||||
* | Use a std::string for the device name | Chris Robinson | 2018-11-18 | 1 | -6/+2 |
| | |||||
* | Avoid more cases of an enum variable and type name clash | Chris Robinson | 2018-11-18 | 1 | -2/+2 |
| | |||||
* | Convert the PortAudio backend factory | Chris Robinson | 2018-11-15 | 1 | -83/+63 |
| | |||||
* | Use a regular char* for the device's name | Chris Robinson | 2018-11-15 | 1 | -2/+4 |
| | |||||
* | Use std::string instead of al_string for enumerating | Chris Robinson | 2018-11-15 | 1 | -3/+4 |
| | |||||
* | Convert the PortAudio backend to C++ | Chris Robinson | 2018-11-12 | 1 | -0/+559 |