| Index: source/libvpx/test/cpu_speed_test.cc
|
| ===================================================================
|
| --- source/libvpx/test/cpu_speed_test.cc (revision 263011)
|
| +++ source/libvpx/test/cpu_speed_test.cc (working copy)
|
| @@ -22,6 +22,7 @@
|
| libvpx_test::TestMode, int> {
|
| protected:
|
| CpuSpeedTest() : EncoderTest(GET_PARAM(0)) {}
|
| + virtual ~CpuSpeedTest() {}
|
|
|
| virtual void SetUp() {
|
| InitializeConfig();
|
| @@ -79,7 +80,7 @@
|
| cfg_.rc_min_quantizer = 0;
|
|
|
| ::libvpx_test::I420VideoSource video("hantro_odd.yuv", 208, 144, 30, 1, 0,
|
| - 40);
|
| + 20);
|
|
|
| ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
|
| }
|
| @@ -95,7 +96,7 @@
|
| cfg_.rc_min_quantizer = 40;
|
|
|
| ::libvpx_test::I420VideoSource video("hantro_odd.yuv", 208, 144, 30, 1, 0,
|
| - 40);
|
| + 20);
|
|
|
| ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
|
| }
|
| @@ -107,6 +108,6 @@
|
|
|
| VP9_INSTANTIATE_TEST_CASE(
|
| CpuSpeedTest,
|
| - ::testing::Values(::libvpx_test::kTwoPassGood),
|
| - ::testing::Range(0, 5));
|
| + ::testing::Values(::libvpx_test::kTwoPassGood, ::libvpx_test::kOnePassGood),
|
| + ::testing::Range(0, 8));
|
| } // namespace
|
|
|