From f3e6a35cdb54fc2c815b9e07e459d7d917f9a28e Mon Sep 17 00:00:00 2001 From: Jim Bankoski Date: Fri, 4 Oct 2013 14:08:37 -0700 Subject: [PATCH] cpplint issues in vp9_ssim.c Change-Id: I788f1a3004643347ca08d08fc3cb2bb8f0b134d9 --- vp9/encoder/vp9_ssim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vp9/encoder/vp9_ssim.c b/vp9/encoder/vp9_ssim.c index c15551663..a5f18e631 100644 --- a/vp9/encoder/vp9_ssim.c +++ b/vp9/encoder/vp9_ssim.c @@ -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, -- 2.40.0