chaosprint / glicol

Graph-oriented live coding language and music/audio DSP library written in Rust
https://glicol.org
MIT License
2.22k stars 74 forks source link

Delay and feedback still have some problems #121

Open chaosprint opened 1 year ago

chaosprint commented 1 year ago

This is not correct:

~main: imp 1.0 >> add ~fb

~fb: ~main >> delayn 4410 >> mul 0.1

o: ~main >> mul 0.5

This is OK:

~main: imp 1.0 >> add ~fb

~fb: ~main >> delayn 4410 >> mul 0.1

o: ~main

Maybe it is caused by channels?