| 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 21 matching lines...) Expand all Loading... |
| 32 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" | 32 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" |
| 33 #include "webrtc/modules/pacing/paced_sender.h" | 33 #include "webrtc/modules/pacing/paced_sender.h" |
| 34 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" | 34 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
| 35 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 35 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" |
| 36 #include "webrtc/modules/utility/include/process_thread.h" | 36 #include "webrtc/modules/utility/include/process_thread.h" |
| 37 #include "webrtc/system_wrappers/include/cpu_info.h" | 37 #include "webrtc/system_wrappers/include/cpu_info.h" |
| 38 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 38 #include "webrtc/system_wrappers/include/critical_section_wrapper.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/call_stats.h" |
| 42 #include "webrtc/video/video_receive_stream.h" | 43 #include "webrtc/video/video_receive_stream.h" |
| 43 #include "webrtc/video/video_send_stream.h" | 44 #include "webrtc/video/video_send_stream.h" |
| 44 #include "webrtc/video_engine/call_stats.h" | |
| 45 #include "webrtc/voice_engine/include/voe_codec.h" | 45 #include "webrtc/voice_engine/include/voe_codec.h" |
| 46 | 46 |
| 47 namespace webrtc { | 47 namespace webrtc { |
| 48 | 48 |
| 49 const int Call::Config::kDefaultStartBitrateBps = 300000; | 49 const int Call::Config::kDefaultStartBitrateBps = 300000; |
| 50 | 50 |
| 51 namespace internal { | 51 namespace internal { |
| 52 | 52 |
| 53 class Call : public webrtc::Call, public PacketReceiver, | 53 class Call : public webrtc::Call, public PacketReceiver, |
| 54 public BitrateObserver { | 54 public BitrateObserver { |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 // thread. Then this check can be enabled. | 737 // thread. Then this check can be enabled. |
| 738 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread()); | 738 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread()); |
| 739 if (RtpHeaderParser::IsRtcp(packet, length)) | 739 if (RtpHeaderParser::IsRtcp(packet, length)) |
| 740 return DeliverRtcp(media_type, packet, length); | 740 return DeliverRtcp(media_type, packet, length); |
| 741 | 741 |
| 742 return DeliverRtp(media_type, packet, length, packet_time); | 742 return DeliverRtp(media_type, packet, length, packet_time); |
| 743 } | 743 } |
| 744 | 744 |
| 745 } // namespace internal | 745 } // namespace internal |
| 746 } // namespace webrtc | 746 } // namespace webrtc |
| OLD | NEW |