1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-28 16:20:12 +01:00

Update Nyquist to v3.09.

This commit is contained in:
Leland Lucius
2015-04-07 22:10:17 -05:00
parent f88b27e6d8
commit 9fb0ce5b82
358 changed files with 26327 additions and 7043 deletions

View File

@@ -3,7 +3,10 @@
(ARGUMENTS ("sound_type" "s") ("double" "level"))
(STATE ("sample_type" "level" "(sample_type) level"))
(START (MIN s))
(INNER-LOOP "double x = s; output = (sample_type) (x > level ? level : (x < -level ? -level : x))")
(INNER-LOOP "double x = s;
output = (sample_type)
(x > level ?
level : (x < -level ? -level : x))")
(TERMINATE (MIN s))
(LOGICAL-STOP (MIN s))
)