1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00
2010-01-24 09:19:39 +00:00

10 lines
259 B
Plaintext

(SQRT-ALG
(NAME "sqrt")
(ARGUMENTS ("sound_type" "input"))
(ALWAYS-SCALE input)
(START (MIN input))
(INNER-LOOP "{ sample_type i = input; if (i < 0) i = 0; output = (sample_type) sqrt(i); }")
(TERMINATE (MIN input))
(LOGICAL-STOP (MIN input))
)