X-Git-Url: https://git.nihav.org/?p=nihav.git;a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=cf97841877afac09a634c11c50118f44b7e48556;hp=4b6729c861c74c98b43c01e2f928f0e40cefebe3;hb=32f7cbe538d71574f7ac05aa51599d2678f5db3f;hpb=1fdbd53e295c3876df7602cc5c5397730711ed24 diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index 4b6729c..cf97841 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -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)] @@ -14,18 +15,6 @@ pub mod frame; #[allow(clippy::too_many_arguments)] pub mod io; 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 data; - -pub mod test; +pub mod soundcvt;