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 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 #include "webrtc/modules/congestion_controller/include/send_side_congestion_cont
roller.h" | 41 #include "webrtc/modules/congestion_controller/include/send_side_congestion_cont
roller.h" |
42 #include "webrtc/modules/pacing/paced_sender.h" | 42 #include "webrtc/modules/pacing/paced_sender.h" |
43 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" | 43 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" |
44 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" | 44 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
45 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 45 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" |
46 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" | 46 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" |
47 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" | 47 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" |
48 #include "webrtc/modules/utility/include/process_thread.h" | 48 #include "webrtc/modules/utility/include/process_thread.h" |
49 #include "webrtc/system_wrappers/include/clock.h" | 49 #include "webrtc/system_wrappers/include/clock.h" |
50 #include "webrtc/system_wrappers/include/cpu_info.h" | 50 #include "webrtc/system_wrappers/include/cpu_info.h" |
51 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | |
52 #include "webrtc/system_wrappers/include/metrics.h" | 51 #include "webrtc/system_wrappers/include/metrics.h" |
53 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" | 52 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" |
54 #include "webrtc/system_wrappers/include/trace.h" | 53 #include "webrtc/system_wrappers/include/trace.h" |
55 #include "webrtc/video/call_stats.h" | 54 #include "webrtc/video/call_stats.h" |
56 #include "webrtc/video/send_delay_stats.h" | 55 #include "webrtc/video/send_delay_stats.h" |
57 #include "webrtc/video/stats_counter.h" | 56 #include "webrtc/video/stats_counter.h" |
58 #include "webrtc/video/video_receive_stream.h" | 57 #include "webrtc/video/video_receive_stream.h" |
59 #include "webrtc/video/video_send_stream.h" | 58 #include "webrtc/video/video_send_stream.h" |
60 #include "webrtc/video/vie_remb.h" | 59 #include "webrtc/video/vie_remb.h" |
61 | 60 |
(...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1327 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) { | 1326 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) { |
1328 receive_side_cc_.OnReceivedPacket( | 1327 receive_side_cc_.OnReceivedPacket( |
1329 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(), | 1328 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(), |
1330 header); | 1329 header); |
1331 } | 1330 } |
1332 } | 1331 } |
1333 | 1332 |
1334 } // namespace internal | 1333 } // namespace internal |
1335 | 1334 |
1336 } // namespace webrtc | 1335 } // namespace webrtc |
OLD | NEW |