RustAudio / dsp-chain

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

Fix dry/wet summing #139

Closed ahihi closed 8 years ago

ahihi commented 8 years ago

Hello,

The code in Graph::audio_requested_from() that combines dry and wet signals doesn't actually use the dry signal at all, but rather sums two amplitude-scaled copies of the wet signal. This patch corrects the computation.

mitchmindtree commented 8 years ago

Oh geez, good spot! Will merge this and publish the fix now. Thanks a lot!