indeo3: drop unneeded parentheses
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 28 Apr 2018 12:48:05 +0000 (14:48 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 28 Apr 2018 12:48:05 +0000 (14:48 +0200)
src/codecs/indeo/indeo3.rs

index abbff6763bfcef38b61c1e64508722855ee5fcd6..9a3d6170d2c1378a85d94fac5dac8860d9945606 100644 (file)
@@ -387,7 +387,7 @@ impl Indeo3Decoder {
                         } else {
                             fill_block8x8(&mut self.bufs,
                                           didx + xoff, stride, 8,
-                                          (y == 0), (cell.y == 0) && (y == 0));
+                                          y == 0, (cell.y == 0) && (y == 0));
                         }
                     }
                     run_blocks -= 1;