Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move some headers out of the Include subdirectory | Chris Robinson | 2019-07-28 | 7 | -543/+0 |
| | |||||
* | Rename alMain.h to alcmain.h | Chris Robinson | 2019-07-28 | 6 | -1004/+4 |
| | | | | And move it and alu.h to Alc/. | ||||
* | Move the ADPCM decoders to alBuffer.cpp | Chris Robinson | 2019-07-28 | 1 | -13/+0 |
| | |||||
* | Remove the UNUSED macro | Chris Robinson | 2019-07-28 | 1 | -13/+0 |
| | |||||
* | Clean up includes a bit | Chris Robinson | 2019-07-28 | 2 | -62/+39 |
| | | | | | | | Trying out the IWYU tool to only include what's necessary in a given file. Seems to work decently (it'll miss some headers, suggest unnecessary ones, and make nonsense suggestions for some things, but overall gives a good starting point), and helps clean out some headers. | ||||
* | vocal morpher implementation (#312) | Lopuska | 2019-07-09 | 1 | -1/+2 |
| | | | | | | * vocal morpher implementation * compile fix for GCC | ||||
* | Update a comment about the speaker distance | Chris Robinson | 2019-07-06 | 1 | -2/+2 |
| | |||||
* | Use a span for MixParams | Chris Robinson | 2019-07-04 | 1 | -3/+2 |
| | |||||
* | Use a span for RealMixParams | Chris Robinson | 2019-07-03 | 1 | -2/+1 |
| | |||||
* | Use explicit storage types for some enums | Chris Robinson | 2019-06-30 | 2 | -7/+7 |
| | |||||
* | Use a FlexArray for a device's contexts | Chris Robinson | 2019-06-29 | 1 | -1/+1 |
| | |||||
* | Use a bool for the TrapALError flag | Chris Robinson | 2019-06-29 | 1 | -1/+1 |
| | |||||
* | Rename HrtfParams to HrtfFilter | Chris Robinson | 2019-06-18 | 1 | -5/+5 |
| | |||||
* | Reorganize how some device fields are set and reset | Chris Robinson | 2019-06-15 | 1 | -1/+4 |
| | |||||
* | Remove some extern "C" blocks | Chris Robinson | 2019-06-10 | 1 | -7/+0 |
| | |||||
* | Use a FlexArray for the context's voices | Chris Robinson | 2019-06-09 | 2 | -3/+41 |
| | |||||
* | Use a bitfield for the device flags | Chris Robinson | 2019-06-08 | 1 | -15/+18 |
| | |||||
* | Fix for GCC 5.4 | Chris Robinson | 2019-06-08 | 1 | -3/+3 |
| | |||||
* | Simplify DistanceComp somewhat | Chris Robinson | 2019-06-08 | 1 | -14/+6 |
| | |||||
* | Remove the per-voice ChannelsPerOrder field | Chris Robinson | 2019-06-05 | 2 | -2/+1 |
| | |||||
* | Make some more channel counts unsigned | Chris Robinson | 2019-06-05 | 1 | -1/+1 |
| | |||||
* | Make RealMixParams channel count unsigned | Chris Robinson | 2019-06-05 | 1 | -1/+1 |
| | |||||
* | Don't log the function or prefix | Chris Robinson | 2019-06-04 | 1 | -1/+0 |
| | | | | | | It's ultimately unnecessary since the message is an indicator about where it was logged from. The message itself is generally more important than where it was from, too. | ||||
* | Restructure voice data members | Chris Robinson | 2019-06-03 | 1 | -22/+16 |
| | | | | | 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 | -4/+2 |
| | |||||
* | Use span<FloatBufferLine> for MixSamples | Chris Robinson | 2019-05-29 | 1 | -3/+3 |
| | |||||
* | Use FloatBufferLine and span<> for MixRowSamples | Chris Robinson | 2019-05-29 | 1 | -2/+2 |
| | |||||
* | Pass a span to MixDirectHrtf instead of a pointer+size | Chris Robinson | 2019-05-29 | 1 | -2/+4 |
| | |||||
* | Use FloatBufferLine with the HRTF mixer functions | Chris Robinson | 2019-05-28 | 1 | -6/+6 |
| | |||||
* | Use std::array for most mixing buffer arrays | Chris Robinson | 2019-05-28 | 3 | -6/+8 |
| | |||||
* | Get rid of the COUNTOF macro | Chris Robinson | 2019-05-26 | 1 | -6/+0 |
| | |||||
* | Use al::byte for ADPCM decoders | Chris Robinson | 2019-05-24 | 1 | -3/+3 |
| | |||||
* | Move a couple table definitions to where they're used | Chris Robinson | 2019-05-24 | 1 | -10/+0 |
| | |||||
* | Remove an unnecessary struct member | Chris Robinson | 2019-05-24 | 1 | -1/+0 |
| | |||||
* | Use raw bytes for the buffer data | Chris Robinson | 2019-05-24 | 1 | -1/+2 |
| | |||||
* | Restructure some voice fields | Chris Robinson | 2019-05-17 | 1 | -6/+8 |
| | |||||
* | Change the default period size to 20ms | Chris Robinson | 2019-04-26 | 1 | -4/+4 |
| | |||||
* | Specify the buffer size as itself instead of the period count | Chris Robinson | 2019-04-26 | 1 | -1/+2 |
| | | | | | | | Certain backends don't need a buffer size to be a strict multiple of the period count, which allows a little more flexibility. The period/update size simply acts as the minimum request, which helps control CPU load by determining how often parameter and other pre-mixing updates are processed. | ||||
* | Avoid directly using CalcAmbiCoeffs | Chris Robinson | 2019-04-02 | 1 | -14/+0 |
| | |||||
* | Change RealMixParams::ChannelName to better reflect its use | Chris Robinson | 2019-04-02 | 1 | -10/+4 |
| | |||||
* | Copy the voice's ambisonic upsampler state when reallocating | Chris Robinson | 2019-04-01 | 1 | -1/+1 |
| | |||||
* | Remove a couple unused member variables | Chris Robinson | 2019-03-30 | 1 | -2/+0 |
| | |||||
* | Use a temporary buffer for HRTF filter accumulation | Chris Robinson | 2019-03-29 | 2 | -7/+7 |
| | | | | | Similar to the history buffer, to avoid using the state buffer as a ring buffer. | ||||
* | Avoid using the HRTF history buffer as a ring buffer | Chris Robinson | 2019-03-28 | 1 | -1/+5 |
| | | | | | | The HRTF mixers now get a full input buffer with the history prepended, so the delay offsets just need to account for the start point and read forward for each sample. | ||||
* | Move an enum to a more appropriate header | Chris Robinson | 2019-03-26 | 1 | -6/+0 |
| | |||||
* | Rename and move ALeffectProps | Chris Robinson | 2019-03-22 | 2 | -112/+5 |
| | |||||
* | Use MixParams for the wet buffers | Chris Robinson | 2019-03-22 | 2 | -9/+5 |
| | |||||
* | Fix a comment typo | Chris Robinson | 2019-03-22 | 1 | -1/+1 |
| | |||||
* | Pass ALeffectProps directly to the get/setParam* methods | Chris Robinson | 2019-03-22 | 1 | -8/+0 |
| | |||||
* | Use the effect state factory to set the default effect props | Chris Robinson | 2019-03-22 | 2 | -84/+6 |
| |