aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/pshifter.c
Commit message (Expand)AuthorAgeFilesLines
* Remove another duplicate functionChris Robinson2018-09-191-1/+1
* Move the ALcomplex and FFT functions to a separate fileChris Robinson2018-05-151-99/+8
* Avoid using unsigned values for signedChris Robinson2018-05-151-1/+1
* Add a faster double-to-int converter for x87 buildsChris Robinson2018-05-141-1/+25
* Don't assume the FPU is round-to-zero in the pitch shifterChris Robinson2018-05-041-21/+3
* Use a fixed-point scale for the pitch shifter frequency indexChris Robinson2018-05-031-5/+10
* Use doubles for the pitch shifter's FFTs and processingChris Robinson2018-04-241-43/+68
* Fix Hanning -> Hann window nameChris Robinson2018-03-241-11/+11
* Some formatting cleanupChris Robinson2018-03-221-67/+68
* Don't use an ALsizei for a potentially negative valueChris Robinson2018-03-221-2/+3
* Define the Hanning window globally once for the pitch shifterChris Robinson2018-03-221-11/+20
* Fix a delta phase offset calculation in the pitch shifterChris Robinson2018-03-221-1/+1
* Hold some immediate values on the stackChris Robinson2018-03-221-11/+13
* Avoid some memset calls in the pitch shifter process loopChris Robinson2018-03-221-4/+11
* Use appropriately-sized buffers for the pitch shifterChris Robinson2018-03-221-24/+25
* Move the filter implementation to a separate directoryChris Robinson2018-03-221-1/+1
* Use the global MixSamples for the pitch shifter outputChris Robinson2018-03-221-14/+10
* Change a parameter type to float since that's what it's used asChris Robinson2018-03-221-3/+3
* Slightly restructure the pitch-shifter process loopChris Robinson2018-03-221-115/+110
* Fix typo (Substraction -> Subtraction) and rename related functionChris Robinson2018-03-211-3/+3
* Don't auto-attenuate the pitch shifter outputChris Robinson2018-03-211-3/+4
* Don't use mutable fields for constant valuesChris Robinson2018-03-211-39/+42
* Avoid placing a 2K sample buffer on the stackChris Robinson2018-03-211-4/+6
* Clean up some code formatting in the pitch shifter sourceChris Robinson2018-03-211-494/+478
* EFX:Own size for pitch shifter buffersRaulshc2018-03-191-17/+18
* EFX:Pitch Shifter implementationRaulshc2018-03-181-0/+493