diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2018-04-28 14:48:05 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2018-04-28 14:48:05 +0200 |
commit | 8f4c4020be0e141b30799514fa838842790bc53d (patch) | |
tree | 07a29e59b298771bd99e0e09e2b5c137a6552516 /src | |
parent | 99d0e1a6843492e28507086f69e682e1b5e00bde (diff) | |
download | nihav-8f4c4020be0e141b30799514fa838842790bc53d.tar.gz |
indeo3: drop unneeded parentheses
Diffstat (limited to 'src')
-rw-r--r-- | src/codecs/indeo/indeo3.rs | 2 |
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; |