aboutsummaryrefslogtreecommitdiff
path: root/libvpx/test/realtime_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libvpx/test/realtime_test.cc')
-rw-r--r--libvpx/test/realtime_test.cc43
1 files changed, 38 insertions, 5 deletions
diff --git a/libvpx/test/realtime_test.cc b/libvpx/test/realtime_test.cc
index 63a5347d9..b32a35513 100644
--- a/libvpx/test/realtime_test.cc
+++ b/libvpx/test/realtime_test.cc
@@ -7,6 +7,8 @@
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
+#include <limits.h>
+
#include "test/codec_factory.h"
#include "test/encode_test_driver.h"
#include "test/util.h"
@@ -52,6 +54,22 @@ class RealtimeTest
frame_packets_++;
}
+ bool IsVP9() const {
+#if CONFIG_VP9_ENCODER
+ return codec_ == &libvpx_test::kVP9;
+#else
+ return false;
+#endif
+ }
+
+ void TestIntegerOverflow(unsigned int width, unsigned int height) {
+ ::libvpx_test::RandomVideoSource video;
+ video.SetSize(width, height);
+ video.set_limit(20);
+ cfg_.rc_target_bitrate = UINT_MAX;
+ ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
+ }
+
int frame_packets_;
};
@@ -64,11 +82,26 @@ TEST_P(RealtimeTest, RealtimeFirstPassProducesFrames) {
}
TEST_P(RealtimeTest, IntegerOverflow) {
- ::libvpx_test::RandomVideoSource video;
- video.SetSize(800, 480);
- video.set_limit(20);
- cfg_.rc_target_bitrate = 140000000;
- ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
+ if (IsVP9()) {
+ // TODO(https://crbug.com/webm/1749): This should match VP8.
+ TestIntegerOverflow(800, 480);
+ } else {
+ TestIntegerOverflow(2048, 2048);
+ }
+}
+
+TEST_P(RealtimeTest, IntegerOverflowLarge) {
+ if (IsVP9()) {
+ GTEST_SKIP() << "TODO(https://crbug.com/webm/1750): Enable this test after "
+ "undefined sanitizer warnings are fixed.";
+ // TestIntegerOverflow(16384, 16384);
+ } else {
+ GTEST_SKIP()
+ << "TODO(https://crbug.com/webm/1748,https://crbug.com/webm/1751):"
+ << " Enable this test after bitstream errors & undefined sanitizer "
+ "warnings are fixed.";
+ // TestIntegerOverflow(16383, 16383);
+ }
}
VP8_INSTANTIATE_TEST_SUITE(RealtimeTest,