codec_support: add function for calculating LPC filter
[nihav.git] / nihav-codec-support / src / dsp / mod.rs
1 //! DSP routines.
2 #[cfg(feature="dct")]
3 #[allow(clippy::erasing_op)]
4 pub mod dct;
5 #[cfg(feature="fft")]
6 #[allow(clippy::erasing_op)]
7 pub mod fft;
8 #[cfg(feature="lpc")]
9 pub mod lpc;
10 #[cfg(feature="mdct")]
11 pub mod mdct;
12 #[cfg(feature="qmf")]
13 pub mod qmf;
14 #[cfg(feature="dsp_window")]
15 pub mod window;