X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=d3104a4a54b5c9bafdcd81b0f76b62843a1f1656;hb=b36f412c24813b14cb2b1f8fd151863e2a49c1e2;hp=05b7ad92cd8f0e9bd88efbc7a46d9bb6434b6e19;hpb=4f6124ac474e05ab343505444cdbb69b67829e2c;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index 05b7ad9..d3104a4 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -1,16 +1,34 @@ +//! 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")] +#[allow(clippy::manual_memcpy)] +#[allow(clippy::needless_range_loop)] +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 register; -pub mod detect; - -#[cfg(feature="dsp")] -pub mod dsp; - -pub mod test; +pub mod options; +pub mod refs; +pub mod reorder; +#[allow(clippy::collapsible_if)] +#[allow(clippy::many_single_char_names)] +#[allow(clippy::needless_range_loop)] +#[allow(clippy::trivially_copy_pass_by_ref)] +pub mod scale; +#[allow(clippy::unreadable_literal)] +pub mod soundcvt;