X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=d9eab81e107c95fda31eb27e8cdd7339b607a7bc;hb=73f0f89ff3a3616a8e65b5a31c2303725994c56a;hp=a53f304b2b8013cd1e560bfbfd7c55dacdf1e682;hpb=b4d5b8515e75383b4fc59ea2813c90c615d59a96;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index a53f304..d9eab81 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -6,18 +6,30 @@ #[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::needless_range_loop)] #[allow(clippy::too_many_arguments)] pub mod formats; pub mod frame; #[allow(clippy::too_many_arguments)] pub mod io; +pub mod options; pub mod refs; -pub mod register; -#[allow(clippy::unreadable_literal)] -pub mod detect; 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;