X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Fdsp%2Fmod.rs;h=2ff322d8361ab201e1ce6dde9a2b4378d4c823bd;hb=2b8bf9a03242bbd6e80091082a50ec13b1a95143;hp=439ad98851ca2c8acde373d88b9262081df1f584;hpb=5641dccfbf2a70d589cf094a0d4ed5a10f919f00;p=nihav.git diff --git a/nihav-core/src/dsp/mod.rs b/nihav-core/src/dsp/mod.rs index 439ad98..2ff322d 100644 --- a/nihav-core/src/dsp/mod.rs +++ b/nihav-core/src/dsp/mod.rs @@ -1,4 +1,9 @@ +//! 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;