aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/flanger.c
Commit message (Collapse)AuthorAgeFilesLines
* Combine the chorus and flanger processing functionsChris Robinson2018-01-091-420/+0
| | | | | | | Given that they're nearly identical, it should be relatively simple to use the same effect state to process either of them, similar to the reverbs. The big differences seem to be the delay range (much shorter with flanger) and the defaults.
* Ensure the chorus delay and depth leave enough padding for resamplingChris Robinson2018-01-071-7/+13
| | | | Also use cubic resampling for the modulated tap. Applies to flanger too.
* Don't offset the chorus/flanger delay and LFOChris Robinson2017-12-241-18/+11
| | | | | The delay being added to the scaled LFO will ensure a proper positive result regardless.
* Fix the lfo_offset for a 0-rate flangerChris Robinson2017-12-191-1/+1
|
* Update the chorus and flanger state struct less oftenChris Robinson2017-12-191-4/+4
|
* Fade gains in the chorus and flanger outputChris Robinson2017-12-191-8/+10
|
* Use a single delay line for chorus feedback on a fixed tapChris Robinson2017-12-181-46/+59
| | | | | | The outputs themselves use a variale-delay tap, but using a separate fixed- delay tap on the feedback helps improve the perceived "wobble" with sustained notes. This also applies to the flanger effect.
* Apply chorus and flanger feedback on the tapped re-feedChris Robinson2017-12-171-3/+3
|
* Use the selected mixer for chorus and flanger outputChris Robinson2017-12-171-25/+11
|
* Update flanger with the same changes as chorusChris Robinson2017-12-151-44/+55
|
* Pass the context to the auxiliary effect update methodChris Robinson2017-09-211-5/+6
|
* Calculate chorus and flanger mod delays separately from feedbackChris Robinson2017-06-071-68/+59
|
* Fix handling chorus and flanger LFO displacement offsetChris Robinson2017-05-261-1/+4
| | | | | The phase offset is modulo-wrapped rather than masked, so it's best to avoid negative offsets.
* Properly handle the chorus and flanger LFOsChris Robinson2017-05-261-12/+15
| | | | | The effects' specified delay is the average delay time, meaning the delay offset should move between -n and +n relative to the delay, where n <= delay.
* Change some ALuint parameters to ALsizeiChris Robinson2017-05-021-16/+16
|
* Remove CalcXYZCoeffs and inline CalcAngleCoeffsChris Robinson2017-02-231-2/+2
|
* Add a ref count to ALeffectStateChris Robinson2016-08-251-13/+24
| | | | | This is mostly just reorganizing the effects to call the Construct method which initializes the ref count.
* Avoid using realloc in a number of placesChris Robinson2016-05-211-4/+4
|
* Get rid of an unnecessary copy of ALeffectPropsChris Robinson2016-05-131-7/+7
|
* Provide (mostly) lockless updates for effect slotsChris Robinson2016-05-121-8/+9
| | | | | | | | | | | | | | | | | Similar to the listener, separate containers are provided atomically for the mixer thread to apply updates without needing to block, and a free-list is used to reuse container objects. A couple things to note. First, the lock is still used when the effect state's deviceUpdate method is called to prevent asynchronous calls to reset the device from interfering. This can be fixed by using the list lock in ALc.c instead. Secondly, old effect states aren't immediately deleted when the effect type changes (the actual type, not just its properties). This is because the mixer thread is intended to be real-time safe, and so can't be freeing anything. They are cleared away when updates reuse the container they were kept in, and they don't incur any extra processing cost, but there may be cases where the memory is kept around until the effect slot is deleted.
* Improve radius behavior with scaling of ambisonic coefficientsChris Robinson2016-04-241-2/+2
|
* More directly map coefficients for ambisonic mixing buffersChris Robinson2016-04-151-6/+2
| | | | | | Instead of looping over all the coefficients for each channel with multiplies, when we know only one will have a non-0 factor for ambisonic mixing buffers, just index the one with a non-0 factor.
* Avoid mixing all coefficients together when only some are usedChris Robinson2016-04-151-4/+6
|
* Organize the dry buffer properties into a structChris Robinson2016-03-091-2/+4
|
* Pass a pointer to the input samples array for effect processingChris Robinson2016-01-271-3/+3
|
* Separate calculating ambisonic coefficients from the panning gainsChris Robinson2016-01-251-5/+6
|
* Rename F_2PI to F_TAUChris Robinson2015-09-131-1/+1
|
* Do up to 256 samples at a time with multi-step loopsChris Robinson2014-12-181-2/+2
|
* Pas the output device channel count to ALeffectState::processChris Robinson2014-11-071-4/+4
|
* Use a separate macro for the max output channel countChris Robinson2014-11-071-2/+2
|
* Make ComputeAngleGains use ComputeDirectionalGainsChris Robinson2014-10-021-2/+4
|
* Update COPYING to the latest ↵François Cami2014-08-181-2/+2
| | | | https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt to fix the FSF' address Fix the FSF' address in the source
* Use an enum for the chorus and flanger waveformsChris Robinson2014-05-141-8/+27
|
* Use a void* for the effect state Delete method paramChris Robinson2014-03-211-5/+2
|
* Use one long buffer for the chorus and flanger delay linesChris Robinson2013-11-101-19/+13
|
* Rename lfo_coeff to lfo_scaleChris Robinson2013-11-081-8/+8
|
* Use integer modulo for chorus and flangerChris Robinson2013-11-081-29/+31
| | | | Also simplify LFO coefficient calculations.
* Only use the inner loop for the chorus/flanger template methodChris Robinson2013-11-081-56/+57
|
* Use a helper macro for pi*2Chris Robinson2013-10-081-4/+3
|
* Use inline initialization for effect state factory vtablesChris Robinson2013-10-071-15/+6
|
* Constify the effect parameter of effect gettersChris Robinson2013-10-071-4/+4
|
* Use the UNUSED macro in the effectsChris Robinson2013-10-071-2/+1
|
* Use a macro for the silence thresholdChris Robinson2013-10-061-2/+2
|
* Use helpers to set channel gain arraysChris Robinson2013-10-031-7/+0
| | | | Also avoid unnecessary clearing.
* Fix up the naming convention of effect methodsChris Robinson2013-05-291-15/+15
|
* Use C99's inline instead of __inlineChris Robinson2013-05-281-2/+2
|
* Cleanup the ALeffectStateFactory_create methodsChris Robinson2013-05-271-1/+2
| | | | | Get rid of the ALeffectStateFactory_create macro, and use the VCALL_NOARGS helper (requires adding the 'this' factory parameter).
* Use the helper macros in more placesChris Robinson2013-05-261-32/+22
|
* Use an ALeffectProps union to store the effect propertiesChris Robinson2013-05-251-18/+22
|
* Use a Delete method for deletable objectsChris Robinson2013-05-251-9/+2
|