rill-lang 0.6.0-M2

rill-lang — a Faust-style functional streaming DSL compiled to rill Algorithm<T>
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Built-in signal processing algorithms for the rill-lang DSL.
//!
//! These are standalone RT-safe structs that implement multi-channel
//! signal processing — mixer, EQ, and dry/wet blend.

/// Dry/wet signal blend (crossfade between two signals).
pub mod dry_wet;
/// Biquad filter cascade (parametric EQ) with RBJ cookbook coefficients.
pub mod eq;
/// Multi-channel mixer with per-channel pan, volume, muting, and aux sends.
pub mod mixer;