Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clean up includes a bit | Chris Robinson | 2019-07-28 | 8 | -111/+164 |
| | | | | | | | 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. | ||||
* | Remove an unused lambda capture | Chris Robinson | 2019-07-16 | 1 | -1/+1 |
| | |||||
* | vocal morpher implementation (#312) | Lopuska | 2019-07-09 | 2 | -2/+5 |
| | | | | | | * vocal morpher implementation * compile fix for GCC | ||||
* | Update a comment about the speaker distance | Chris Robinson | 2019-07-06 | 1 | -2/+2 |
| | |||||
* | Avoid looking up source IDs multiple times | Chris Robinson | 2019-07-06 | 1 | -28/+61 |
| | |||||
* | Use a span for MixParams | Chris Robinson | 2019-07-04 | 2 | -4/+3 |
| | |||||
* | Use a span for RealMixParams | Chris Robinson | 2019-07-03 | 1 | -2/+1 |
| | |||||
* | Create and use a make_optional method | Chris Robinson | 2019-07-01 | 1 | -1/+1 |
| | |||||
* | Simplify some optional usage | Chris Robinson | 2019-07-01 | 1 | -1/+1 |
| | |||||
* | Use explicit storage types for some enums | Chris Robinson | 2019-06-30 | 2 | -7/+7 |
| | |||||
* | Use optionals where methods may not return a valid value | Chris Robinson | 2019-06-30 | 1 | -29/+16 |
| | |||||
* | 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 | 2 | -2/+2 |
| | |||||
* | 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 |
| | |||||
* | Make the voice count unsigned | Chris Robinson | 2019-06-09 | 1 | -2/+2 |
| | |||||
* | Use a FlexArray for the context's voices | Chris Robinson | 2019-06-09 | 3 | -31/+72 |
| | |||||
* | 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 DEF_ALIGN macro | Chris Robinson | 2019-06-06 | 1 | -4/+4 |
| | |||||
* | Remove the per-voice ChannelsPerOrder field | Chris Robinson | 2019-06-05 | 2 | -2/+1 |
| | |||||
* | Use a span for the effect state's output target | Chris Robinson | 2019-06-05 | 1 | -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 |
| | |||||
* | Properly destroy other objects | Chris Robinson | 2019-06-05 | 6 | -13/+13 |
| | |||||
* | Don't log the function or prefix | Chris Robinson | 2019-06-04 | 2 | -3/+2 |
| | | | | | | 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. | ||||
* | Improve alignment handling for the alignment allocator | Chris Robinson | 2019-06-03 | 1 | -1/+1 |
| | |||||
* | Restructure voice data members | Chris Robinson | 2019-06-03 | 2 | -41/+37 |
| | | | | | 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 | 3 | -18/+17 |
| | |||||
* | Use al::byte for ADPCM decoders | Chris Robinson | 2019-05-24 | 3 | -57/+53 |
| | |||||
* | Move a couple table definitions to where they're used | Chris Robinson | 2019-05-24 | 2 | -89/+3 |
| | |||||
* | Remove an unnecessary struct member | Chris Robinson | 2019-05-24 | 2 | -12/+9 |
| | |||||
* | Use raw bytes for the buffer data | Chris Robinson | 2019-05-24 | 2 | -3/+5 |
| | |||||
* | Use a function to mark a source for updating | Chris Robinson | 2019-05-23 | 1 | -39/+38 |
| | |||||
* | Allow initializing splitter filters with constructors | Chris Robinson | 2019-05-22 | 1 | -2/+1 |
| | |||||
* | Restructure some voice fields | Chris Robinson | 2019-05-17 | 2 | -24/+35 |
| | |||||
* | 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. | ||||
* | Add exception protection to the last of the API functions | Chris Robinson | 2019-04-10 | 2 | -18/+113 |
| | |||||
* | Add exception protection to effect, filter, and buffer functions | Chris Robinson | 2019-04-10 | 3 | -8/+98 |
| | |||||
* | Add exception protection to the listener functions | Chris Robinson | 2019-04-10 | 1 | -8/+25 |
| | |||||
* | Add exception protection to context state functions | Chris Robinson | 2019-04-10 | 1 | -0/+49 |
| |