codec_support: fix or silence clippy warnings
[nihav.git] / nihav-codec-support / src / lib.rs
index 9139a2ae0b4fc10eeec9fd3c083829ed26e42eb9..076b0ae1fa86c05abd160ab362eee75113dbf30d 100644 (file)
@@ -8,17 +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;