OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_BASE_RATE_STATISTICS_H_ | 11 #ifndef WEBRTC_RTC_BASE_RATE_STATISTICS_H_ |
12 #define WEBRTC_BASE_RATE_STATISTICS_H_ | 12 #define WEBRTC_RTC_BASE_RATE_STATISTICS_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 | 15 |
16 #include "webrtc/base/optional.h" | 16 #include "webrtc/base/optional.h" |
17 #include "webrtc/typedefs.h" | 17 #include "webrtc/typedefs.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 | 20 |
21 class RateStatistics { | 21 class RateStatistics { |
22 public: | 22 public: |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 | 74 |
75 // To convert counts/ms to desired units | 75 // To convert counts/ms to desired units |
76 const float scale_; | 76 const float scale_; |
77 | 77 |
78 // The window sizes, in ms, over which the rate is calculated. | 78 // The window sizes, in ms, over which the rate is calculated. |
79 const int64_t max_window_size_ms_; | 79 const int64_t max_window_size_ms_; |
80 int64_t current_window_size_ms_; | 80 int64_t current_window_size_ms_; |
81 }; | 81 }; |
82 } // namespace webrtc | 82 } // namespace webrtc |
83 | 83 |
84 #endif // WEBRTC_BASE_RATE_STATISTICS_H_ | 84 #endif // WEBRTC_RTC_BASE_RATE_STATISTICS_H_ |
OLD | NEW |