forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchromoting_stats.cc
32 lines (23 loc) · 892 Bytes
/
chromoting_stats.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/client/chromoting_stats.h"
namespace {
// The default window of bandwidth and frame rate in seconds.
const int kTimeWindow = 3;
// We take the last 10 latency numbers and report the average.
const int kLatencyWindow = 10;
} // namespace
namespace remoting {
ChromotingStats::ChromotingStats()
: video_bandwidth_(base::TimeDelta::FromSeconds(kTimeWindow)),
video_frame_rate_(base::TimeDelta::FromSeconds(kTimeWindow)),
video_capture_ms_(kLatencyWindow),
video_encode_ms_(kLatencyWindow),
video_decode_ms_(kLatencyWindow),
video_paint_ms_(kLatencyWindow),
round_trip_ms_(kLatencyWindow) {
}
ChromotingStats::~ChromotingStats() {
}
} // namespace remoting