ref: 34ad6d00d22cb4869b3edb5f5d486d9d7ad80835
parent: cf123f40ee859723c34346bb68e94708206ea594
parent: 74558bc582e46cc76ab1a5b0515d1131e6df4df8
author: Paul Wilkins <paulwilkins@google.com>
date: Mon Mar 3 04:28:12 EST 2014
Merge "Clear implied conversion to int64_t warning."
--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -261,7 +261,7 @@
continue;
if (this_mode == NEWMV) {
- if (this_rd < (1 << num_pels_log2_lookup[bsize]))
+ if (this_rd < (int64_t)(1 << num_pels_log2_lookup[bsize]))
continue;
x->mode_sad[ref_frame][INTER_OFFSET(NEWMV)] =
--
⑨