aboutsummaryrefslogtreecommitdiffstats
path: root/alc
Commit message (Collapse)AuthorAgeFilesLines
* Fix a few more GCC warningsChris Robinson2019-09-144-5/+8
|
* Fix a copy-paste errorChris Robinson2019-09-141-1/+1
|
* Enable and fix more warningsChris Robinson2019-09-1411-88/+89
|
* Avoid recalculations in the formant filter processChris Robinson2019-09-141-15/+22
|
* Don't hold the pulse lock while not necessaryChris Robinson2019-09-141-1/+2
|
* Fix some more implicit conversions noted by GCCChris Robinson2019-09-1424-124/+144
|
* Clean up (most) implicit conversions in the backendsChris Robinson2019-09-146-86/+98
|
* Fix implicit conversions in the effectsChris Robinson2019-09-148-116/+107
|
* Use an unsigned index valueChris Robinson2019-09-142-5/+2
|
* Fix more implicit conversionsChris Robinson2019-09-143-21/+23
|
* Store the ambisonic order as unsignedChris Robinson2019-09-137-22/+21
|
* Return unsigned values from the FromDevFmt functionsChris Robinson2019-09-1313-81/+67
|
* Clean up more implicit conversionsChris Robinson2019-09-134-26/+29
|
* Pass IrSize to the HRTF mixers as unsignedChris Robinson2019-09-137-25/+25
|
* Make IrSize unsignedChris Robinson2019-09-136-109/+105
|
* Make NumAuxSends unsignedChris Robinson2019-09-134-24/+26
|
* Clean up implicit conversions in alu.cppChris Robinson2019-09-131-44/+36
|
* Make the resampler increment unsignedChris Robinson2019-09-139-82/+77
|
* Clean up sample converter implicit conversionsChris Robinson2019-09-125-36/+38
|
* Clean up implicit conversions in source.cppChris Robinson2019-09-122-4/+4
|
* Use unsigned channel indicesChris Robinson2019-09-129-59/+61
|
* Clean up some more implicit conversionsChris Robinson2019-09-111-14/+14
|
* Fix a few more C-style castsChris Robinson2019-09-113-6/+7
|
* Fix function declarationChris Robinson2019-09-113-5/+6
|
* Avoid C-style casts in C++Chris Robinson2019-09-116-19/+22
|
* Fix some more implicit castsChris Robinson2019-09-112-368/+363
|
* Simplify flexible array member usageChris Robinson2019-09-116-35/+13
|
* Avoid dynamically allocating ChannelConverterChris Robinson2019-09-103-33/+7
|
* Make hq-mode the default and update ambisonics.txtChris Robinson2019-09-081-4/+3
|
* Remove unneeded TRACEREF loggingChris Robinson2019-09-082-7/+2
|
* Use a normal vector for the voices arrayChris Robinson2019-09-044-54/+9
|
* Increment the mix count during disconnectChris Robinson2019-09-041-1/+3
| | | | | So attempts to get the current playback offset behave correctly while disconnecting.
* Only ASSUME values where a variable is usedChris Robinson2019-09-044-6/+3
|
* Only use one accumulation buffer for B-Format HRTF mixingChris Robinson2019-09-033-25/+16
| | | | | It's all getting added together anyway and all channels are continuous inputs, so this is fewer passes over various buffers.
* Clean up some formattingChris Robinson2019-09-031-6/+6
|
* Avoid unnecessary placement new definitionsChris Robinson2019-09-011-2/+1
|
* Avoid accumulating a temporaryChris Robinson2019-09-011-2/+2
|
* Hold the source lock in UpdateAllSourcePropsChris Robinson2019-09-011-21/+20
|
* Store the voice fraction offset as unsignedChris Robinson2019-08-318-53/+46
|
* Make MixVoice a member functionChris Robinson2019-08-313-58/+55
|
* Remove a couple unnecessary variablesChris Robinson2019-08-271-7/+5
|
* Remove some unnecessary local spansChris Robinson2019-08-261-23/+18
|
* Use a span for effect state inputChris Robinson2019-08-2615-69/+73
|
* Fix a function's sample count typeChris Robinson2019-08-251-3/+4
|
* Use al::byte for a couple more buffersChris Robinson2019-08-252-11/+11
|
* Pass unsigned sample count to aluMixDataChris Robinson2019-08-255-16/+16
|
* Use unsigned sample counts for the compressor/limiterChris Robinson2019-08-252-56/+37
|
* Use size_t for the post-process sample lengthChris Robinson2019-08-258-32/+32
|
* Fade reverb over the whole updateChris Robinson2019-08-241-106/+104
| | | | | | | Since the early and late panning gains fade over the course of the update, it should match the fading done by the feedback loops to avoid percussive "blasts" when transitioning to a long-decay low-gain environment from a short-decay high-gain environment.
* Make a couple functions into member functionsChris Robinson2019-08-231-72/+72
|