From: Paul Wilkins Date: Mon, 3 Mar 2014 15:41:21 +0000 (+0000) Subject: Clear implied conversion to int64_t warning. X-Git-Tag: v1.4.0~2178^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74558bc582e46cc76ab1a5b0515d1131e6df4df8;p=libvpx Clear implied conversion to int64_t warning. Clear warning caused by implied conversion from int32 to int64. Change-Id: I473b37a54984cbfb22702eb3f712465881ff86e8 --- diff --git a/vp9/encoder/vp9_pickmode.c b/vp9/encoder/vp9_pickmode.c index edb14ea42..9ba48a1b5 100644 --- a/vp9/encoder/vp9_pickmode.c +++ b/vp9/encoder/vp9_pickmode.c @@ -261,7 +261,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, 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)] =