summaryrefslogtreecommitdiffstats
path: root/nihav-codec-support/src/dsp/mod.rs
blob: 8d0acc4deded4c632b8bc4b4d34c2b7c0fcab83d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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="qmf")]
pub mod qmf;
#[cfg(feature="dsp_window")]
pub mod window;