fix clippy warnings
[nihav.git] / nihav-indeo / src / codecs / indeo5.rs
index b5030deb9c3eb79dc41c369c5cdc01d737faf869..e4863d37d853f72cc3bdd12bbc503983b23b023c 100644 (file)
@@ -7,7 +7,7 @@ use super::ivi::*;
 use super::ivibr::*;
 
 fn calc_quant(glob_q: u32, qd: i16) -> usize {
-    let qq = (glob_q as i16) + (qd as i16);
+    let qq = (glob_q as i16) + qd;
     if qq < 0 {
         0
     } else if qq > 23 {