aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/wave.cpp
Commit message (Expand)AuthorAgeFilesLines
* Make sure the file is rewound before writing the wave headerChris Robinson2019-03-191-6/+8
* Rename DevProbe enum namesChris Robinson2019-03-191-2/+2
* Avoid using internal AL[u]int64 typesChris Robinson2019-02-111-2/+2
* Use c++ headersFilip Gawin2019-01-091-3/+3
* Use an atomic bool on things that only take true or falseChris Robinson2018-12-301-3/+3
* Rename BackendLock to StateLockChris Robinson2018-12-301-2/+0
* Add missing includes for mem_fnChris Robinson2018-12-291-0/+1
* Return a unique_ptr for the backendChris Robinson2018-12-291-2/+2
* Make the backend type an enum classChris Robinson2018-12-291-4/+4
* Convert the backends to use proper inheritenceChris Robinson2018-12-281-95/+69
* Turn even more methods into member functionsChris Robinson2018-12-281-62/+65
* Get rid of the unnecessary STATIC_(UP)CAST macrosChris Robinson2018-12-271-5/+4
* Use a proper constructor/destructor for the ALCbackend baseChris Robinson2018-12-271-3/+3
* Remove extraneous typedef, struct, and enum keywordsChris Robinson2018-12-241-1/+1
* Use inline methods for the device format sizesChris Robinson2018-12-191-7/+6
* Fix some MSVC conversion warningsChris Robinson2018-12-121-4/+4
* Avoid using ATOMIC_LOAD on ALCdevice::ConnectedChris Robinson2018-11-261-1/+1
* Rename some struct membersChris Robinson2018-11-261-7/+7
* Avoid using the ATOMIC() macroChris Robinson2018-11-261-1/+1
* Avoid using ATOMIC_INITChris Robinson2018-11-261-8/+3
* Replace remaining uses of std::vector with al::vectorChris Robinson2018-11-241-1/+1
* Use an enum class for AmbiLayout/Norm settingsChris Robinson2018-11-201-2/+2
* Remove the atomic exchange macrosChris Robinson2018-11-191-2/+1
* Use a std::string for the device nameChris Robinson2018-11-181-2/+1
* Avoid more cases of an enum variable and type name clashChris Robinson2018-11-181-6/+6
* Don't pass the current thread to althrd_setnameChris Robinson2018-11-171-1/+1
* Convert the Wave Writer backend factoryChris Robinson2018-11-151-59/+32
* Use a regular char* for the device's nameChris Robinson2018-11-151-1/+2
* Use std::string instead of al_string for enumeratingChris Robinson2018-11-151-3/+4
* Avoid calling through the vtable in the backendsChris Robinson2018-11-131-2/+2
* Use a vector in the wave backendChris Robinson2018-11-111-30/+13
* Use C++ threads in the null and wave backendsChris Robinson2018-11-111-21/+21
* Use standard timing methods for the null and wave backendsChris Robinson2018-11-101-30/+31
* Get rid of the last few al_fopen callsChris Robinson2018-11-101-6/+10
* Add missing consttructor and destructor calls for the wave backendChris Robinson2018-11-091-0/+2
* Convert the wave backend to C++Chris Robinson2018-11-091-0/+461