X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-codec-support%2Fsrc%2Flib.rs;h=076b0ae1fa86c05abd160ab362eee75113dbf30d;hb=995e421a17b430ded9b6753d70d3b8c9ac106eed;hp=d2c889f476d9d0655608939796cf3d0b9646fe50;hpb=8424ddfdb0ed73989e69a75d634ecbd4ad218720;p=nihav.git diff --git a/nihav-codec-support/src/lib.rs b/nihav-codec-support/src/lib.rs index d2c889f..076b0ae 100644 --- a/nihav-codec-support/src/lib.rs +++ b/nihav-codec-support/src/lib.rs @@ -8,14 +8,23 @@ pub mod codecs; #[cfg(feature="dsp")] #[allow(clippy::excessive_precision)] #[allow(clippy::identity_op)] +#[allow(clippy::manual_memcpy)] #[allow(clippy::needless_range_loop)] #[allow(clippy::unreadable_literal)] pub mod dsp; pub mod data; +#[allow(clippy::identity_op)] +#[allow(clippy::many_single_char_names)] pub mod imgwrite; +#[allow(clippy::too_many_arguments)] +#[allow(clippy::type_complexity)] pub mod test; +#[cfg(feature="vq")] +#[allow(clippy::needless_range_loop)] +pub mod vq; + extern crate nihav_core;