]>
Commit | Line | Data |
---|---|---|
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="mdct")] | |
9 | pub mod mdct; | |
10 | #[cfg(feature="qmf")] | |
11 | pub mod qmf; | |
12 | #[cfg(feature="dsp_window")] | |
13 | pub mod window; |