From ff8edd3509773397b699d70b8701dba9fced3bf0 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 15 Jun 2016 23:34:09 -0700 Subject: vp9_pickmode: quiet int64->int conversion warning since: 7901a05 VP9: block_yrd(): Use RD_COST * instead Change-Id: I808be7a7bc96b81eb7d6255ae96cea7e9b1ecf1f --- vp9/encoder/vp9_pickmode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vp9/encoder/vp9_pickmode.c b/vp9/encoder/vp9_pickmode.c index 53ef7a046..ccafd815e 100644 --- a/vp9/encoder/vp9_pickmode.c +++ b/vp9/encoder/vp9_pickmode.c @@ -1037,7 +1037,7 @@ void vp9_pick_intra_mode(VP9_COMP *cpi, MACROBLOCK *x, RD_COST *rd_cost, // Change the limit of this loop to add other intra prediction // mode tests. for (this_mode = DC_PRED; this_mode <= H_PRED; ++this_mode) { - this_rdc.rate = this_rdc.dist = 0; + this_rdc.dist = this_rdc.rate = 0; args.mode = this_mode; args.skippable = 1; args.rdc = &this_rdc; @@ -1920,7 +1920,7 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, mi->mode = this_mode; mi->ref_frame[0] = INTRA_FRAME; - this_rdc.rate = this_rdc.dist = 0; + this_rdc.dist = this_rdc.rate = 0; args.mode = this_mode; args.skippable = 1; args.rdc = &this_rdc; -- cgit v1.2.3