]> granicus.if.org Git - libvpx/commitdiff
cpplint issues in vp9_ssim.c
authorJim Bankoski <jimbankoski@google.com>
Fri, 4 Oct 2013 21:08:37 +0000 (14:08 -0700)
committerJim Bankoski <jimbankoski@google.com>
Fri, 4 Oct 2013 21:08:37 +0000 (14:08 -0700)
Change-Id: I788f1a3004643347ca08d08fc3cb2bb8f0b134d9

vp9/encoder/vp9_ssim.c

index c1555166376d1fc47772ea9096126966074f3979..a5f18e6313b7c6f9c029b7e51427f4726ddee88d 100644 (file)
@@ -42,8 +42,8 @@ void vp9_ssim_parms_8x8_c(uint8_t *s, int sp, uint8_t *r, int rp,
   }
 }
 
-const static int64_t cc1 =  26634; // (64^2*(.01*255)^2
-const static int64_t cc2 = 239708; // (64^2*(.03*255)^2
+static const int64_t cc1 =  26634;  // (64^2*(.01*255)^2
+static const int64_t cc2 = 239708;  // (64^2*(.03*255)^2
 
 static double similarity(unsigned long sum_s, unsigned long sum_r,
                          unsigned long sum_sq_s, unsigned long sum_sq_r,