mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-11 07:06:33 +01:00
Update Nyquist to v3.09.
This commit is contained in:
@@ -12,11 +12,11 @@
|
||||
(NOT-REGISTER delaybuf)
|
||||
(LINEAR input)
|
||||
(TERMINATE (MIN input))
|
||||
(INNER-LOOP-LOCALS "register sample_type y, z;\n")
|
||||
(INNER-LOOP " y = *delayptr;
|
||||
*delayptr++ = z = (sample_type) (feedback * y + input);
|
||||
output = (sample_type) (y - feedback * z);
|
||||
if (delayptr >= endptr) delayptr = susp->delaybuf;")
|
||||
(INNER-LOOP-LOCALS " register sample_type y, z;\n")
|
||||
(INNER-LOOP "y = *delayptr;
|
||||
*delayptr++ = z = (sample_type) (feedback * y + input);
|
||||
output = (sample_type) (y - feedback * z);
|
||||
if (delayptr >= endptr) delayptr = susp->delaybuf")
|
||||
(FINALIZATION "free(susp->delaybuf);")
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user