ref: 37cd112b0f1150679b0966bee13ec9ff8e09a642
parent: 3b2d08a93b218c110100d9ac2b7e939f3a7c4ed4
parent: 519b2e48a814e13a24177b1afd264edba7a86ef5
author: Hui Su <huisu@google.com>
date: Wed Jan 25 17:49:29 EST 2017
Merge "Fix an overflow warning in optimize_b()"
--- a/vp9/encoder/vp9_encodemb.c
+++ b/vp9/encoder/vp9_encodemb.c
@@ -102,7 +102,7 @@
const int16_t *const nb = so->neighbors;
const int dq_step[2] = { dequant_ptr[0] >> shift, dequant_ptr[1] >> shift };
int next = eob, sz = 0;
- const int64_t rdmult = (mb->rdmult * plane_rd_mult[ref][type]) >> 1;
+ const int64_t rdmult = ((int64_t)mb->rdmult * plane_rd_mult[ref][type]) >> 1;
const int64_t rddiv = mb->rddiv;
int64_t rd_cost0, rd_cost1;
int rate0, rate1;