bbx_dsp 0.4.3

Block-based audio DSP graph system with oscillators, effects, modulators, and realtime-safe processing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `Effector`s are blocks that perform some arbitrary processing from the outputs
//! of other blocks.

pub mod ambisonic_decoder;
pub mod binaural_decoder;
pub mod channel_merger;
pub mod channel_router;
pub mod channel_splitter;
pub mod dc_blocker;
pub mod gain;
pub mod low_pass_filter;
pub mod matrix_mixer;
pub mod mixer;
pub mod overdrive;
pub mod panner;
pub mod vca;