-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When delay is used more than twice in the function, the bytecode will not generate "SHIFTSTATE" correctly #101
Comments
Other examples. fn fbdelay(input,time,fb,mix){
input*mix + (1.0-mix) * delay(40001.0,(input+self*fb),time)
}
fn dsp(){
let l = fbdelay(0.0,40000.0,0.9,0.5)
let r = fbdelay(1.0,10000.0,0.2,0.6)
(l,r)
} Bytecode. Order of negative& positive offsets in "dsp" are weird. And where the number
|
Ah, this 25531 came from the limit of the offset size, which is represented as |
|
minimal example
and bytecode. In "twodelay" , "SHIFTSTATE" should be called but not.
The text was updated successfully, but these errors were encountered: