shithub: libvpx

Download patch

ref: 74558bc582e46cc76ab1a5b0515d1131e6df4df8
parent: fdc73955f0b8f8231b21dd9d26d87c1fa6dc3803
author: Paul Wilkins <paulwilkins@google.com>
date: Mon Mar 3 10:41:21 EST 2014

Clear implied conversion to int64_t warning.

Clear warning caused by implied conversion from int32 to int64.

Change-Id: I473b37a54984cbfb22702eb3f712465881ff86e8

--- 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)] =
--