shithub: libvpx

Download patch

ref: 691177842ca882b014661ea414125ab67b444f85
parent: d0308b7daa249bdf2781264df88059ac2e52cece
parent: b6e2f9b752c2dacf7e14311e44dc1d3038bcf1e5
author: Jim Bankoski <jimbankoski@google.com>
date: Tue Oct 1 11:45:35 EDT 2013

Merge "cpplint issue in vp9_rdopt.h"

--- a/vp9/encoder/vp9_rdopt.h
+++ b/vp9/encoder/vp9_rdopt.h
@@ -12,7 +12,8 @@
 #ifndef VP9_ENCODER_VP9_RDOPT_H_
 #define VP9_ENCODER_VP9_RDOPT_H_
 
-#define RDCOST(RM,DM,R,D) ( ((128+((int64_t)R)*(RM)) >> 8) + ((int64_t)DM)*(D) )
+#define RDCOST(RM, DM, R, D) \
+  (((128 + ((int64_t)R) * (RM)) >> 8) + ((int64_t)DM) * (D))
 #define QIDX_SKIP_THRESH     115
 
 void vp9_initialize_rd_consts(VP9_COMP *cpi, int qindex);