OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 #include "webrtc/video/video_send_stream.h" | 10 #include "webrtc/video/video_send_stream.h" |
11 | 11 |
12 #include <algorithm> | 12 #include <algorithm> |
13 #include <cmath> | 13 #include <cmath> |
14 #include <sstream> | 14 #include <sstream> |
15 #include <string> | 15 #include <string> |
16 #include <utility> | 16 #include <utility> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
| 19 #include "webrtc/base/checks.h" |
| 20 #include "webrtc/base/file.h" |
| 21 #include "webrtc/base/location.h" |
| 22 #include "webrtc/base/logging.h" |
| 23 #include "webrtc/base/trace_event.h" |
| 24 #include "webrtc/base/weak_ptr.h" |
19 #include "webrtc/call/rtp_transport_controller_send_interface.h" | 25 #include "webrtc/call/rtp_transport_controller_send_interface.h" |
20 #include "webrtc/common_types.h" | 26 #include "webrtc/common_types.h" |
21 #include "webrtc/common_video/include/video_bitrate_allocator.h" | 27 #include "webrtc/common_video/include/video_bitrate_allocator.h" |
22 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" | 28 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" |
23 #include "webrtc/modules/congestion_controller/include/send_side_congestion_cont
roller.h" | 29 #include "webrtc/modules/congestion_controller/include/send_side_congestion_cont
roller.h" |
24 #include "webrtc/modules/pacing/alr_detector.h" | 30 #include "webrtc/modules/pacing/alr_detector.h" |
25 #include "webrtc/modules/pacing/packet_router.h" | 31 #include "webrtc/modules/pacing/packet_router.h" |
26 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" | 32 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" |
27 #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" | 33 #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" |
28 #include "webrtc/modules/utility/include/process_thread.h" | 34 #include "webrtc/modules/utility/include/process_thread.h" |
29 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" | 35 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" |
30 #include "webrtc/rtc_base/checks.h" | |
31 #include "webrtc/rtc_base/file.h" | |
32 #include "webrtc/rtc_base/location.h" | |
33 #include "webrtc/rtc_base/logging.h" | |
34 #include "webrtc/rtc_base/trace_event.h" | |
35 #include "webrtc/rtc_base/weak_ptr.h" | |
36 #include "webrtc/system_wrappers/include/field_trial.h" | 36 #include "webrtc/system_wrappers/include/field_trial.h" |
37 #include "webrtc/video/call_stats.h" | 37 #include "webrtc/video/call_stats.h" |
38 #include "webrtc/video/payload_router.h" | 38 #include "webrtc/video/payload_router.h" |
39 #include "webrtc/video_send_stream.h" | 39 #include "webrtc/video_send_stream.h" |
40 | 40 |
41 namespace webrtc { | 41 namespace webrtc { |
42 | 42 |
43 static const int kMinSendSidePacketHistorySize = 600; | 43 static const int kMinSendSidePacketHistorySize = 600; |
44 namespace { | 44 namespace { |
45 | 45 |
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1361 std::min(config_->rtp.max_packet_size, | 1361 std::min(config_->rtp.max_packet_size, |
1362 kPathMTU - transport_overhead_bytes_per_packet_); | 1362 kPathMTU - transport_overhead_bytes_per_packet_); |
1363 | 1363 |
1364 for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_) { | 1364 for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_) { |
1365 rtp_rtcp->SetMaxRtpPacketSize(rtp_packet_size); | 1365 rtp_rtcp->SetMaxRtpPacketSize(rtp_packet_size); |
1366 } | 1366 } |
1367 } | 1367 } |
1368 | 1368 |
1369 } // namespace internal | 1369 } // namespace internal |
1370 } // namespace webrtc | 1370 } // namespace webrtc |
OLD | NEW |