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

Side by Side Diff: webrtc/modules/bitrate_controller/bitrate_controller_impl.cc

Issue 1417683006: modules: more interface -> include renames (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix last incorrectly wrapped pragma message Created 5 years, 1 month 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698