Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use a FlexArray for a device's contexts | Chris Robinson | 2019-06-29 | 1 | -10/+2 |
| | |||||
* | Use a span for some post-mixing processing | Chris Robinson | 2019-06-27 | 1 | -16/+13 |
| | |||||
* | Rename HrtfParams to HrtfFilter | Chris Robinson | 2019-06-18 | 1 | -1/+1 |
| | |||||
* | Reorganize how some device fields are set and reset | Chris Robinson | 2019-06-15 | 1 | -22/+7 |
| | |||||
* | Fix BS2B output | Chris Robinson | 2019-06-12 | 1 | -1/+6 |
| | |||||
* | Use a FlexArray for the context's voices | Chris Robinson | 2019-06-09 | 1 | -23/+19 |
| | |||||
* | Simplify DistanceComp somewhat | Chris Robinson | 2019-06-08 | 1 | -10/+10 |
| | |||||
* | Remove the per-voice ChannelsPerOrder field | Chris Robinson | 2019-06-05 | 1 | -13/+0 |
| | |||||
* | Use a span for the effect state's output target | Chris Robinson | 2019-06-05 | 1 | -1/+1 |
| | |||||
* | Make some more channel counts unsigned | Chris Robinson | 2019-06-05 | 1 | -11/+5 |
| | |||||
* | Make RealMixParams channel count unsigned | Chris Robinson | 2019-06-05 | 1 | -14/+11 |
| | |||||
* | Properly destroy other objects | Chris Robinson | 2019-06-05 | 1 | -1/+1 |
| | |||||
* | Avoid a separate struct for the bandsplitter all-pass | Chris Robinson | 2019-06-04 | 1 | -8/+3 |
| | |||||
* | Restructure voice data members | Chris Robinson | 2019-06-03 | 1 | -73/+74 |
| | | | | | This should improve access patters by packing each buffer channel's data together, which is more inline with its use. | ||||
* | Use a span for the voice's buffer references | Chris Robinson | 2019-05-29 | 1 | -19/+13 |
| | |||||
* | Use span<FloatBufferLine> for EffectState::process output | Chris Robinson | 2019-05-29 | 1 | -1/+2 |
| | |||||
* | Pass a span to MixDirectHrtf instead of a pointer+size | Chris Robinson | 2019-05-29 | 1 | -1/+2 |
| | |||||
* | Use FloatBufferLine for the effect process method | Chris Robinson | 2019-05-29 | 1 | -5/+2 |
| | |||||
* | Use FloatBufferLine with the HRTF mixer functions | Chris Robinson | 2019-05-28 | 1 | -3/+2 |
| | |||||
* | Use std::array for most mixing buffer arrays | Chris Robinson | 2019-05-28 | 1 | -27/+31 |
| | |||||
* | Move a couple functions into its related class | Chris Robinson | 2019-05-25 | 1 | -8/+4 |
| | |||||
* | Avoid some uses of RESTRICT | Chris Robinson | 2019-05-25 | 1 | -14/+13 |
| | |||||
* | Avoid unnecessary use of CalcAngleCoeffs | Chris Robinson | 2019-05-20 | 1 | -1/+1 |
| | |||||
* | Make sure the all-pass filter is cleared before use | Chris Robinson | 2019-04-04 | 1 | -3/+7 |
| | |||||
* | Fix MSVC error about parenthesized explicit type conversion | Chris Robinson | 2019-04-03 | 1 | -2/+2 |
| | |||||
* | Avoid directly using CalcAmbiCoeffs | Chris Robinson | 2019-04-02 | 1 | -37/+48 |
| | |||||
* | Change RealMixParams::ChannelName to better reflect its use | Chris Robinson | 2019-04-02 | 1 | -10/+11 |
| | |||||
* | Fix use of reverse_copy | Chris Robinson | 2019-03-31 | 1 | -1/+1 |
| | |||||
* | Use phase correction for the front stablizer | Chris Robinson | 2019-03-31 | 1 | -5/+50 |
| | |||||
* | Remove a couple unused member variables | Chris Robinson | 2019-03-30 | 1 | -1/+0 |
| | |||||
* | Use a temporary buffer for HRTF filter accumulation | Chris Robinson | 2019-03-29 | 1 | -2/+2 |
| | | | | | Similar to the history buffer, to avoid using the state buffer as a ring buffer. | ||||
* | Remove another unnecessary distance check | Chris Robinson | 2019-03-26 | 1 | -12/+9 |
| | |||||
* | Scale floats directly to 32-bit integer values | Chris Robinson | 2019-03-25 | 1 | -5/+5 |
| | | | | | Rather than scaling to a 25-bit integer and shifting for the extra 7 bits. This should improve precision for values closer to 0. | ||||
* | Remove a couple redundant distance checks | Chris Robinson | 2019-03-23 | 1 | -12/+4 |
| | |||||
* | Don't redundantly set the voice's direct output buffer | Chris Robinson | 2019-03-23 | 1 | -4/+0 |
| | |||||
* | Rename and move ALeffectProps | Chris Robinson | 2019-03-22 | 1 | -2/+2 |
| | |||||
* | Use MixParams for the wet buffers | Chris Robinson | 2019-03-22 | 1 | -32/+22 |
| | |||||
* | Always reset all voices on disconnect | Chris Robinson | 2019-03-16 | 1 | -28/+1 |
| | |||||
* | Pass the voice state as a parameter instead of reloading it | Chris Robinson | 2019-03-11 | 1 | -4/+4 |
| | |||||
* | Rename ALvoice fields for consistency | Chris Robinson | 2019-03-10 | 1 | -110/+106 |
| | |||||
* | Don't directly use a buffer for updating source parameters | Chris Robinson | 2019-03-10 | 1 | -25/+13 |
| | |||||
* | Avoid excessive transformations of the source position | Chris Robinson | 2019-03-10 | 1 | -44/+60 |
| | |||||
* | Add a Stopping state for voices | Chris Robinson | 2019-03-09 | 1 | -12/+7 |
| | | | | | | This currently doesn't do much, except have the mixer progress it to Stopped. It's valid to have without a source or buffers, and in the future will allow fading out when a source is paused or stopped. | ||||
* | Clear the voice's buffer when detaching from source | Chris Robinson | 2019-03-09 | 1 | -0/+4 |
| | |||||
* | Convert the device frequency to float just once | Chris Robinson | 2019-02-24 | 1 | -9/+7 |
| | |||||
* | Make sure the voice's direct buffer is always set | Chris Robinson | 2019-02-24 | 1 | -7/+5 |
| | |||||
* | Remove the FOAOut mixing buffer and associated post-processes | Chris Robinson | 2019-02-22 | 1 | -15/+0 |
| | |||||
* | Remove the unused FOAOut EffectTarget | Chris Robinson | 2019-02-22 | 1 | -2/+2 |
| | |||||
* | Mix B-Format sources directly to the dry buffer | Chris Robinson | 2019-02-21 | 1 | -19/+15 |
| | | | | Now the only thing that utilizes FOAOut is reverb output. | ||||
* | Pass the number of input channels to EffectState::process | Chris Robinson | 2019-02-21 | 1 | -1/+1 |
| |