Index: source/libvpx/test/datarate_test.cc |
=================================================================== |
--- source/libvpx/test/datarate_test.cc (revision 240950) |
+++ source/libvpx/test/datarate_test.cc (working copy) |
@@ -248,9 +248,11 @@ |
cfg_.rc_target_bitrate = i; |
ResetModel(); |
ASSERT_NO_FATAL_FAILURE(RunLoop(&video)); |
- ASSERT_GE(cfg_.rc_target_bitrate, effective_datarate_ * 0.8) |
+ ASSERT_GE(static_cast<double>(cfg_.rc_target_bitrate), |
+ effective_datarate_ * 0.85) |
<< " The datarate for the file exceeds the target by too much!"; |
- ASSERT_LE(cfg_.rc_target_bitrate, effective_datarate_ * 1.3) |
+ ASSERT_LE(static_cast<double>(cfg_.rc_target_bitrate), |
+ effective_datarate_ * 1.15) |
<< " The datarate for the file missed the target!"; |
} |
} |