remove trailing whitespaces
authorKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 15 Apr 2020 06:51:18 +0000 (08:51 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 15 Apr 2020 06:51:18 +0000 (08:51 +0200)
nihav-codec-support/src/codecs/h263/decoder.rs
nihav-codec-support/src/data/mod.rs
nihav-core/src/compr/deflate.rs
nihav-game/src/codecs/midivid3.rs

index 1d670323705dfe0a8e451cfa210918498bbb5a27..0eb95ec21e236ee6230c56b32431c768c40c9f19 100644 (file)
@@ -348,7 +348,7 @@ impl H263BaseDecoder {
                         } else {
                             if single_mv { cur_mv } else { bi.mv_f[blk + 1] }
                         };
-                    
+
                     let mut obmcbuf = NASimpleVideoFrame::from_video_buf(&mut self.obmc_buf).unwrap();
 
                     if let Some(ref srcbuf) = self.ipbs.get_lastref() {
index 35a89736b72075a71e6d4305b9bc667e6795f401..b8980f2d9b5180d5c06916650cff93200f7e789e 100644 (file)
@@ -5,7 +5,7 @@
 /// In the decoding process of many codecs there is a need to store some previously decoded information and only immediate top neighbours are used.
 /// This can be done by storing either the full information for the whole frame or just the top line and move information for last decoded row to the top every time when row decoding is done.
 /// `GenericCache` implements the second approach.
-/// 
+///
 /// # Examples
 ///
 /// Create a cache for one line and use top pixel for prediction:
index 8e91caa369789267c4dec7d08468cf50f244dbd6..1b3dc68290ccdde1977025d9e2623c21abf9109a 100644 (file)
@@ -747,7 +747,7 @@ fn lengths_to_codes(lens: &[u8], codes: &mut [ShortCodebookDesc]) -> DecompressR
             *codes = ShortCodebookDesc { code: 0, bits: 0 };
         }
     }
-    
+
     Ok(())
 }
 
index da6b628614a7aee53fe4ca6b83d23eeac2fff554..d65e448c170ceea0d49cb5bbf76f0ffa05aa9da7 100644 (file)
@@ -305,7 +305,7 @@ fn scale_coef(val: i32, scale: i16) -> i32 {
 }
 
 macro_rules! idct_1d {
-    ($c0: expr, $c1: expr, $c2: expr, $c3: expr, $c4: expr, $c5: expr, $c6: expr, $c7: expr) => { 
+    ($c0: expr, $c1: expr, $c2: expr, $c3: expr, $c4: expr, $c5: expr, $c6: expr, $c7: expr) => {
         let t0 = $c0 + $c4;
         let t1 = $c0 - $c4;
         let t2 = $c2 + $c6;