Commit 34ad6d00 authored by Paul Wilkins's avatar Paul Wilkins Committed by Gerrit Code Review
Browse files

Merge "Clear implied conversion to int64_t warning."

Showing with 1 addition and 1 deletion
...@@ -261,7 +261,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, ...@@ -261,7 +261,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
continue; continue;
if (this_mode == NEWMV) { 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; continue;
x->mode_sad[ref_frame][INTER_OFFSET(NEWMV)] = x->mode_sad[ref_frame][INTER_OFFSET(NEWMV)] =
......
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