realmedia: fix some clippy warnings
[nihav.git] / nihav-realmedia / src / codecs / mod.rs
index a5cc74cc2f12c42588f29939cf7e14d9139eee04..c5ff9bcc232dc5ff9bef8c7eeed38d696222d638 100644 (file)
@@ -11,6 +11,7 @@ mod rv3040;
 mod rv34codes;
 #[cfg(any(feature="decoder_realvideo3", feature="decoder_realvideo4"))]
 #[allow(clippy::erasing_op)]
+#[allow(clippy::many_single_char_names)]
 mod rv34dsp;
 
 #[cfg(feature="decoder_realvideo1")]
@@ -21,11 +22,14 @@ pub mod rv20;
 pub mod rv30;
 #[cfg(feature="decoder_realvideo3")]
 #[allow(clippy::erasing_op)]
+#[allow(clippy::many_single_char_names)]
+#[allow(clippy::neg_multiply)]
 pub mod rv30dsp;
 #[cfg(feature="decoder_realvideo4")]
 pub mod rv40;
 #[cfg(feature="decoder_realvideo4")]
 #[allow(clippy::erasing_op)]
+#[allow(clippy::many_single_char_names)]
 pub mod rv40dsp;
 #[cfg(feature="decoder_realvideo6")]
 pub mod rv60;
@@ -33,6 +37,7 @@ pub mod rv60;
 pub mod rv60codes;
 #[cfg(feature="decoder_realvideo6")]
 #[allow(clippy::erasing_op)]
+#[allow(clippy::many_single_char_names)]
 pub mod rv60dsp;
 
 #[cfg(feature="decoder_realaudio144")]