]> git.nihav.org Git - nihav.git/blobdiff - nihav-core/src/lib.rs
split nihav-codec-support crate from nihav-core
[nihav.git] / nihav-core / src / lib.rs
index a3e2df12925794f2ebc2c023c1fab8d760b60335..a53f304b2b8013cd1e560bfbfd7c55dacdf1e682 100644 (file)
@@ -1,3 +1,4 @@
+//! Core functionality of NihAV intended to be used by both crates implementing format support and users.
 #[cfg(feature="decoders")]
 #[allow(clippy::cast_lossless)]
 #[allow(clippy::identity_op)]
@@ -17,13 +18,6 @@ pub mod refs;
 pub mod register;
 #[allow(clippy::unreadable_literal)]
 pub mod detect;
+pub mod reorder;
 pub mod scale;
-
-#[cfg(feature="dsp")]
-#[allow(clippy::excessive_precision)]
-#[allow(clippy::identity_op)]
-#[allow(clippy::needless_range_loop)]
-#[allow(clippy::unreadable_literal)]
-pub mod dsp;
-
-pub mod test;
+pub mod soundcvt;