From 15e95086e2b73bd55c633aaa81ac30a45060f8d9 Mon Sep 17 00:00:00 2001 From: Tom Finegan Date: Tue, 18 Feb 2014 18:04:13 -0800 Subject: [PATCH] vp9_encodeframe.c: Silence totalrate assignment warning with a cast. Cast result of round() to int. Change-Id: I4982886ad4e7657b4c40d21bd850d31690a68c28 --- vp9/encoder/vp9_encodeframe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c index ce8614639..a2430bf7f 100644 --- a/vp9/encoder/vp9_encodeframe.c +++ b/vp9/encoder/vp9_encodeframe.c @@ -714,7 +714,7 @@ static void rd_pick_sb_modes(VP9_COMP *cpi, const TileInfo *const tile, x->rdmult = orig_rdmult; if (*totalrate != INT_MAX) { vp9_clear_system_state(); - *totalrate = round(*totalrate * rdmult_ratio); + *totalrate = (int)round(*totalrate * rdmult_ratio); } } else if (cpi->oxcf.aq_mode == COMPLEXITY_AQ) {