ref: 7811039d476f22276201523b1c8ce8b38824f264
parent: 7af0e984b8b83344e013bb24df18322823197eb2
author: Tom Finegan <tomfinegan@google.com>
date: Wed May 7 14:27:29 EDT 2014
vp9_firstpass: Fix MSVC data loss warning. Change-Id: I5307fe85ee081fbcfdf55a974f7eba1e0070c723
--- a/vp9/encoder/vp9_firstpass.c
+++ b/vp9/encoder/vp9_firstpass.c
@@ -2402,8 +2402,8 @@
const double progress =
(double)(cpi->twopass.stats_in - cpi->twopass.stats_in_start) /
(cpi->twopass.stats_in_end - cpi->twopass.stats_in_start);
- const int bits_used = progress * rc->this_frame_target +
- (1.0 - progress) * rc->projected_frame_size;
+ const int bits_used = (int)(progress * rc->this_frame_target +
+ (1.0 - progress) * rc->projected_frame_size);
#endif
cpi->twopass.bits_left -= bits_used;
--
⑨