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 11 matching lines...) Expand all Loading... |
22 #include "webrtc/base/thread_annotations.h" | 22 #include "webrtc/base/thread_annotations.h" |
23 #include "webrtc/base/thread_checker.h" | 23 #include "webrtc/base/thread_checker.h" |
24 #include "webrtc/base/trace_event.h" | 24 #include "webrtc/base/trace_event.h" |
25 #include "webrtc/call.h" | 25 #include "webrtc/call.h" |
26 #include "webrtc/call/bitrate_allocator.h" | 26 #include "webrtc/call/bitrate_allocator.h" |
27 #include "webrtc/call/congestion_controller.h" | 27 #include "webrtc/call/congestion_controller.h" |
28 #include "webrtc/call/rtc_event_log.h" | 28 #include "webrtc/call/rtc_event_log.h" |
29 #include "webrtc/common.h" | 29 #include "webrtc/common.h" |
30 #include "webrtc/config.h" | 30 #include "webrtc/config.h" |
31 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" | 31 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" |
32 #include "webrtc/modules/pacing/include/paced_sender.h" | 32 #include "webrtc/modules/pacing/paced_sender.h" |
33 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" | 33 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
34 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 34 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" |
35 #include "webrtc/modules/utility/include/process_thread.h" | 35 #include "webrtc/modules/utility/include/process_thread.h" |
36 #include "webrtc/system_wrappers/include/cpu_info.h" | 36 #include "webrtc/system_wrappers/include/cpu_info.h" |
37 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 37 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
38 #include "webrtc/system_wrappers/include/logging.h" | 38 #include "webrtc/system_wrappers/include/logging.h" |
39 #include "webrtc/system_wrappers/include/metrics.h" | 39 #include "webrtc/system_wrappers/include/metrics.h" |
40 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" | 40 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" |
41 #include "webrtc/system_wrappers/include/trace.h" | 41 #include "webrtc/system_wrappers/include/trace.h" |
42 #include "webrtc/video/video_receive_stream.h" | 42 #include "webrtc/video/video_receive_stream.h" |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 // thread. Then this check can be enabled. | 688 // thread. Then this check can be enabled. |
689 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread()); | 689 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread()); |
690 if (RtpHeaderParser::IsRtcp(packet, length)) | 690 if (RtpHeaderParser::IsRtcp(packet, length)) |
691 return DeliverRtcp(media_type, packet, length); | 691 return DeliverRtcp(media_type, packet, length); |
692 | 692 |
693 return DeliverRtp(media_type, packet, length, packet_time); | 693 return DeliverRtp(media_type, packet, length, packet_time); |
694 } | 694 } |
695 | 695 |
696 } // namespace internal | 696 } // namespace internal |
697 } // namespace webrtc | 697 } // namespace webrtc |
OLD | NEW |