X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=a53f304b2b8013cd1e560bfbfd7c55dacdf1e682;hb=b4d5b8515e75383b4fc59ea2813c90c615d59a96;hp=615a0cf997a259e91e987f0131a9e9dc308472a8;hpb=1a967e6bad5f17943b4de0607078eb940ad5adfe;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index 615a0cf..a53f304 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -1,17 +1,23 @@ +//! 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)] +#[allow(clippy::too_many_arguments)] +#[allow(clippy::unreadable_literal)] pub mod codecs; #[cfg(feature="demuxers")] pub mod demuxers; +#[allow(clippy::too_many_arguments)] pub mod formats; pub mod frame; +#[allow(clippy::too_many_arguments)] pub mod io; pub mod refs; pub mod register; +#[allow(clippy::unreadable_literal)] pub mod detect; - -#[cfg(feature="dsp")] -pub mod dsp; - -pub mod test; +pub mod reorder; +pub mod scale; +pub mod soundcvt;