remove trailing whitespaces
[nihav.git] / nihav-ms / src / codecs / msadpcm.rs
index d47d9224f083e04bdf5be2acb2ad99a8e2d1d279..d753882b98e7ef98552ec4f19c16d867111c5cbf 100644 (file)
@@ -3,7 +3,7 @@ use nihav_core::io::byteio::*;
 use std::str::FromStr;
 
 const ADAPT_TABLE: [i32; 16] = [
-    230, 230, 230, 230, 307, 409, 512, 614, 
+    230, 230, 230, 230, 307, 409, 512, 614,
     768, 614, 512, 409, 307, 230, 230, 230
 ];
 const ADAPT_COEFFS: [[i32; 2]; 7] = [
@@ -354,7 +354,7 @@ impl NAEncoder for MSADPCMEncoder {
                 self.samples = Vec::with_capacity(self.block_len * self.channels);
                 self.srate = ainfo.sample_rate;
                 self.flush = false;
-                
+
                 Ok(stream)
             },
         }