| 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 #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 Loading... |
| 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 |
| OLD | NEW |