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

Side by Side Diff: webrtc/modules/pacing/paced_sender.cc

Issue 1674423002: Enable cpplint for webrtc/modules/pacing and fix all uncovered cpplint errors. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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
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 #include "webrtc/modules/pacing/paced_sender.h" 11 #include "webrtc/modules/pacing/paced_sender.h"
12 12
13 #include <algorithm>
13 #include <map> 14 #include <map>
14 #include <queue> 15 #include <queue>
15 #include <set> 16 #include <set>
17 #include <vector>
16 18
17 #include "webrtc/base/checks.h" 19 #include "webrtc/base/checks.h"
18 #include "webrtc/base/logging.h" 20 #include "webrtc/base/logging.h"
19 #include "webrtc/modules/include/module_common_types.h" 21 #include "webrtc/modules/include/module_common_types.h"
20 #include "webrtc/modules/pacing/bitrate_prober.h" 22 #include "webrtc/modules/pacing/bitrate_prober.h"
21 #include "webrtc/system_wrappers/include/clock.h" 23 #include "webrtc/system_wrappers/include/clock.h"
22 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" 24 #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
23 #include "webrtc/system_wrappers/include/field_trial.h" 25 #include "webrtc/system_wrappers/include/field_trial.h"
24 26
25 namespace { 27 namespace {
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 media_budget_->UseBudget(bytes_sent); 472 media_budget_->UseBudget(bytes_sent);
471 padding_budget_->UseBudget(bytes_sent); 473 padding_budget_->UseBudget(bytes_sent);
472 } 474 }
473 } 475 }
474 476
475 void PacedSender::UpdateBytesPerInterval(int64_t delta_time_ms) { 477 void PacedSender::UpdateBytesPerInterval(int64_t delta_time_ms) {
476 media_budget_->IncreaseBudget(delta_time_ms); 478 media_budget_->IncreaseBudget(delta_time_ms);
477 padding_budget_->IncreaseBudget(delta_time_ms); 479 padding_budget_->IncreaseBudget(delta_time_ms);
478 } 480 }
479 } // namespace webrtc 481 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/pacing/mock/mock_paced_sender.h ('k') | webrtc/modules/pacing/paced_sender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698