From a51cb5689bd9c7feb8ea453ca41fedceafc702f6 Mon Sep 17 00:00:00 2001 From: Yaowu Xu Date: Mon, 8 May 2017 14:49:29 -0700 Subject: [PATCH] Change to use 15 frames in AqSegmentTest Change to use 15 frames only instead of 100 frames, to reduce test time. BUG=aomedia:506 Change-Id: Ib7cf48d2629e8d920f2c2b12820845618d6d58d7 --- test/aq_segment_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/aq_segment_test.cc b/test/aq_segment_test.cc index 5dc93ec79..b01f140a0 100644 --- a/test/aq_segment_test.cc +++ b/test/aq_segment_test.cc @@ -98,7 +98,7 @@ TEST_P(AqSegmentTest, TestNoMisMatchAQ4) { aq_mode_ = 4; ::libaom_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288, - 30, 1, 0, 100); + 30, 1, 0, 15); ASSERT_NO_FATAL_FAILURE(RunLoop(&video)); } @@ -112,7 +112,7 @@ TEST_P(AqSegmentTest, TestNoMisMatchExtDeltaQ) { aq_mode_ = 0; deltaq_mode_ = 2; ::libaom_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288, - 30, 1, 0, 100); + 30, 1, 0, 15); ASSERT_NO_FATAL_FAILURE(RunLoop(&video)); } -- GitLab