Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Allow the sample type to get changed on Solaris | Chris Robinson | 2021-01-29 | 1 | -6/+10 |
| | |||||
* | Merge pull request #524 from Cacodemon345/patch-1 | kcat | 2021-01-29 | 1 | -0/+1 |
|\ | | | | | Fix compilation on Solaris backend | ||||
| * | Fix compilation on Solaris backend | Cacodemon345 | 2021-01-29 | 1 | -0/+1 |
|/ | |||||
* | Add a panning "deadzone" for spatialized sources | Chris Robinson | 2021-01-28 | 2 | -3/+4 |
| | | | | It is now the greater of 'epsilon' (1 / 2**23) or ref_distance/1024. | ||||
* | Export EFX functions from the router | Chris Robinson | 2021-01-27 | 5 | -1/+152 |
| | |||||
* | Ignore SI-style configuration strings for device names | Chris Robinson | 2021-01-27 | 1 | -0/+5 |
| | |||||
* | Rework fading of stopped sounds | Chris Robinson | 2021-01-27 | 1 | -22/+13 |
| | | | | | | | Voices that stop and have no more accessible samples now fade out over 64 samples max. The extra loaded samples are also prevented from moving away from 0 amplitude. Paused voices that still have samples will still fade out over the whole mix. | ||||
* | Make sure InitVoice is given a valid buffer queue item | Chris Robinson | 2021-01-26 | 1 | -2/+2 |
| | |||||
* | Move al::deque to a common header | Chris Robinson | 2021-01-25 | 3 | -7/+18 |
| | |||||
* | Use an AL-specific buffer queue item struct for sources | Chris Robinson | 2021-01-25 | 5 | -79/+68 |
| | |||||
* | Use a deque for the source buffer queue | Chris Robinson | 2021-01-25 | 2 | -149/+121 |
| | | | | | | This mainly avoids having to allocate ~64-byte structures individually. The mixing voice still holds the queue as a linked list so as to be container- agnostic. | ||||
* | Store the callback in the buffer list item | Chris Robinson | 2021-01-24 | 4 | -61/+64 |
| | |||||
* | Store buffer info in the queue entry | Chris Robinson | 2021-01-24 | 21 | -78/+103 |
| | |||||
* | Remove some unnecessary function attributes | Chris Robinson | 2021-01-23 | 1 | -4/+4 |
| | | | | | | | | The alloc_size was wrong anyway since the function parameter takes the number of objects to be allocated and the attribute declares which is the number of bytes. The assume_aligned is unnecessary since the function is inlined and al_malloc/al_calloc already have appropriate attributes for the compiler to see. | ||||
* | Set the correct default buffer bits/format | Chris Robinson | 2021-01-22 | 2 | -3/+3 |
| | |||||
* | Don't bother checking for std::aligned_alloc | Chris Robinson | 2021-01-22 | 3 | -25/+2 |
| | |||||
* | Fix setting the correct standards flag | Chris Robinson | 2021-01-22 | 1 | -2/+10 |
| | |||||
* | Ensure the correct standard is set for cmake checks | Chris Robinson | 2021-01-22 | 1 | -0/+2 |
| | |||||
* | Remove an unnecessary semicolon | Chris Robinson | 2021-01-22 | 1 | -1/+1 |
| | |||||
* | Fix __cplusplus value check | Chris Robinson | 2021-01-22 | 1 | -1/+1 |
| | |||||
* | Use if constexpr when possible | Chris Robinson | 2021-01-22 | 5 | -6/+15 |
| | |||||
* | Make PopCount and CountTrailingZeros more standard-like | Chris Robinson | 2021-01-22 | 12 | -113/+145 |
| | |||||
* | Use a standard bitset for bitfield flags | Chris Robinson | 2021-01-22 | 9 | -100/+56 |
| | |||||
* | Make the endian test more C++-like | Chris Robinson | 2021-01-21 | 6 | -31/+55 |
| | |||||
* | Update apt before installing dependencies | Chris Robinson | 2021-01-21 | 1 | -1/+1 |
| | |||||
* | Fix handling paused devices with the wave writer backend | Chris Robinson | 2021-01-21 | 1 | -10/+14 |
| | |||||
* | Simplify a division | Chris Robinson | 2021-01-21 | 1 | -1/+1 |
| | | | | | The division opcode typically also generates the remainder, making the result of x%y free with x/y. | ||||
* | Avoid declaring some variables multiple times | Chris Robinson | 2021-01-21 | 1 | -6/+7 |
| | |||||
* | Avoid global constexpr arrays | Chris Robinson | 2021-01-21 | 10 | -154/+172 |
| | |||||
* | Update ChangeLog | Chris Robinson | 2021-01-20 | 1 | -0/+2 |
| | |||||
* | Revert "Print the build results after CI" | Chris Robinson | 2021-01-20 | 1 | -6/+0 |
| | | | | This reverts commit e1e0809253b6a361a5d9862d887de2557bbe9742. | ||||
* | Print the build results after CI | Chris Robinson | 2021-01-20 | 1 | -0/+6 |
| | |||||
* | Avoid extra copies/work when reading HRTF data | Chris Robinson | 2021-01-20 | 1 | -8/+12 |
| | |||||
* | Avoid explicitly searching for the WindowsSDK | Chris Robinson | 2021-01-19 | 3 | -700/+23 |
| | | | | | | It's causing problems with various setups. So instead we'll have to assume some things for Windows (namely that winmm exists, and if dsound isn't in DXSDK_DIR, it needs to be in the compiler's default paths to be usable). | ||||
* | Remove constexpr from a function | Chris Robinson | 2021-01-17 | 1 | -6/+1 |
| | | | | | Various versions of GCC have a problem with it, and it doesn't really add much benefit anyway. | ||||
* | First try at using GitHub Actions | Chris Robinson | 2021-01-17 | 1 | -0/+63 |
| | |||||
* | Avoid calling readAdvance in a loop | Chris Robinson | 2021-01-17 | 1 | -3/+5 |
| | |||||
* | Don't assume the ring buffer's read vector is the next writable space | Chris Robinson | 2021-01-15 | 1 | -30/+36 |
| | | | | | This is untrue since the ring buffer leaves one element unwritten, so there's one extra element to be written once a readable element is read. | ||||
* | Use a span instead of passing a vector by reference | Chris Robinson | 2021-01-11 | 1 | -5/+5 |
| | |||||
* | Make sure proper names are used for querying PulseAudio info | Chris Robinson | 2021-01-10 | 1 | -5/+5 |
| | |||||
* | Merge pull request #515 from ilya-fedin/pulse-nullptr-default | kcat | 2021-01-10 | 1 | -42/+13 |
|\ | | | | | Pass nullptr to pulse for default device | ||||
| * | Pass nullptr to pulse for default device | Ilya Fedin | 2021-01-10 | 1 | -42/+13 |
|/ | |||||
* | Remove the invalid noexcept specification | Chris Robinson | 2021-01-08 | 1 | -1/+1 |
| | |||||
* | Quickly fade out samples of a stopping voice | Chris Robinson | 2021-01-08 | 1 | -0/+20 |
| | | | | | Rather than linearly fading out the mix over the mixing update, logarithmically fade out the post-resampled samples by approx -60dB per millisecond. | ||||
* | Avoid dereferencing the end iterator | Chris Robinson | 2021-01-08 | 1 | -4/+4 |
| | |||||
* | Ensure the endian test is constexpr | Chris Robinson | 2021-01-06 | 1 | -5/+6 |
| | |||||
* | Avoid duplicating an inline template function | Chris Robinson | 2021-01-06 | 1 | -21/+4 |
| | |||||
* | Properly trace the new HRTF delay for the B-Format decoder | Chris Robinson | 2021-01-06 | 1 | -2/+2 |
| | |||||
* | Use a template to read integers with endian awareness | Chris Robinson | 2021-01-06 | 1 | -70/+83 |
| | |||||
* | Return non-const from the resampler function | Chris Robinson | 2021-01-02 | 7 | -51/+40 |
| |