From: Tom Finegan Date: Wed, 19 Feb 2014 02:04:13 +0000 (-0800) Subject: vp9_encodeframe.c: Silence totalrate assignment warning with a cast. X-Git-Tag: v1.4.0~2316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=15e95086e2b73bd55c633aaa81ac30a45060f8d9;p=libvpx vp9_encodeframe.c: Silence totalrate assignment warning with a cast. Cast result of round() to int. Change-Id: I4982886ad4e7657b4c40d21bd850d31690a68c28 --- 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) {