aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2018-04-28 14:48:05 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2018-04-28 14:48:05 +0200
commit8f4c4020be0e141b30799514fa838842790bc53d (patch)
tree07a29e59b298771bd99e0e09e2b5c137a6552516 /src
parent99d0e1a6843492e28507086f69e682e1b5e00bde (diff)
downloadnihav-8f4c4020be0e141b30799514fa838842790bc53d.tar.gz
indeo3: drop unneeded parentheses
Diffstat (limited to 'src')
-rw-r--r--src/codecs/indeo/indeo3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codecs/indeo/indeo3.rs b/src/codecs/indeo/indeo3.rs
index abbff67..9a3d617 100644
--- a/src/codecs/indeo/indeo3.rs
+++ b/src/codecs/indeo/indeo3.rs
@@ -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;