aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-core/src/lib.rs
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2020-06-16 12:08:29 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2020-06-16 12:08:29 +0200
commitb36f412c24813b14cb2b1f8fd151863e2a49c1e2 (patch)
tree9764fca5cc1e2273e9b3bbbe29ef6e72a8a82fea /nihav-core/src/lib.rs
parent36ce88be3f590a876fe539c8f631a58af2ea2cac (diff)
downloadnihav-b36f412c24813b14cb2b1f8fd151863e2a49c1e2.tar.gz
core: fix or silence clippy warnings
Diffstat (limited to 'nihav-core/src/lib.rs')
-rw-r--r--nihav-core/src/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs
index 303fb24..d3104a4 100644
--- a/nihav-core/src/lib.rs
+++ b/nihav-core/src/lib.rs
@@ -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")]
@@ -23,5 +25,10 @@ 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;