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

Side by Side Diff: webrtc/call/congestion_controller.cc

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! 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
« no previous file with comments | « webrtc/call/call_perf_tests.cc ('k') | webrtc/call/rtc_event_log.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 #include "webrtc/call/congestion_controller.h" 11 #include "webrtc/call/congestion_controller.h"
12 12
13 #include "webrtc/base/checks.h" 13 #include "webrtc/base/checks.h"
14 #include "webrtc/base/thread_annotations.h" 14 #include "webrtc/base/thread_annotations.h"
15 #include "webrtc/common.h" 15 #include "webrtc/common.h"
16 #include "webrtc/modules/pacing/include/paced_sender.h" 16 #include "webrtc/modules/pacing/include/paced_sender.h"
17 #include "webrtc/modules/pacing/include/packet_router.h" 17 #include "webrtc/modules/pacing/include/packet_router.h"
18 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" 18 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h"
19 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_s end_time.h" 19 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_s end_time.h"
20 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_singl e_stream.h" 20 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_singl e_stream.h"
21 #include "webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h" 21 #include "webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h"
22 #include "webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.h" 22 #include "webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.h"
23 #include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp.h" 23 #include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp.h"
24 #include "webrtc/modules/utility/interface/process_thread.h" 24 #include "webrtc/modules/utility/interface/process_thread.h"
25 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" 25 #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
26 #include "webrtc/system_wrappers/interface/logging.h" 26 #include "webrtc/system_wrappers/include/logging.h"
27 #include "webrtc/video_engine/call_stats.h" 27 #include "webrtc/video_engine/call_stats.h"
28 #include "webrtc/video_engine/payload_router.h" 28 #include "webrtc/video_engine/payload_router.h"
29 #include "webrtc/video_engine/vie_encoder.h" 29 #include "webrtc/video_engine/vie_encoder.h"
30 #include "webrtc/video_engine/vie_remb.h" 30 #include "webrtc/video_engine/vie_remb.h"
31 #include "webrtc/voice_engine/include/voe_video_sync.h" 31 #include "webrtc/voice_engine/include/voe_video_sync.h"
32 32
33 namespace webrtc { 33 namespace webrtc {
34 namespace { 34 namespace {
35 35
36 static const uint32_t kTimeOffsetSwitchThreshold = 30; 36 static const uint32_t kTimeOffsetSwitchThreshold = 30;
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 pad_up_to_bitrate_bps / 1000); 295 pad_up_to_bitrate_bps / 1000);
296 } 296 }
297 297
298 void CongestionController::OnSentPacket(const rtc::SentPacket& sent_packet) { 298 void CongestionController::OnSentPacket(const rtc::SentPacket& sent_packet) {
299 if (transport_feedback_adapter_) { 299 if (transport_feedback_adapter_) {
300 transport_feedback_adapter_->OnSentPacket(sent_packet.packet_id, 300 transport_feedback_adapter_->OnSentPacket(sent_packet.packet_id,
301 sent_packet.send_time_ms); 301 sent_packet.send_time_ms);
302 } 302 }
303 } 303 }
304 } // namespace webrtc 304 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/call/call_perf_tests.cc ('k') | webrtc/call/rtc_event_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698