move QMF implementation into nihav_codec_support
[nihav.git] / nihav-codec-support / src / dsp / mod.rs
CommitLineData
4e034a32 1//! DSP routines.
5a990253 2#[cfg(feature="dct")]
e243ceb4 3#[allow(clippy::erasing_op)]
5a990253 4pub mod dct;
e35062e7 5#[cfg(feature="fft")]
e243ceb4 6#[allow(clippy::erasing_op)]
3f3b5b23 7pub mod fft;
e35062e7
KS
8#[cfg(feature="mdct")]
9pub mod mdct;
12cf91ea
KS
10#[cfg(feature="qmf")]
11pub mod qmf;
e35062e7
KS
12#[cfg(feature="dsp_window")]
13pub mod window;