codec_support: add function for calculating LPC filter
[nihav.git] / nihav-codec-support / src / dsp / mod.rs
index 2ff322d8361ab201e1ce6dde9a2b4378d4c823bd..b8c32df34f7a17de5f4a41da104e30d9bde7facc 100644 (file)
@@ -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;