X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-codec-support%2Fsrc%2Fdsp%2Fmod.rs;h=b8c32df34f7a17de5f4a41da104e30d9bde7facc;hb=b9995c2ca73cb50f1e9f2ad7a08c49b20135b041;hp=2ff322d8361ab201e1ce6dde9a2b4378d4c823bd;hpb=b4d5b8515e75383b4fc59ea2813c90c615d59a96;p=nihav.git diff --git a/nihav-codec-support/src/dsp/mod.rs b/nihav-codec-support/src/dsp/mod.rs index 2ff322d..b8c32df 100644 --- a/nihav-codec-support/src/dsp/mod.rs +++ b/nihav-codec-support/src/dsp/mod.rs @@ -5,7 +5,11 @@ pub mod dct; #[cfg(feature="fft")] #[allow(clippy::erasing_op)] pub mod fft; +#[cfg(feature="lpc")] +pub mod lpc; #[cfg(feature="mdct")] pub mod mdct; +#[cfg(feature="qmf")] +pub mod qmf; #[cfg(feature="dsp_window")] pub mod window;