Annotate controls.mjs

This commit is contained in:
Václav Volhejn 2025-10-02 21:59:45 +02:00
parent 4a395f372d
commit a4d7803d43
2 changed files with 165 additions and 1 deletions

File diff suppressed because it is too large Load diff

View file

@ -79,7 +79,9 @@ reverbGen.generateGraph = function (data, width, height, min, max) {
@param {number} lpFreqEnd
@param {number} lpFreqEndAt
@param {!function(!AudioBuffer)} callback May be called
immediately within the current execution context, or later.*/
immediately within the current execution context, or later.
@group effects
*/
var applyGradualLowpass = function (input, lpFreqStart, lpFreqEnd, lpFreqEndAt, callback) {
if (lpFreqStart == 0) {
callback(input);