//! DSP building blocks for Codename 206. //! //! Stage 2 introduces the full-band compressor (also the engine that will be reused //! per band and for the 'All' aggregate channel — see README.md). Later stages add the //! crossover filterbank, output limiter, and oversampler alongside it. pub mod biquad; pub mod compressor; pub mod crossover; pub mod limiter;