aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
Commit message (Collapse)AuthorAgeFilesLines
* Move some headers out of the Include subdirectoryChris Robinson2019-07-287-543/+0
|
* Rename alMain.h to alcmain.hChris Robinson2019-07-286-1004/+4
| | | | And move it and alu.h to Alc/.
* Move the ADPCM decoders to alBuffer.cppChris Robinson2019-07-281-13/+0
|
* Remove the UNUSED macroChris Robinson2019-07-281-13/+0
|
* Clean up includes a bitChris Robinson2019-07-282-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)Lopuska2019-07-091-1/+2
| | | | | | * vocal morpher implementation * compile fix for GCC
* Update a comment about the speaker distanceChris Robinson2019-07-061-2/+2
|
* Use a span for MixParamsChris Robinson2019-07-041-3/+2
|
* Use a span for RealMixParamsChris Robinson2019-07-031-2/+1
|
* Use explicit storage types for some enumsChris Robinson2019-06-302-7/+7
|
* Use a FlexArray for a device's contextsChris Robinson2019-06-291-1/+1
|
* Use a bool for the TrapALError flagChris Robinson2019-06-291-1/+1
|
* Rename HrtfParams to HrtfFilterChris Robinson2019-06-181-5/+5
|
* Reorganize how some device fields are set and resetChris Robinson2019-06-151-1/+4
|
* Remove some extern "C" blocksChris Robinson2019-06-101-7/+0
|
* Use a FlexArray for the context's voicesChris Robinson2019-06-092-3/+41
|
* Use a bitfield for the device flagsChris Robinson2019-06-081-15/+18
|
* Fix for GCC 5.4Chris Robinson2019-06-081-3/+3
|
* Simplify DistanceComp somewhatChris Robinson2019-06-081-14/+6
|
* Remove the per-voice ChannelsPerOrder fieldChris Robinson2019-06-052-2/+1
|
* Make some more channel counts unsignedChris Robinson2019-06-051-1/+1
|
* Make RealMixParams channel count unsignedChris Robinson2019-06-051-1/+1
|
* Don't log the function or prefixChris Robinson2019-06-041-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 membersChris Robinson2019-06-031-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 referencesChris Robinson2019-05-291-4/+2
|
* Use span<FloatBufferLine> for MixSamplesChris Robinson2019-05-291-3/+3
|
* Use FloatBufferLine and span<> for MixRowSamplesChris Robinson2019-05-291-2/+2
|
* Pass a span to MixDirectHrtf instead of a pointer+sizeChris Robinson2019-05-291-2/+4
|
* Use FloatBufferLine with the HRTF mixer functionsChris Robinson2019-05-281-6/+6
|
* Use std::array for most mixing buffer arraysChris Robinson2019-05-283-6/+8
|
* Get rid of the COUNTOF macroChris Robinson2019-05-261-6/+0
|
* Use al::byte for ADPCM decodersChris Robinson2019-05-241-3/+3
|
* Move a couple table definitions to where they're usedChris Robinson2019-05-241-10/+0
|
* Remove an unnecessary struct memberChris Robinson2019-05-241-1/+0
|
* Use raw bytes for the buffer dataChris Robinson2019-05-241-1/+2
|
* Restructure some voice fieldsChris Robinson2019-05-171-6/+8
|
* Change the default period size to 20msChris Robinson2019-04-261-4/+4
|
* Specify the buffer size as itself instead of the period countChris Robinson2019-04-261-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 CalcAmbiCoeffsChris Robinson2019-04-021-14/+0
|
* Change RealMixParams::ChannelName to better reflect its useChris Robinson2019-04-021-10/+4
|
* Copy the voice's ambisonic upsampler state when reallocatingChris Robinson2019-04-011-1/+1
|
* Remove a couple unused member variablesChris Robinson2019-03-301-2/+0
|
* Use a temporary buffer for HRTF filter accumulationChris Robinson2019-03-292-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 bufferChris Robinson2019-03-281-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 headerChris Robinson2019-03-261-6/+0
|
* Rename and move ALeffectPropsChris Robinson2019-03-222-112/+5
|
* Use MixParams for the wet buffersChris Robinson2019-03-222-9/+5
|
* Fix a comment typoChris Robinson2019-03-221-1/+1
|
* Pass ALeffectProps directly to the get/setParam* methodsChris Robinson2019-03-221-8/+0
|
* Use the effect state factory to set the default effect propsChris Robinson2019-03-222-84/+6
|