aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-codec-support/src/dsp/mod.rs
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2020-02-20 11:00:24 +0100
committerKostya Shishkov <kostya.shishkov@gmail.com>2020-02-20 11:00:24 +0100
commitb4d5b8515e75383b4fc59ea2813c90c615d59a96 (patch)
treecf9ea1f458965eea90dff60a607dc90bf42887b3 /nihav-codec-support/src/dsp/mod.rs
parent2b8bf9a03242bbd6e80091082a50ec13b1a95143 (diff)
downloadnihav-b4d5b8515e75383b4fc59ea2813c90c615d59a96.tar.gz
split nihav-codec-support crate from nihav-core
The former is intended just for NihAV decoders, the latter is for both NihAV crates and for the code using NihAV.
Diffstat (limited to 'nihav-codec-support/src/dsp/mod.rs')
-rw-r--r--nihav-codec-support/src/dsp/mod.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/nihav-codec-support/src/dsp/mod.rs b/nihav-codec-support/src/dsp/mod.rs
new file mode 100644
index 0000000..2ff322d
--- /dev/null
+++ b/nihav-codec-support/src/dsp/mod.rs
@@ -0,0 +1,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;