From 4205b51d512cd789d4d39bc43edfa47c66ef0ccd Mon Sep 17 00:00:00 2001 From: Tom Finegan Date: Thu, 22 May 2014 14:10:11 -0700 Subject: [PATCH] vp9_ratectrl.c: Fix MSVC warnings. Change-Id: I4bd635949240880ced5f581c24e981ccd0374e40 --- vp9/encoder/vp9_ratectrl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vp9/encoder/vp9_ratectrl.c b/vp9/encoder/vp9_ratectrl.c index af889e3..b57e389 100644 --- a/vp9/encoder/vp9_ratectrl.c +++ b/vp9/encoder/vp9_ratectrl.c @@ -612,9 +612,9 @@ static int get_active_cq_level(const RATE_CONTROL *rc, static const double cq_adjust_threshold = 0.5; int active_cq_level = oxcf->cq_level; if (oxcf->rc_mode == RC_MODE_CONSTRAINED_QUALITY) { - const double x = rc->total_actual_bits / rc->total_target_bits; + const double x = (double)rc->total_actual_bits / rc->total_target_bits; if (x < cq_adjust_threshold) { - active_cq_level = active_cq_level * x / cq_adjust_threshold; + active_cq_level = (int)(active_cq_level * x / cq_adjust_threshold); } } return active_cq_level; -- 2.7.4