| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ | 11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ |
| 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ | 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ |
| 13 | 13 |
| 14 #include "webrtc/base/optional.h" | 14 #include "webrtc/base/optional.h" |
| 15 #include "webrtc/typedefs.h" | 15 #include "webrtc/typedefs.h" |
| 16 | 16 |
| 17 #define BWE_MAX(a, b) ((a) > (b) ? (a) : (b)) | 17 #define BWE_MAX(a, b) ((a) > (b) ? (a) : (b)) |
| 18 #define BWE_MIN(a, b) ((a) < (b) ? (a) : (b)) | 18 #define BWE_MIN(a, b) ((a) < (b) ? (a) : (b)) |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 static const int64_t kBitrateWindowMs = 1000; | 22 static const int64_t kBitrateWindowMs = 1000; |
| 23 | 23 |
| 24 extern const char* kBweTypeHistogram; |
| 25 |
| 26 enum BweNames { |
| 27 kReceiverNoExtension = 0, |
| 28 kReceiverTOffset = 1, |
| 29 kReceiverAbsSendTime = 2, |
| 30 kSendSideTransportSeqNum = 3, |
| 31 kBweNamesMax = 4 |
| 32 }; |
| 33 |
| 24 enum BandwidthUsage { | 34 enum BandwidthUsage { |
| 25 kBwNormal = 0, | 35 kBwNormal = 0, |
| 26 kBwUnderusing = 1, | 36 kBwUnderusing = 1, |
| 27 kBwOverusing = 2, | 37 kBwOverusing = 2, |
| 28 }; | 38 }; |
| 29 | 39 |
| 30 enum RateControlState { kRcHold, kRcIncrease, kRcDecrease }; | 40 enum RateControlState { kRcHold, kRcIncrease, kRcDecrease }; |
| 31 | 41 |
| 32 enum RateControlRegion { kRcNearMax, kRcAboveMax, kRcMaxUnknown }; | 42 enum RateControlRegion { kRcNearMax, kRcAboveMax, kRcMaxUnknown }; |
| 33 | 43 |
| 34 struct RateControlInput { | 44 struct RateControlInput { |
| 35 RateControlInput(BandwidthUsage bw_state, | 45 RateControlInput(BandwidthUsage bw_state, |
| 36 const rtc::Optional<uint32_t>& incoming_bitrate, | 46 const rtc::Optional<uint32_t>& incoming_bitrate, |
| 37 double noise_var) | 47 double noise_var) |
| 38 : bw_state(bw_state), | 48 : bw_state(bw_state), |
| 39 incoming_bitrate(incoming_bitrate), | 49 incoming_bitrate(incoming_bitrate), |
| 40 noise_var(noise_var) {} | 50 noise_var(noise_var) {} |
| 41 | 51 |
| 42 BandwidthUsage bw_state; | 52 BandwidthUsage bw_state; |
| 43 rtc::Optional<uint32_t> incoming_bitrate; | 53 rtc::Optional<uint32_t> incoming_bitrate; |
| 44 double noise_var; | 54 double noise_var; |
| 45 }; | 55 }; |
| 46 } // namespace webrtc | 56 } // namespace webrtc |
| 47 | 57 |
| 48 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ | 58 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ |
| OLD | NEW |