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" | |
25 #include "webrtc/call/rtp_transport_controller_send_interface.h" | 19 #include "webrtc/call/rtp_transport_controller_send_interface.h" |
26 #include "webrtc/common_types.h" | 20 #include "webrtc/common_types.h" |
27 #include "webrtc/common_video/include/video_bitrate_allocator.h" | 21 #include "webrtc/common_video/include/video_bitrate_allocator.h" |
28 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" | 22 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" |
29 #include "webrtc/modules/congestion_controller/include/send_side_congestion_cont
roller.h" | 23 #include "webrtc/modules/congestion_controller/include/send_side_congestion_cont
roller.h" |
30 #include "webrtc/modules/pacing/packet_router.h" | 24 #include "webrtc/modules/pacing/packet_router.h" |
31 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" | 25 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" |
32 #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" | 26 #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" |
33 #include "webrtc/modules/utility/include/process_thread.h" | 27 #include "webrtc/modules/utility/include/process_thread.h" |
34 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" | 28 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" |
| 29 #include "webrtc/rtc_base/checks.h" |
| 30 #include "webrtc/rtc_base/file.h" |
| 31 #include "webrtc/rtc_base/location.h" |
| 32 #include "webrtc/rtc_base/logging.h" |
| 33 #include "webrtc/rtc_base/trace_event.h" |
| 34 #include "webrtc/rtc_base/weak_ptr.h" |
35 #include "webrtc/system_wrappers/include/field_trial.h" | 35 #include "webrtc/system_wrappers/include/field_trial.h" |
36 #include "webrtc/video/call_stats.h" | 36 #include "webrtc/video/call_stats.h" |
37 #include "webrtc/video/payload_router.h" | 37 #include "webrtc/video/payload_router.h" |
38 #include "webrtc/video_send_stream.h" | 38 #include "webrtc/video_send_stream.h" |
39 | 39 |
40 namespace webrtc { | 40 namespace webrtc { |
41 | 41 |
42 static const int kMinSendSidePacketHistorySize = 600; | 42 static const int kMinSendSidePacketHistorySize = 600; |
43 namespace { | 43 namespace { |
44 | 44 |
(...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 std::min(config_->rtp.max_packet_size, | 1341 std::min(config_->rtp.max_packet_size, |
1342 kPathMTU - transport_overhead_bytes_per_packet_); | 1342 kPathMTU - transport_overhead_bytes_per_packet_); |
1343 | 1343 |
1344 for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_) { | 1344 for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_) { |
1345 rtp_rtcp->SetMaxRtpPacketSize(rtp_packet_size); | 1345 rtp_rtcp->SetMaxRtpPacketSize(rtp_packet_size); |
1346 } | 1346 } |
1347 } | 1347 } |
1348 | 1348 |
1349 } // namespace internal | 1349 } // namespace internal |
1350 } // namespace webrtc | 1350 } // namespace webrtc |
OLD | NEW |