X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=d3104a4a54b5c9bafdcd81b0f76b62843a1f1656;hb=b36f412c24813b14cb2b1f8fd151863e2a49c1e2;hp=2652c14f0dcb7125431e02100b230972e93a747e;hpb=776aa7d882ea8c9988003fbfa6ca9b8e034eb65e;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index 2652c14..d3104a4 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -6,6 +6,14 @@ #[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; @@ -14,21 +22,13 @@ 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; -pub mod scale; -pub mod soundcvt; - -#[cfg(feature="dsp")] -#[allow(clippy::excessive_precision)] -#[allow(clippy::identity_op)] +#[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 dsp; - -pub mod data; - -pub mod test; +pub mod soundcvt;