shithub: libvpx

Download patch

ref: f3e6a35cdb54fc2c815b9e07e459d7d917f9a28e
parent: c6960b60867f0ce25404c0bf4b96018e7d41bb08
author: Jim Bankoski <jimbankoski@google.com>
date: Fri Oct 4 10:08:37 EDT 2013

cpplint issues in vp9_ssim.c

Change-Id: I788f1a3004643347ca08d08fc3cb2bb8f0b134d9

--- a/vp9/encoder/vp9_ssim.c
+++ b/vp9/encoder/vp9_ssim.c
@@ -42,8 +42,8 @@
   }
 }
 
-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,