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 * Usage: this class will register multiple RtcpBitrateObserver's one at each | 10 * Usage: this class will register multiple RtcpBitrateObserver's one at each |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 virtual RtcpBandwidthObserver* CreateRtcpBandwidthObserver() = 0; | 63 virtual RtcpBandwidthObserver* CreateRtcpBandwidthObserver() = 0; |
64 | 64 |
65 // Deprecated | 65 // Deprecated |
66 virtual void SetStartBitrate(int start_bitrate_bps) = 0; | 66 virtual void SetStartBitrate(int start_bitrate_bps) = 0; |
67 // Deprecated | 67 // Deprecated |
68 virtual void SetMinMaxBitrate(int min_bitrate_bps, int max_bitrate_bps) = 0; | 68 virtual void SetMinMaxBitrate(int min_bitrate_bps, int max_bitrate_bps) = 0; |
69 virtual void SetBitrates(int start_bitrate_bps, | 69 virtual void SetBitrates(int start_bitrate_bps, |
70 int min_bitrate_bps, | 70 int min_bitrate_bps, |
71 int max_bitrate_bps) = 0; | 71 int max_bitrate_bps) = 0; |
72 | 72 |
73 virtual void ResetBitrates(int bitrate_bps, | |
74 int min_bitrate_bps, | |
75 int max_bitrate_bps) = 0; | |
76 | |
77 virtual void UpdateDelayBasedEstimate(uint32_t bitrate_bps) = 0; | 73 virtual void UpdateDelayBasedEstimate(uint32_t bitrate_bps) = 0; |
78 | 74 |
79 virtual void SetEventLog(RtcEventLog* event_log) = 0; | 75 virtual void SetEventLog(RtcEventLog* event_log) = 0; |
80 | 76 |
81 // Gets the available payload bandwidth in bits per second. Note that | 77 // Gets the available payload bandwidth in bits per second. Note that |
82 // this bandwidth excludes packet headers. | 78 // this bandwidth excludes packet headers. |
83 virtual bool AvailableBandwidth(uint32_t* bandwidth) const = 0; | 79 virtual bool AvailableBandwidth(uint32_t* bandwidth) const = 0; |
84 | 80 |
85 virtual void SetReservedBitrate(uint32_t reserved_bitrate_bps) = 0; | 81 virtual void SetReservedBitrate(uint32_t reserved_bitrate_bps) = 0; |
86 | 82 |
87 virtual bool GetNetworkParameters(uint32_t* bitrate, | 83 virtual bool GetNetworkParameters(uint32_t* bitrate, |
88 uint8_t* fraction_loss, | 84 uint8_t* fraction_loss, |
89 int64_t* rtt) = 0; | 85 int64_t* rtt) = 0; |
90 }; | 86 }; |
91 } // namespace webrtc | 87 } // namespace webrtc |
92 #endif // WEBRTC_MODULES_BITRATE_CONTROLLER_INCLUDE_BITRATE_CONTROLLER_H_ | 88 #endif // WEBRTC_MODULES_BITRATE_CONTROLLER_INCLUDE_BITRATE_CONTROLLER_H_ |
OLD | NEW |