core: fix or silence clippy warnings
[nihav.git] / nihav-core / src / lib.rs
index c98956d85a3957ecc92ab3685d1dfabc5c2fb61b..d3104a4a54b5c9bafdcd81b0f76b62843a1f1656 100644 (file)
@@ -7,6 +7,8 @@
 pub mod codecs;
 
 #[cfg(feature="compr")]
+#[allow(clippy::manual_memcpy)]
+#[allow(clippy::needless_range_loop)]
 pub mod compr;
 
 #[cfg(feature="muxers")]
@@ -20,7 +22,13 @@ pub mod formats;
 pub mod frame;
 #[allow(clippy::too_many_arguments)]
 pub mod io;
+pub mod options;
 pub mod refs;
 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;