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 | 11 |
12 #include "webrtc/modules/bitrate_controller/bitrate_controller_impl.h" | 12 #include "webrtc/modules/bitrate_controller/bitrate_controller_impl.h" |
13 | 13 |
14 #include <algorithm> | 14 #include <algorithm> |
15 #include <utility> | 15 #include <utility> |
16 | 16 |
17 #include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h" | 17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 | 20 |
21 class BitrateControllerImpl::RtcpBandwidthObserverImpl | 21 class BitrateControllerImpl::RtcpBandwidthObserverImpl |
22 : public RtcpBandwidthObserver { | 22 : public RtcpBandwidthObserver { |
23 public: | 23 public: |
24 explicit RtcpBandwidthObserverImpl(BitrateControllerImpl* owner) | 24 explicit RtcpBandwidthObserverImpl(BitrateControllerImpl* owner) |
25 : owner_(owner) { | 25 : owner_(owner) { |
26 } | 26 } |
27 virtual ~RtcpBandwidthObserverImpl() { | 27 virtual ~RtcpBandwidthObserverImpl() { |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 bandwidth_estimation_.CurrentEstimate(&bitrate, &fraction_loss, &rtt); | 212 bandwidth_estimation_.CurrentEstimate(&bitrate, &fraction_loss, &rtt); |
213 if (bitrate > 0) { | 213 if (bitrate > 0) { |
214 bitrate = bitrate - std::min<int>(bitrate, reserved_bitrate_bps_); | 214 bitrate = bitrate - std::min<int>(bitrate, reserved_bitrate_bps_); |
215 bitrate = std::max(bitrate, bandwidth_estimation_.GetMinBitrate()); | 215 bitrate = std::max(bitrate, bandwidth_estimation_.GetMinBitrate()); |
216 *bandwidth = bitrate; | 216 *bandwidth = bitrate; |
217 return true; | 217 return true; |
218 } | 218 } |
219 return false; | 219 return false; |
220 } | 220 } |
221 } // namespace webrtc | 221 } // namespace webrtc |
OLD | NEW |