| 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/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/logging.h" | 14 #include "webrtc/base/logging.h" |
| 15 #include "webrtc/base/thread_annotations.h" | 15 #include "webrtc/base/thread_annotations.h" |
| 16 #include "webrtc/common.h" | 16 #include "webrtc/common.h" |
| 17 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" | 17 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" |
| 18 #include "webrtc/modules/pacing/paced_sender.h" | 18 #include "webrtc/modules/pacing/paced_sender.h" |
| 19 #include "webrtc/modules/pacing/packet_router.h" | 19 #include "webrtc/modules/pacing/packet_router.h" |
| 20 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" | 20 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" |
| 21 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_s
end_time.h" | 21 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_s
end_time.h" |
| 22 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_singl
e_stream.h" | 22 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_singl
e_stream.h" |
| 23 #include "webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h" | 23 #include "webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h" |
| 24 #include "webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.h" | 24 #include "webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.h" |
| 25 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" | 25 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" |
| 26 #include "webrtc/modules/utility/include/process_thread.h" | 26 #include "webrtc/modules/utility/include/process_thread.h" |
| 27 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 27 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
| 28 #include "webrtc/video/call_stats.h" | 28 #include "webrtc/video_engine/call_stats.h" |
| 29 #include "webrtc/video/payload_router.h" | 29 #include "webrtc/video_engine/payload_router.h" |
| 30 #include "webrtc/video/vie_encoder.h" | 30 #include "webrtc/video_engine/vie_encoder.h" |
| 31 #include "webrtc/video/vie_remb.h" | 31 #include "webrtc/video_engine/vie_remb.h" |
| 32 #include "webrtc/voice_engine/include/voe_video_sync.h" | 32 #include "webrtc/voice_engine/include/voe_video_sync.h" |
| 33 | 33 |
| 34 namespace webrtc { | 34 namespace webrtc { |
| 35 namespace { | 35 namespace { |
| 36 | 36 |
| 37 static const uint32_t kTimeOffsetSwitchThreshold = 30; | 37 static const uint32_t kTimeOffsetSwitchThreshold = 30; |
| 38 | 38 |
| 39 class WrappingBitrateEstimator : public RemoteBitrateEstimator { | 39 class WrappingBitrateEstimator : public RemoteBitrateEstimator { |
| 40 public: | 40 public: |
| 41 WrappingBitrateEstimator(RemoteBitrateObserver* observer, Clock* clock) | 41 WrappingBitrateEstimator(RemoteBitrateObserver* observer, Clock* clock) |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 } | 285 } |
| 286 } | 286 } |
| 287 | 287 |
| 288 void CongestionController::OnSentPacket(const rtc::SentPacket& sent_packet) { | 288 void CongestionController::OnSentPacket(const rtc::SentPacket& sent_packet) { |
| 289 if (transport_feedback_adapter_) { | 289 if (transport_feedback_adapter_) { |
| 290 transport_feedback_adapter_->OnSentPacket(sent_packet.packet_id, | 290 transport_feedback_adapter_->OnSentPacket(sent_packet.packet_id, |
| 291 sent_packet.send_time_ms); | 291 sent_packet.send_time_ms); |
| 292 } | 292 } |
| 293 } | 293 } |
| 294 } // namespace webrtc | 294 } // namespace webrtc |
| OLD | NEW |