| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 |
| 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ | 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ |
| 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ | 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ |
| 13 | 13 |
| 14 #include <map> | 14 #include <map> |
| 15 #include <memory> | 15 #include <memory> |
| 16 #include <utility> | 16 #include <utility> |
| 17 #include <vector> | 17 #include <vector> |
| 18 | 18 |
| 19 #include "webrtc/api/call/transport.h" |
| 19 #include "webrtc/base/constructormagic.h" | 20 #include "webrtc/base/constructormagic.h" |
| 20 #include "webrtc/base/criticalsection.h" | 21 #include "webrtc/base/criticalsection.h" |
| 21 #include "webrtc/base/deprecation.h" | 22 #include "webrtc/base/deprecation.h" |
| 22 #include "webrtc/base/optional.h" | 23 #include "webrtc/base/optional.h" |
| 23 #include "webrtc/base/random.h" | 24 #include "webrtc/base/random.h" |
| 24 #include "webrtc/base/rate_statistics.h" | 25 #include "webrtc/base/rate_statistics.h" |
| 25 #include "webrtc/base/thread_annotations.h" | 26 #include "webrtc/base/thread_annotations.h" |
| 26 #include "webrtc/common_types.h" | 27 #include "webrtc/common_types.h" |
| 27 #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" | 28 #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" |
| 28 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 29 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
| 29 #include "webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h" | 30 #include "webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h" |
| 30 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" | 31 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" |
| 31 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_history.h" | 32 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_history.h" |
| 32 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" | 33 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" |
| 33 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 34 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
| 34 #include "webrtc/modules/rtp_rtcp/source/ssrc_database.h" | 35 #include "webrtc/modules/rtp_rtcp/source/ssrc_database.h" |
| 35 #include "webrtc/transport.h" | |
| 36 | 36 |
| 37 namespace webrtc { | 37 namespace webrtc { |
| 38 | 38 |
| 39 class OverheadObserver; | 39 class OverheadObserver; |
| 40 class RateLimiter; | 40 class RateLimiter; |
| 41 class RtcEventLog; | 41 class RtcEventLog; |
| 42 class RtpPacketToSend; | 42 class RtpPacketToSend; |
| 43 class RTPSenderAudio; | 43 class RTPSenderAudio; |
| 44 class RTPSenderVideo; | 44 class RTPSenderVideo; |
| 45 | 45 |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 | 340 |
| 341 RateLimiter* const retransmission_rate_limiter_; | 341 RateLimiter* const retransmission_rate_limiter_; |
| 342 OverheadObserver* overhead_observer_; | 342 OverheadObserver* overhead_observer_; |
| 343 | 343 |
| 344 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); | 344 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); |
| 345 }; | 345 }; |
| 346 | 346 |
| 347 } // namespace webrtc | 347 } // namespace webrtc |
| 348 | 348 |
| 349 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ | 349 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ |
| OLD | NEW |