aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/portaudio.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Specify the buffer size as itself instead of the period countChris Robinson2019-04-261-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 methodChris Robinson2019-04-141-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 namesChris Robinson2019-03-191-2/+2
|
* Remove redundant void argument list in function defFilip Gawin2019-01-091-1/+1
|
* Use c++ headersFilip Gawin2019-01-091-3/+3
|
* Avoid using old style castsFilip Gawin2019-01-081-1/+1
| | | | | | To think about: examples/alffplay.cpp:600 OpenAL32/Include/alMain.h:295
* Return a unique_ptr for the backendChris Robinson2018-12-291-3/+3
|
* Make the backend type an enum classChris Robinson2018-12-291-5/+5
|
* Convert the backends to use proper inheritenceChris Robinson2018-12-281-173/+112
|
* Make more methods into member functionsChris Robinson2018-12-271-34/+54
|
* Rename some more struct members for consistencyChris Robinson2018-12-271-62/+59
|
* Get rid of the unnecessary STATIC_(UP)CAST macrosChris Robinson2018-12-271-11/+8
|
* Use a proper constructor/destructor for the ALCbackend baseChris Robinson2018-12-271-6/+6
|
* Return unique_ptrs instead of raw pointersChris Robinson2018-12-271-1/+1
| | | | For the ring buffer, channel converter, and sample converter.
* Clean up the ring buffer struct and use member functionsChris Robinson2018-12-261-4/+7
|
* Remove extraneous typedef, struct, and enum keywordsChris Robinson2018-12-241-1/+1
|
* Use a normal delete instead of ll_ringbuffer_freeChris Robinson2018-12-221-12/+6
| | | | And use RingBufferPtr in more places
* Use inline methods for the device format sizesChris Robinson2018-12-191-2/+2
|
* Rename some struct membersChris Robinson2018-11-261-67/+62
|
* Make ll_ringbuffer_write/read take void*/const void*Chris Robinson2018-11-191-2/+2
|
* Use a std::string for the device nameChris Robinson2018-11-181-6/+2
|
* Avoid more cases of an enum variable and type name clashChris Robinson2018-11-181-2/+2
|
* Convert the PortAudio backend factoryChris Robinson2018-11-151-83/+63
|
* Use a regular char* for the device's nameChris Robinson2018-11-151-2/+4
|
* Use std::string instead of al_string for enumeratingChris Robinson2018-11-151-3/+4
|
* Convert the PortAudio backend to C++Chris Robinson2018-11-121-0/+559