summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarco Paniconi <marpan@google.com>2018-05-14 20:52:20 -0700
committerMarco Paniconi <marpan@google.com>2018-05-15 09:58:53 -0700
commit25b7b6e20fed47e73b66c3b0c59c602bf19b76d8 (patch)
tree44a987063485907772a6dd9372f3bede154bb446 /test
parent8266c45b01a4da284a2fded11e8dbf41683f5d86 (diff)
downloadlibvpx-25b7b6e20fed47e73b66c3b0c59c602bf19b76d8.tar
libvpx-25b7b6e20fed47e73b66c3b0c59c602bf19b76d8.tar.gz
libvpx-25b7b6e20fed47e73b66c3b0c59c602bf19b76d8.tar.bz2
libvpx-25b7b6e20fed47e73b66c3b0c59c602bf19b76d8.zip
vp9: Some speed feature settings for speed 9.
Disable 8x8 blocks for higher resolutions, reduce mv_thresh for 1/2 subpel motion, and disable golden reference at superblock level based on source sad and motion content. ~6% loss in RTC metrics over current speed 9. Speedup about ~10% for high motion clip on linux. Change-Id: I7ff8f81ac93ee8a90d5a1f4837c955d000bd75e7
Diffstat (limited to 'test')
-rw-r--r--test/vp9_datarate_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vp9_datarate_test.cc b/test/vp9_datarate_test.cc
index e50ebdaca..a8bcc2a43 100644
--- a/test/vp9_datarate_test.cc
+++ b/test/vp9_datarate_test.cc
@@ -266,7 +266,7 @@ TEST_P(DatarateTestVP9Large, BasicRateTargetingVBRLagZero) {
ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
ASSERT_GE(effective_datarate_[0], cfg_.rc_target_bitrate * 0.75)
<< " The datarate for the file is lower than target by too much!";
- ASSERT_LE(effective_datarate_[0], cfg_.rc_target_bitrate * 1.35)
+ ASSERT_LE(effective_datarate_[0], cfg_.rc_target_bitrate * 1.36)
<< " The datarate for the file is greater than target by too much!";
}