| 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 <list> | 14 #include <list> |
| 15 #include <map> | 15 #include <map> |
| 16 #include <utility> | 16 #include <utility> |
| 17 #include <vector> | 17 #include <vector> |
| 18 | 18 |
| 19 #include "webrtc/base/constructormagic.h" |
| 19 #include "webrtc/base/criticalsection.h" | 20 #include "webrtc/base/criticalsection.h" |
| 20 #include "webrtc/base/random.h" | 21 #include "webrtc/base/random.h" |
| 21 #include "webrtc/base/thread_annotations.h" | 22 #include "webrtc/base/thread_annotations.h" |
| 22 #include "webrtc/common_types.h" | 23 #include "webrtc/common_types.h" |
| 23 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 24 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
| 24 #include "webrtc/modules/rtp_rtcp/source/bitrate.h" | 25 #include "webrtc/modules/rtp_rtcp/source/bitrate.h" |
| 25 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" | 26 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" |
| 26 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_history.h" | 27 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_history.h" |
| 27 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" | 28 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" |
| 28 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 29 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 // that the target bitrate is still valid. | 492 // that the target bitrate is still valid. |
| 492 rtc::CriticalSection target_bitrate_critsect_; | 493 rtc::CriticalSection target_bitrate_critsect_; |
| 493 uint32_t target_bitrate_ GUARDED_BY(target_bitrate_critsect_); | 494 uint32_t target_bitrate_ GUARDED_BY(target_bitrate_critsect_); |
| 494 | 495 |
| 495 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); | 496 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); |
| 496 }; | 497 }; |
| 497 | 498 |
| 498 } // namespace webrtc | 499 } // namespace webrtc |
| 499 | 500 |
| 500 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ | 501 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ |
| OLD | NEW |