freeverb 0.2.0

A Rust implementation of the Freeverb algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! A Rust implementation of the Freeverb reverb algorithm.
//!
//! Freeverb was originally written in C++ by "Jezar at Dreampoint", and was released into the public
//! domain in June 2000. It is now widely used in various incarnations in multiple software packages.
//!
//! - The orignal C++ source code can be found [here](https://freeverb3-vst.sourceforge.io).
//! - For an analysis of the algorithm see
//!   [here](https://ccrma.stanford.edu/~jos/pasp/Freeverb.html).

mod all_pass;
mod comb;
mod delay_line;
mod float;
mod freeverb;
mod tuning;

pub use self::{float::Float, freeverb::Freeverb};