Commit b6e2f9b7 authored by Jim Bankoski's avatar Jim Bankoski
Browse files

cpplint issue in vp9_rdopt.h

Change-Id: I84209d382ca5dfc537ee533cd792d8caa0e25cee
Showing with 2 additions and 1 deletion
......@@ -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);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment