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

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

Issue 1620003003: Enable cpplint for webrtc/modules/bitrate_controller and fix all uncovered cpplint errors. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 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 | « PRESUBMIT.py ('k') | webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc » ('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) 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 <map>
15 #include <utility> 16 #include <utility>
16 17
17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" 18 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
18 19
19 namespace webrtc { 20 namespace webrtc {
20 21
21 class BitrateControllerImpl::RtcpBandwidthObserverImpl 22 class BitrateControllerImpl::RtcpBandwidthObserverImpl
22 : public RtcpBandwidthObserver { 23 : public RtcpBandwidthObserver {
23 public: 24 public:
24 explicit RtcpBandwidthObserverImpl(BitrateControllerImpl* owner) 25 explicit RtcpBandwidthObserverImpl(BitrateControllerImpl* owner)
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 bandwidth_estimation_.CurrentEstimate(&bitrate, &fraction_loss, &rtt); 227 bandwidth_estimation_.CurrentEstimate(&bitrate, &fraction_loss, &rtt);
227 if (bitrate > 0) { 228 if (bitrate > 0) {
228 bitrate = bitrate - std::min<int>(bitrate, reserved_bitrate_bps_); 229 bitrate = bitrate - std::min<int>(bitrate, reserved_bitrate_bps_);
229 bitrate = std::max(bitrate, bandwidth_estimation_.GetMinBitrate()); 230 bitrate = std::max(bitrate, bandwidth_estimation_.GetMinBitrate());
230 *bandwidth = bitrate; 231 *bandwidth = bitrate;
231 return true; 232 return true;
232 } 233 }
233 return false; 234 return false;
234 } 235 }
235 } // namespace webrtc 236 } // namespace webrtc
OLDNEW
« no previous file with comments | « PRESUBMIT.py ('k') | webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698