mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
Update Nyquist to v3.09.
This commit is contained in:
@@ -3,8 +3,15 @@
|
||||
(ARGUMENTS ("sound_type" "s1") ("long" "steps"))
|
||||
(INTERNAL-SCALING s1)
|
||||
(START (MIN s1))
|
||||
(STATE ("double" "factor" "s1->scale * steps; scale_factor = (sample_type) (1.0 / steps);"))
|
||||
(INNER-LOOP "register long xx = (long) (s1 * factor); output = (float) xx;")
|
||||
(STATE ("double" "factor" "s1->scale * steps;
|
||||
scale_factor = (sample_type) (1.0 / steps);"))
|
||||
(INNER-LOOP "{
|
||||
\t\tfloat x = s1 * factor;
|
||||
\t\tlong xx;
|
||||
\t\tx = (x > 0.0F ? x + 0.5 : x - 0.5);
|
||||
\t\txx = (long) x;
|
||||
\t\toutput = (float) xx;
|
||||
\t }")
|
||||
(TERMINATE (MIN s1))
|
||||
(CONSTANT "factor")
|
||||
(LOGICAL-STOP (MIN s1))
|
||||
|
||||
Reference in New Issue
Block a user