HomeSort by relevance Sort by last modified time
    Searched refs:norm_drift_time (Results 1 - 2 of 2) sorted by null

  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
webrtc_rendering_stats.py 264 def _GetSmoothnessStats(self, norm_drift_time):
275 norm_drift_time: normalized drift time.
283 [x for x in norm_drift_time if abs(x) > 2 * VSYNC_DURATION])
285 100.0 * frames_severely_out_of_sync / len(norm_drift_time))
289 [x for x in norm_drift_time if abs(x) > VSYNC_DURATION])
291 100.0 * frames_out_of_sync / len(norm_drift_time))
298 SEVERITY * frames_severely_out_of_sync) / len(norm_drift_time)
352 norm_drift_time = [abs(x - mean_drift_time) for x in drift_time]
354 smoothness_stats = self._GetSmoothnessStats(norm_drift_time)
webrtc_rendering_stats_unittest.py 180 norm_drift_time = [5948.2857142857138, 9383.7142857142862,
191 stats_parser._GetSmoothnessStats(norm_drift_time))
194 norm_drift_time = [15948.285714285714, 9383.714285714286,
205 stats_parser._GetSmoothnessStats(norm_drift_time))

Completed in 590 milliseconds