From: Kostya Shishkov Date: Sat, 3 Oct 2020 12:00:09 +0000 (+0200) Subject: vx: remove trailing whitespaces X-Git-Url: https://git.nihav.org/?p=nihav.git;a=commitdiff_plain;h=4d6935baf33c49a39b89ae73e7e3cc509e11b35c vx: remove trailing whitespaces --- diff --git a/nihav-game/src/codecs/vx.rs b/nihav-game/src/codecs/vx.rs index 584ed49..977e4e1 100644 --- a/nihav-game/src/codecs/vx.rs +++ b/nihav-game/src/codecs/vx.rs @@ -652,7 +652,7 @@ impl VXVideoDecoder { let mx = self.cur_mv.x as isize; let my = self.cur_mv.y as isize; mc!(self.buf, src, dst, mx, my, xpos, ypos, w, h, 0, 0, 0, self.width, self.height); - + Ok(()) } fn do_mc_bias(&mut self, br: &mut BitReader, xpos: usize, ypos: usize, w: usize, h: usize) -> DecoderResult<()> { @@ -664,7 +664,7 @@ impl VXVideoDecoder { let udelta = br.read_gammap_s()? * 2; let vdelta = br.read_gammap_s()? * 2; mc!(self.buf, src, dst, mx, my, xpos, ypos, w, h, ydelta, udelta, vdelta, self.width, self.height); - + Ok(()) } fn pred_plane(&mut self, br: &mut BitReader, xpos: usize, ypos: usize, w: usize, h: usize) -> DecoderResult<()> {