Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: webrtc/rtc_base/rate_statistics.h

Issue 3011943002: Move optional.h to webrtc/api/ (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/rtc_base/optional_unittest.cc ('k') | webrtc/rtc_base/rtccertificategenerator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_RTC_BASE_RATE_STATISTICS_H_ 11 #ifndef WEBRTC_RTC_BASE_RATE_STATISTICS_H_
12 #define WEBRTC_RTC_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/rtc_base/optional.h" 16 #include "webrtc/api/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:
23 static constexpr float kBpsScale = 8000.0f; 23 static constexpr float kBpsScale = 8000.0f;
24 24
25 // max_window_size_ms = Maximum window size in ms for the rate estimation. 25 // max_window_size_ms = Maximum window size in ms for the rate estimation.
26 // Initial window size is set to this, but may be changed 26 // Initial window size is set to this, but may be changed
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_RTC_BASE_RATE_STATISTICS_H_ 84 #endif // WEBRTC_RTC_BASE_RATE_STATISTICS_H_
OLDNEW
« no previous file with comments | « webrtc/rtc_base/optional_unittest.cc ('k') | webrtc/rtc_base/rtccertificategenerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698