rawdio 0.14.0

An Audio Engine, inspired by the Web Audio API
Documentation
mod adsr;
mod biquad;
mod compressor;
mod convolution;
mod envelope;
mod gain;
mod mixer;
mod oscillator;
mod pan;
mod recorder;
mod sampler;
mod utility;
mod waveshaper;

pub use adsr::Adsr;
pub use biquad::Biquad;
pub use biquad::BiquadFilterType;
pub use compressor::Compressor;
pub use convolution::Convolution;
pub use envelope::Envelope;
pub use gain::Gain;
pub use mixer::Mixer;
pub use oscillator::Oscillator;
pub use pan::Pan;
pub use recorder::Recorder;
pub use sampler::Sampler;
pub use waveshaper::Waveshaper;

use crossbeam::channel as Channel;