vp9_encodeframe.c: Silence totalrate assignment warning with a cast.

Cast result of round() to int.

Change-Id: I4982886ad4e7657b4c40d21bd850d31690a68c28
This commit is contained in:
Tom Finegan 2014-02-18 18:04:13 -08:00
parent fd402e1374
commit 15e95086e2

View File

@ -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) {