MotionVectorTest: reduce video resolution This is a work around to avoid out of memory crashes for 32 bit platforms in nightly tests. Change-Id: I2cd009dcfea1ae61832da35e4e4e23dc7bb88b16
diff --git a/test/motion_vector_test.cc b/test/motion_vector_test.cc index fe20fd1..9b6f46a 100644 --- a/test/motion_vector_test.cc +++ b/test/motion_vector_test.cc
@@ -82,7 +82,7 @@ // Reduce the test clip's resolution while testing on 32-bit system. if (sizeof(void *) == 4) { width = 2048; - height = 1080; + height = 540; } cfg_.rc_target_bitrate = 24000;