summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-06-30 04:10:41 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-06-30 04:10:41 +0000
commit275f8129e0acaf55753436cd4c86162e4154d75c (patch)
treedaf770f0fe9a562bd45ec604d829e5334c77301a
parent6d78a32a0e3c02204e02ff225ba0a1cd01eaa1c8 (diff)
parent68278ac5345032a3ee4d04d0d6bbef13019fa21d (diff)
downloadcts-oreo-r4-release.tar.gz
Change-Id: I885f5f290d2e60f2df0c6c777139915c42541607
-rw-r--r--common/device-side/util/src/com/android/compatibility/common/util/MediaPerfUtils.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/device-side/util/src/com/android/compatibility/common/util/MediaPerfUtils.java b/common/device-side/util/src/com/android/compatibility/common/util/MediaPerfUtils.java
index 23d7e969a96..469e99a9d6b 100644
--- a/common/device-side/util/src/com/android/compatibility/common/util/MediaPerfUtils.java
+++ b/common/device-side/util/src/com/android/compatibility/common/util/MediaPerfUtils.java
@@ -31,10 +31,10 @@ public class MediaPerfUtils {
private static final int MOVING_AVERAGE_NUM_FRAMES = 10;
private static final int MOVING_AVERAGE_WINDOW_MS = 1000;
- // allow a variance of 2.5x for measured frame rates (e.g. 40% of lower-limit to 2.5x of
- // upper-limit of the published values). Also allow an extra 20% margin. This also acts as
+ // allow a variance of 2x for measured frame rates (e.g. half of lower-limit to double of
+ // upper-limit of the published values). Also allow an extra 10% margin. This also acts as
// a limit for the size of the published rates (e.g. upper-limit / lower-limit <= tolerance).
- private static final double FRAMERATE_TOLERANCE = 2.5 * 1.2;
+ private static final double FRAMERATE_TOLERANCE = 2.0 * 1.1;
/*
* ------------------ HELPER METHODS FOR ACHIEVABLE FRAME RATES ------------------