Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make a function static | Chris Robinson | 2016-06-01 | 2 | -7/+7 |
| | |||||
* | Use a macro to specify the ambisonic periphonic channel mask | Chris Robinson | 2016-06-01 | 1 | -1/+10 |
| | |||||
* | Use SSE for applying the HQ B-Format decoder matrices | Chris Robinson | 2016-05-31 | 1 | -0/+3 |
| | |||||
* | Hold the effectslot map lock while handling it | Chris Robinson | 2016-05-29 | 3 | -2/+38 |
| | |||||
* | Use a linked list for active effect slots | Chris Robinson | 2016-05-29 | 3 | -37/+34 |
| | |||||
* | Avoid the mixer lock when getting the plain source offset | Chris Robinson | 2016-05-28 | 1 | -11/+15 |
| | | | | i.e. without the latency | ||||
* | Avoid an explicit mixer lock for getting the source offset and latency | Chris Robinson | 2016-05-28 | 1 | -27/+72 |
| | | | | | The only mixer locking involved is with the backend, as determined by it's ability to get the device clock and latency atomically. | ||||
* | Change the backend getLatency method to return the clock time too | Chris Robinson | 2016-05-28 | 1 | -3/+8 |
| | | | | | | This will also allow backends to better synchronize the tracked clock time with the device output latency, without necessarily needing to lock if the backend API can allow for it. | ||||
* | Use the backend lock for the effectstate's deviceUpdate call | Chris Robinson | 2016-05-27 | 1 | -8/+4 |
| | |||||
* | Use a specific lock for the backend's stop/reset/play calls | Chris Robinson | 2016-05-27 | 1 | -0/+2 |
| | | | | | This helps protect against the device changing unexpectedly from multiple threads, instead of using the global list/library lock. | ||||
* | Remove a couple unneeded functions | Chris Robinson | 2016-05-25 | 1 | -4/+7 |
| | |||||
* | Avoid using realloc in a number of places | Chris Robinson | 2016-05-21 | 3 | -13/+27 |
| | |||||
* | Make the source position calues atomic | Chris Robinson | 2016-05-19 | 2 | -21/+22 |
| | |||||
* | Avoid redundantly storing distance model settings | Chris Robinson | 2016-05-17 | 5 | -26/+10 |
| | |||||
* | Use floats for the listener transforms | Chris Robinson | 2016-05-16 | 2 | -26/+1 |
| | |||||
* | Don't store the source's update method with the voice | Chris Robinson | 2016-05-16 | 3 | -10/+0 |
| | |||||
* | Avoid separate updates to sources that should apply together | Chris Robinson | 2016-05-15 | 3 | -3/+18 |
| | |||||
* | Avoid duplicate effect state objects in the freelist | Chris Robinson | 2016-05-15 | 1 | -12/+25 |
| | | | | | | | If an unapplied update was superceded, it would be placed in the freelist with its effect state object intact. This would cause another update with the same effect state object to be placed into the freelist as well, or worse, cause it to get deleted while in use when the container had its effect state cleared. | ||||
* | Avoid using a flag to specify if the effect state needs to be updated | Chris Robinson | 2016-05-15 | 2 | -13/+10 |
| | | | | | This fixes a potential missed state change if an update with a new state got replaced with one that doesn't. | ||||
* | Provide asynchronous property updates for sources | Chris Robinson | 2016-05-14 | 7 | -175/+474 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This necessitates a change in how source updates are handled. Rather than just being able to update sources when a dependent object state is changed (e.g. a listener gain change), now all source updates must be proactively provided. Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be filling out more update containers for the mixer thread to use. The upside is that there's less blocking between the app's calling thread and the mixer thread, particularly for vectors and other multi-value properties (filters and sends). Deferring behavior when used is also improved, since updates that shouldn't be applied yet are simply not provided. And when they are provided, the mixer doesn't have to ignore them, meaning the actual deferring of a context doesn't have to synchrnously force an update -- the process call will send any pending updates, which the mixer will apply even if another deferral occurs before the mixer runs, because it'll still be there waiting on the next mixer invocation. There is one slight bug introduced by this commit. When a listener change is made, or changes to multiple sources while updates are being deferred, it is possible for the mixer to run while the sources are prepping their updates, causing some of the source updates to be seen before the other. This will be fixed in short order. | ||||
* | Store the remaining context properties with the listener properties | Chris Robinson | 2016-05-13 | 3 | -6/+14 |
| | |||||
* | Get rid of an unnecessary copy of ALeffectProps | Chris Robinson | 2016-05-13 | 1 | -3/+2 |
| | |||||
* | Properly load the effect state pointer from the property container | Chris Robinson | 2016-05-13 | 1 | -2/+6 |
| | |||||
* | Hold the effect and filter maps while handling effects and filters | Chris Robinson | 2016-05-12 | 6 | -10/+89 |
| | |||||
* | Avoid updating the effect state object if it's not changed | Chris Robinson | 2016-05-12 | 2 | -14/+24 |
| | |||||
* | Provide (mostly) lockless updates for effect slots | Chris Robinson | 2016-05-12 | 2 | -55/+155 |
| | | | | | | | | | | | | | | | | | Similar to the listener, separate containers are provided atomically for the mixer thread to apply updates without needing to block, and a free-list is used to reuse container objects. A couple things to note. First, the lock is still used when the effect state's deviceUpdate method is called to prevent asynchronous calls to reset the device from interfering. This can be fixed by using the list lock in ALc.c instead. Secondly, old effect states aren't immediately deleted when the effect type changes (the actual type, not just its properties). This is because the mixer thread is intended to be real-time safe, and so can't be freeing anything. They are cleared away when updates reuse the container they were kept in, and they don't incur any extra processing cost, but there may be cases where the memory is kept around until the effect slot is deleted. | ||||
* | Use a lockless method for updating listener and context properties | Chris Robinson | 2016-05-11 | 5 | -56/+163 |
| | | | | | | | | | | | This uses a separate container to provide the relevant properties to the internal update method, using atomic pointer swaps. A free-list is used to avoid having too many individual containers. This allows the mixer to update the internal listener properties without requiring the lock to protect against async updates. It also allows concurrent read access to the user-facing property values, even the multi-value ones (e.g. the vectors). | ||||
* | Hold the buffer map lock while handling the buffer | Chris Robinson | 2016-05-10 | 3 | -4/+64 |
| | |||||
* | Hold the source map lock while handling it | Chris Robinson | 2016-05-10 | 2 | -2/+79 |
| | |||||
* | Add a comment about CoeffCount being 0 | Chris Robinson | 2016-05-10 | 1 | -1/+3 |
| | |||||
* | Use the source's offset type to determine if there's an offset | Chris Robinson | 2016-05-09 | 1 | -6/+11 |
| | |||||
* | Find a valid source buffer before updating the voice | Chris Robinson | 2016-05-09 | 2 | -3/+4 |
| | |||||
* | Store more "active" listener and context properties separately | Chris Robinson | 2016-05-09 | 1 | -0/+6 |
| | | | | | This helps ensure async listener/context property changes affect all playing sources at the same time. | ||||
* | Start AL_SOFT_buffer_samples2 as a replacement for AL_SOFT_buffer_samples | Chris Robinson | 2016-04-25 | 3 | -17/+93 |
| | |||||
* | Remove unnecessary code for the now-unused write offset | Chris Robinson | 2016-04-25 | 1 | -53/+17 |
| | |||||
* | Add support for AL_EXT_SOURCE_RADIUS | Chris Robinson | 2016-04-25 | 1 | -6/+27 |
| | |||||
* | Drop support for AL_SOFT_buffer_samples and AL_SOFT_buffer_sub_data | Chris Robinson | 2016-04-24 | 1 | -49/+0 |
| | | | | | | Unfortunately they conflict with AL_EXT_SOURCE_RADIUS, as AL_SOURCE_RADIUS and AL_BYTE_RW_OFFSETS_SOFT share the same source property value. A replacement for AL_SOFT_buffer_samples will eventually be made. | ||||
* | Improve radius behavior with scaling of ambisonic coefficients | Chris Robinson | 2016-04-24 | 1 | -5/+6 |
| | |||||
* | Increase max output channels to 16 | Chris Robinson | 2016-04-19 | 1 | -1/+8 |
| | | | | This also enables fully periphonic 3rd order HQ decoding. | ||||
* | Avoid storing channel names for the dry buffer | Chris Robinson | 2016-04-16 | 1 | -2/+0 |
| | |||||
* | More directly map coefficients for ambisonic mixing buffers | Chris Robinson | 2016-04-15 | 2 | -7/+34 |
| | | | | | | Instead of looping over all the coefficients for each channel with multiplies, when we know only one will have a non-0 factor for ambisonic mixing buffers, just index the one with a non-0 factor. | ||||
* | Update some comments | Chris Robinson | 2016-04-15 | 1 | -4/+5 |
| | |||||
* | Avoid mixing all coefficients together when only some are used | Chris Robinson | 2016-04-15 | 2 | -1/+5 |
| | |||||
* | Shorten VECTOR_ITER_ macros to VECTOR_ | Chris Robinson | 2016-04-15 | 1 | -3/+3 |
| | |||||
* | Update a comment | Chris Robinson | 2016-04-15 | 1 | -2/+2 |
| | |||||
* | Avoid unnecessary loops for setting up effect slot b-format buffer mixing | Chris Robinson | 2016-04-14 | 3 | -1/+7 |
| | |||||
* | Move the InitRenderer method to panning.c | Chris Robinson | 2016-04-14 | 1 | -3/+13 |
| | |||||
* | Split aluInitPanning into separate functions for HRTF or UHJ | Chris Robinson | 2016-04-14 | 2 | -3/+7 |
| | |||||
* | Remove the old ringbuffer implementation | Chris Robinson | 2016-03-30 | 1 | -7/+0 |
| | |||||
* | Move the aligned malloc functions to the common lib | Chris Robinson | 2016-03-29 | 4 | -5/+6 |
| |