aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use an array of auxslot pointers instead of IDs to lookupChris Robinson2020-11-071-41/+59
|
* Use a separate structure for the active effect slot propertiesChris Robinson2020-11-0726-226/+309
|
* Use a range-for loop instead of for_eachChris Robinson2020-11-061-8/+8
|
* Use more efficient sorting for effect slotsChris Robinson2020-11-051-37/+47
|
* Add missing include for the CoreAudio backendChris Robinson2020-11-051-0/+1
|
* Avoid declaring standard typesChris Robinson2020-11-051-7/+11
|
* Simplify the [u]int64_t typedef header checkChris Robinson2020-11-051-6/+3
| | | | And include the correct header
* Release 1.21.0Chris Robinson2020-11-042-3/+3
|
* Update changelogChris Robinson2020-11-021-0/+3
|
* Avoid a full wipe and reallocation of wet buffersChris Robinson2020-11-022-33/+40
|
* Store the wet buffers in the contextChris Robinson2020-11-028-15/+73
| | | | | | This is rather ugly, but we need the wet buffers to remain allocated after its effect slot is deleted, because a voice can still use it for its final fade-out mix.
* Fix a typo in the changelogChris Robinson2020-10-271-1/+1
|
* Check for the right extension string in alffplayChris Robinson2020-10-261-1/+1
|
* Update ChangelogChris Robinson2020-10-261-0/+2
|
* Finalize AL_SOFT_eventsChris Robinson2020-10-264-39/+23
|
* Fix copy-paste errorChris Robinson2020-10-261-3/+3
|
* Clear /W3 on MSVC since we use /W4Chris Robinson2020-10-251-0/+7
|
* Add a comment about building for static linkingChris Robinson2020-10-251-0/+2
|
* Silence a couple more MSVC warningsChris Robinson2020-10-231-3/+8
|
* Remove a constexpr that needs C++17Chris Robinson2020-10-231-1/+1
|
* Don't use a template parameter as a variableChris Robinson2020-10-231-6/+17
| | | | And try to silence an MSVC warning about a constant overflow.
* Some cleanup in alspan.hChris Robinson2020-10-231-21/+31
|
* Add some constexprChris Robinson2020-10-231-4/+3
|
* Replace the mixer fraction macros with constexpr variablesChris Robinson2020-10-2114-87/+88
|
* Replace some more macros with constexpr variablesChris Robinson2020-10-2114-39/+39
|
* Change some more macros into constexpr variablesChris Robinson2020-10-215-38/+35
|
* Add some missing constexpr attributesChris Robinson2020-10-202-4/+4
|
* Merge pull request #483 from jhasse/silence-nodiscardkcat2020-10-202-3/+3
|\ | | | | Silence warning about unused return values
| * Silence warning about unused return valuesJan Niklas Hasse2020-10-202-3/+3
|/ | | | | warning C4834: discarding return value of function with 'nodiscard' attribute
* Try again to work around a GCC 5 issueChris Robinson2020-10-191-7/+15
|
* Revert "Workaround a GCC 5 issue"Chris Robinson2020-10-191-9/+0
| | | | | | This reverts commit ada92b058a6bde647af6f445131729900490142a. It didn't fix the problem.
* Workaround a GCC 5 issueChris Robinson2020-10-191-0/+9
|
* Use constexpr variables in place of some macrosChris Robinson2020-10-197-82/+74
|
* Avoid an extra function to generate BSincHeadersChris Robinson2020-10-181-30/+27
|
* Do in-place initialization for the bsinc filtersChris Robinson2020-10-181-91/+94
| | | | | Requires less dynamic allocations and less troublesome return values of large arrays. Also reduces repetition with specified parameters.
* Update ChangelogChris Robinson2020-10-181-0/+4
|
* Utilize C++11's [u]int64_t in alext.hChris Robinson2020-10-161-0/+2
|
* Quick update to ALC_BFORMAT3D_SOFT's valueChris Robinson2020-10-161-1/+1
|
* Add a missing enum to the enum listChris Robinson2020-10-161-0/+2
|
* Finalize AL_SOFT_effect_targetChris Robinson2020-10-163-6/+6
|
* Finalize ALC_SOFT_loopback_bformatChris Robinson2020-10-163-20/+22
|
* Enable standard stdio methods with MinGWChris Robinson2020-10-131-0/+3
| | | | | | This unfortunately doesn't fix the %z warnings for whatever reason, but it should help guarantee correct function behavior by not relying on msvcrt's stdio functions.
* Declare variables closer to where they're usedChris Robinson2020-10-131-50/+43
|
* Don't check for the app path if one was already retrievedChris Robinson2020-10-131-3/+4
|
* Use inline functions for popcnt and ctz instead of macrosChris Robinson2020-10-1310-82/+72
|
* Use a span instead of a pointer and count parametersChris Robinson2020-10-121-18/+15
|
* Update event enum valuesChris Robinson2020-10-072-10/+10
| | | | To keep them less spread out from other OpenAL Soft extensions.
* Print the number of used measurements in sofa-infoChris Robinson2020-10-071-1/+9
|
* Update ChangeLogChris Robinson2020-10-061-2/+5
|
* Be more robust with to-mono channel conversionsChris Robinson2020-10-053-28/+74
|