aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer.c
Commit message (Collapse)AuthorAgeFilesLines
* Use a constant value for the post-position paddingChris Robinson2015-10-151-33/+20
|
* Store the source's previous samples with the voiceChris Robinson2015-10-151-92/+32
| | | | | | This helps avoid different results when looping is toggled within a couple samples of the loop point, or when a processed buffer is removed while the source is only a couple samples into the next buffer.
* Replace the sinc6 resampler with sinc8, and make SSE versionsChris Robinson2015-10-111-13/+23
|
* Move the FIR4 from SSE2 to SSE3Chris Robinson2015-10-111-3/+3
| | | | | SSE3 can avoid the slow _MM_TRANSPOSE_PS4 call thanks to the inclusion of horizontal adds.
* Use doubles to calculate the Lanczos coefficientsChris Robinson2015-10-091-20/+20
|
* Combine two arraysChris Robinson2015-10-011-13/+11
|
* Move the resampler stuff to mixer.c where it's usedChris Robinson2015-10-011-0/+53
|
* Implement a 6-point sinc-lanczos filterChris Robinson2015-09-291-12/+26
|
* Replace the cubic resampler with a 4-point sinc/lanczos filterChris Robinson2015-09-271-10/+19
|
* Don't keep selecting the mixer to useChris Robinson2015-09-271-30/+32
|
* Increase the max pitch to 255Chris Robinson2015-09-261-0/+3
| | | | | | | Note that this is the multiple above the device sample rate, rather than the source property limit. It could theoretically be increased to 511 by testing against UINT_MAX instead of INT_MAX, since the increment and positions are using unsigned integers. I'm just being paranoid about overflows.
* Move HRTF params and state closer togetherChris Robinson2015-02-091-2/+2
|
* Do up to 256 samples at a time with multi-step loopsChris Robinson2014-12-181-2/+2
|
* Inline a couple functionsChris Robinson2014-12-181-2/+2
|
* Offset to the buffer's channel start firstChris Robinson2014-12-181-3/+6
|
* Assert that there's a buffer for mixingChris Robinson2014-12-171-0/+1
| | | | For Clang's static analysis.
* Add SSE2 and SSE4.1 cubic resamplersChris Robinson2014-12-151-0/+8
|
* Use a lookup table to do cubic resamplingChris Robinson2014-12-151-0/+17
|
* Remove IrSize from DirectParamsChris Robinson2014-11-291-1/+4
|
* Partially revert "Use a different method for HRTF mixing"Chris Robinson2014-11-231-2/+23
| | | | | | | | | | | | The sound localization with virtual channel mixing was just too poor, so while it's more costly to do per-source HRTF mixing, it's unavoidable if you want good localization. This is only partially reverted because having the virtual channel is still beneficial, particularly with B-Format rendering and effect mixing which otherwise skip HRTF processing. As before, the number of virtual channels can potentially be customized, specifying more or less channels depending on the system's needs.
* Rename Voice's NumChannels to OutChannelsChris Robinson2014-11-221-1/+1
|
* Store the number of output channels in the voiceChris Robinson2014-11-221-1/+1
|
* Remove an unnecessary union containerChris Robinson2014-11-221-1/+1
|
* Use a different method for HRTF mixingChris Robinson2014-11-221-23/+2
| | | | | | | | | | | | | | | | | | | | | | | This new method mixes sources normally into a 14-channel buffer with the channels placed all around the listener. HRTF is then applied to the channels given their positions and written to a 2-channel buffer, which gets written out to the device. This method has the benefit that HRTF processing becomes more scalable. The costly HRTF filters are applied to the 14-channel buffer after the mix is done, turning it into a post-process with a fixed overhead. Mixing sources is done with normal non-HRTF methods, so increasing the number of playing sources only incurs normal mixing costs. Another benefit is that it improves B-Format playback since the soundfield gets mixed into speakers covering all three dimensions, which then get filtered based on their locations. The main downside to this is that the spatial resolution of the HRTF dataset does not play a big role anymore. However, the hope is that with ambisonics- based panning, the perceptual position of panned sounds will still be good. It is also an option to increase the number of virtual channels for systems that can handle it, or maybe even decrease it for weaker systems.
* Rename speakers to channels, and remove an old incorrect commentChris Robinson2014-11-071-1/+1
|
* Use a separate macro for the max output channel countChris Robinson2014-11-071-1/+1
|
* Use the copy resampler only when there's no sub-sample offsetChris Robinson2014-11-021-7/+6
|
* Add preliminary AL_EXT_BFORMAT supportChris Robinson2014-10-311-0/+17
| | | | | Currently missing the AL_ORIENTATION source property. Gain stepping also does not work.
* Rename activesource to voiceChris Robinson2014-08-211-9/+9
|
* Use a NULL source for inactive activesourcesChris Robinson2014-08-211-2/+1
| | | | Also only access the activesource's source field once per update.
* Update COPYING to the latest ↵François Cami2014-08-181-2/+2
| | | | https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt to fix the FSF' address Fix the FSF' address in the source
* Make the source's buffer queue head and current queue item atomicChris Robinson2014-07-311-13/+14
|
* Load soundfont samples into an ALbufferChris Robinson2014-06-291-15/+15
| | | | | Also remove ALsoundfont's now-unneeded sample storage functions and struct fields.
* Get the mixer and resampler functions when neededChris Robinson2014-06-131-12/+73
|
* Combine the direct and send mixersChris Robinson2014-06-131-5/+5
|
* Combine some dry and wet path typesChris Robinson2014-06-131-1/+1
|
* Move InitiatePositionArrays to mixer_defs.hChris Robinson2014-06-061-0/+3
|
* Avoid a loop when updating the source position variablesChris Robinson2014-06-021-6/+4
|
* Move the active source's offset out of the direct paramsChris Robinson2014-05-241-2/+2
|
* Use the current buffer item for static sources tooChris Robinson2014-05-211-1/+1
|
* Properly process all samples with a bandpass filterChris Robinson2014-05-211-2/+2
|
* Use the correct input for HRTF mixingChris Robinson2014-05-211-1/+1
|
* Update the active source's direct and send properties after each mixChris Robinson2014-05-211-10/+9
|
* Return a sample pointer from resamplersChris Robinson2014-05-191-7/+10
| | | | Both resampling and filtering now avoid copying samples when they no-op.
* Put per-channel filter properties togetherChris Robinson2014-05-191-11/+14
|
* Return a sample pointer from DoFiltersChris Robinson2014-05-191-14/+18
| | | | | This allows us to avoid copying samples when no filtering is needed. Doing the same for resampling would require another temporary buffer in the device.
* Move an HRTF mixer parameter and shorten a couple variable namesChris Robinson2014-05-181-21/+17
|
* Don't pass the SendParams to the wet-path mixerChris Robinson2014-05-181-1/+3
|
* Don't pass the DirectParams to the dry-path mixerChris Robinson2014-05-181-2/+3
|
* Use different parameters for HRTF mixersChris Robinson2014-05-181-3/+12
|