RustAudio / dsp-chain

A library for chaining together multiple audio dsp processors/generators, written in Rust!
MIT License
297 stars 20 forks source link

Vastly simplify the graph module by using petgraph's Dfs and moving buffers from nodes to edges. #113

Closed mitchmindtree closed 9 years ago

mitchmindtree commented 9 years ago

A call to our Graph's audio_requested method should now involve no allocations whatsoever (unless for some strange reason buffer sizes don't match the output, which shouldn't happen).