X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-codec-support%2Fsrc%2Flib.rs;h=076b0ae1fa86c05abd160ab362eee75113dbf30d;hb=03011b993dc4873b39d981f62abc01591a0544f7;hp=e2c2ef65d7e63b5259d912362736fd4cdf192c01;hpb=b4d5b8515e75383b4fc59ea2813c90c615d59a96;p=nihav.git diff --git a/nihav-codec-support/src/lib.rs b/nihav-codec-support/src/lib.rs index e2c2ef6..076b0ae 100644 --- a/nihav-codec-support/src/lib.rs +++ b/nihav-codec-support/src/lib.rs @@ -8,12 +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;