summaryrefslogtreecommitdiffstats
path: root/libvpx/test/vp9_lossless_test.cc
diff options
context:
space:
mode:
authorhkuang <hkuang@google.com>2013-11-14 22:50:46 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2013-11-14 22:50:46 -0800
commitaa43d6ba5f5fb7eaeca1d0573ecb16ea4d388197 (patch)
tree6ff3bfc5090953c49fa26fac842b924d88e0983d /libvpx/test/vp9_lossless_test.cc
parenta1b7a7bb1ccf3f479bbca69a52a76eb05789dbaf (diff)
parent9b35249446b07f40ac5fcc3205f2c048616efacc (diff)
downloadandroid_external_libvpx-aa43d6ba5f5fb7eaeca1d0573ecb16ea4d388197.tar.gz
android_external_libvpx-aa43d6ba5f5fb7eaeca1d0573ecb16ea4d388197.tar.bz2
android_external_libvpx-aa43d6ba5f5fb7eaeca1d0573ecb16ea4d388197.zip
am 9b352494: Roll latest libvpx to fix scalling bug. Checkout is from master:Ib748eb287520c794631697204da6ebe19523ce95
* commit '9b35249446b07f40ac5fcc3205f2c048616efacc': Roll latest libvpx to fix scalling bug. Checkout is from master:Ib748eb287520c794631697204da6ebe19523ce95
Diffstat (limited to 'libvpx/test/vp9_lossless_test.cc')
-rw-r--r--libvpx/test/vp9_lossless_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvpx/test/vp9_lossless_test.cc b/libvpx/test/vp9_lossless_test.cc
index 441cc44..30a3118 100644
--- a/libvpx/test/vp9_lossless_test.cc
+++ b/libvpx/test/vp9_lossless_test.cc
@@ -35,7 +35,7 @@ class LossLessTest : public ::libvpx_test::EncoderTest,
}
virtual void BeginPassHook(unsigned int /*pass*/) {
- psnr_ = 0.0;
+ psnr_ = kMaxPsnr;
nframes_ = 0;
}
@@ -65,9 +65,9 @@ TEST_P(LossLessTest, TestLossLessEncoding) {
init_flags_ = VPX_CODEC_USE_PSNR;
// intentionally changed the dimension for better testing coverage
- libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 356, 284,
+ libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
timebase.den, timebase.num, 0, 30);
-
+ ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
const double psnr_lossless = GetMinPsnr();
EXPECT_GE(psnr_lossless, kMaxPsnr);
}