From 6ff76c74045c80dd20ec261f49614cf35ed18c13 Mon Sep 17 00:00:00 2001 From: "marpan@webrtc.org" Date: Mon, 8 Apr 2013 20:32:48 +0000 Subject: [PATCH] Reduce execution time of rate control test. TBR=mikhal@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1289005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3782 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/video_coding/codecs/test_framework/unit_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/video_coding/codecs/test_framework/unit_test.cc b/webrtc/modules/video_coding/codecs/test_framework/unit_test.cc index 9b426ceba..f1a7e2d4e 100644 --- a/webrtc/modules/video_coding/codecs/test_framework/unit_test.cc +++ b/webrtc/modules/video_coding/codecs/test_framework/unit_test.cc @@ -728,7 +728,7 @@ UnitTest::RateControlTests() EXPECT_TRUE(_decoder->Reset() == WEBRTC_VIDEO_CODEC_OK); EXPECT_TRUE(_decoder->InitDecode(&_inst, 1) == WEBRTC_VIDEO_CODEC_OK); // add: should also be 0, and 1 - const int bitRate[] = {50, 100, 500, 1000, 2000}; + const int bitRate[] = {100, 500}; const int nBitrates = sizeof(bitRate)/sizeof(*bitRate); printf("\nRate control test\n");