aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alMain.h
Commit message (Collapse)AuthorAgeFilesLines
* Use more specific names for temp buffer storageChris Robinson2019-03-021-1/+3
|
* Reduce BUFFERSIZE to match the default period sizeChris Robinson2019-02-241-2/+9
| | | | | Also adds a bit more space to the temp source data buffer, to avoid needing to loop on matching sample rates.
* Remove the FOAOut mixing buffer and associated post-processesChris Robinson2019-02-221-8/+2
|
* Avoid using internal AL[u]int64 typesChris Robinson2019-02-111-9/+6
|
* Get rid of the FAM_SIZE macroChris Robinson2019-02-111-6/+0
|
* Move some number-related stuff to a separate headerChris Robinson2019-02-111-31/+7
|
* Constify some parametersChris Robinson2019-01-121-1/+1
|
* Add prefixes for ALCdevice and ALCcontextChris Robinson2019-01-091-0/+1
|
* Remove an unused macroChris Robinson2019-01-081-4/+0
|
* Replace a couple more C-style castsChris Robinson2019-01-081-1/+1
|
* Use user-defined literals for 64-bit literalsChris Robinson2019-01-071-24/+7
|
* Move some macros to a common headerChris Robinson2019-01-071-35/+1
|
* Simplify MixParams and AmbiUpsamplerChris Robinson2019-01-051-20/+7
| | | | Since the dry buffer is always an ambisonic target now
* Rename ALCdevice_struct and ALCcontext_structChris Robinson2019-01-011-5/+5
| | | | | | | | | | | A (possibly contentious?) change in the public headers. Those names were never part of any specification, and I don't know why the struct names differed from the actual type name. But with C++, which takes the original struct declaration as the original name, it was affecting the type's internal symbols. This shouldn't affect user code since ALCdevice_struct and ALCcontext_struct were never part of the spec. If issues arise from this change, it should be reported.
* Use an atomic bool on things that only take true or falseChris Robinson2018-12-301-1/+1
|
* Rename BackendLock to StateLockChris Robinson2018-12-301-1/+5
|
* Return a unique_ptr for the backendChris Robinson2018-12-291-1/+1
|
* Convert the backends to use proper inheritenceChris Robinson2018-12-281-2/+2
|
* Constify and reorder a couple device fieldsChris Robinson2018-12-271-4/+4
|
* Cleanup some includesChris Robinson2018-12-251-13/+1
|
* Remove extraneous typedef, struct, and enum keywordsChris Robinson2018-12-241-17/+17
|
* Provide effect target parameters through a common structChris Robinson2018-12-241-2/+2
|
* Apply the limiter before distance compensationChris Robinson2018-12-241-2/+2
|
* Rename a couple HRTF structsChris Robinson2018-12-221-3/+3
|
* Pass RealMixParams by reference instead of pointerChris Robinson2018-12-201-2/+2
|
* Use inline methods for the device format sizesChris Robinson2018-12-191-2/+1
|
* Don't hardcode the channel count from the device ambisonic orderChris Robinson2018-12-191-8/+11
|
* Combine handling of attribute processingChris Robinson2018-12-181-0/+2
|
* Move some ambisonic-related macros to a separate headerChris Robinson2018-12-151-37/+1
|
* Add macros for the ambisonic order masksChris Robinson2018-12-141-3/+11
|
* Add POPCNT32 and CTZ32 macrosChris Robinson2018-12-131-13/+41
|
* Fix some MSVC conversion warningsChris Robinson2018-12-121-6/+6
|
* Clean up a few more loopsChris Robinson2018-12-101-2/+13
|
* Use member functions for BFormatDec and AmbiUpsamplerChris Robinson2018-12-081-2/+2
|
* Use a constructor instead of a macro to initialize AsyncEventChris Robinson2018-12-061-3/+5
|
* Handle EventType_BufferCompleted uniquelyChris Robinson2018-12-041-0/+4
|
* Handle source state changed events uniquely in the event loopChris Robinson2018-11-301-3/+7
| | | | | To avoid the need of constructing the string in the mixer thread, which is commonly formatted anyway.
* Reorganize some device membersChris Robinson2018-11-291-29/+30
|
* Use a standard mutex for the remaining locksChris Robinson2018-11-261-3/+3
|
* Use a standard mutex for the backend lockChris Robinson2018-11-261-1/+1
|
* Add a missing std::beginChris Robinson2018-11-261-1/+1
|
* Get rid of some unnecessary functionsChris Robinson2018-11-261-10/+0
|
* Avoid using the ATOMIC() macroChris Robinson2018-11-261-4/+4
|
* Automatically clean up filters and effects with their sublistsChris Robinson2018-11-251-6/+26
|
* Automatically clean up buffers with ther sublistChris Robinson2018-11-251-3/+13
|
* Properly initialize the sublists' freemaskChris Robinson2018-11-251-3/+3
|
* Add a POPCNT64 macroChris Robinson2018-11-241-0/+15
| | | | To count the number of 1/on bits in a 64-bit value
* Replace remaining uses of std::vector with al::vectorChris Robinson2018-11-241-1/+1
| | | | Which uses a custom allocator that uses our allocation functions.
* Avoid a couple explicit loopsChris Robinson2018-11-221-8/+5
|
* Add noexcept to a bunch of inline functionsChris Robinson2018-11-221-5/+5
|