aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-core/src/dsp/mod.rs
blob: 2ff322d8361ab201e1ce6dde9a2b4378d4c823bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//! DSP routines.
#[cfg(feature="dct")]
#[allow(clippy::erasing_op)]
pub mod dct;
#[cfg(feature="fft")]
#[allow(clippy::erasing_op)]
pub mod fft;
#[cfg(feature="mdct")]
pub mod mdct;
#[cfg(feature="dsp_window")]
pub mod window;