X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=c98956d85a3957ecc92ab3685d1dfabc5c2fb61b;hb=575c0b27ffcb7440620222e6e78c9ecb4006cf99;hp=d36297f51d9bce4f214cb7e4f175089488dd32a8;hpb=03accf760cf79bc56d7c6dc6e82cd885fb7e1e13;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index d36297f..c98956d 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -1,18 +1,26 @@ +//! 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="compr")] +pub mod compr; + +#[cfg(feature="muxers")] +pub mod muxers; + #[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; -pub mod detect; +pub mod reorder; pub mod scale; - -#[cfg(feature="dsp")] -pub mod dsp; - -pub mod test; +pub mod soundcvt;