| 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_VIDEO_H_ | 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_VIDEO_H_ |
| 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_VIDEO_H_ | 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_VIDEO_H_ |
| 13 | 13 |
| 14 #include <map> | 14 #include <map> |
| 15 #include <memory> | 15 #include <memory> |
| 16 | 16 |
| 17 #include "webrtc/api/optional.h" |
| 17 #include "webrtc/common_types.h" | 18 #include "webrtc/common_types.h" |
| 18 #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" | 19 #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" |
| 19 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 20 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
| 20 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" | 21 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" |
| 21 #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" | 22 #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" |
| 22 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 23 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
| 23 #include "webrtc/modules/rtp_rtcp/source/ulpfec_generator.h" | 24 #include "webrtc/modules/rtp_rtcp/source/ulpfec_generator.h" |
| 24 #include "webrtc/modules/rtp_rtcp/source/video_codec_information.h" | 25 #include "webrtc/modules/rtp_rtcp/source/video_codec_information.h" |
| 25 #include "webrtc/rtc_base/criticalsection.h" | 26 #include "webrtc/rtc_base/criticalsection.h" |
| 26 #include "webrtc/rtc_base/onetimeevent.h" | 27 #include "webrtc/rtc_base/onetimeevent.h" |
| 27 #include "webrtc/rtc_base/optional.h" | |
| 28 #include "webrtc/rtc_base/rate_statistics.h" | 28 #include "webrtc/rtc_base/rate_statistics.h" |
| 29 #include "webrtc/rtc_base/sequenced_task_checker.h" | 29 #include "webrtc/rtc_base/sequenced_task_checker.h" |
| 30 #include "webrtc/rtc_base/thread_annotations.h" | 30 #include "webrtc/rtc_base/thread_annotations.h" |
| 31 #include "webrtc/typedefs.h" | 31 #include "webrtc/typedefs.h" |
| 32 | 32 |
| 33 namespace webrtc { | 33 namespace webrtc { |
| 34 class RtpPacketizer; | 34 class RtpPacketizer; |
| 35 class RtpPacketToSend; | 35 class RtpPacketToSend; |
| 36 | 36 |
| 37 class RTPSenderVideo { | 37 class RTPSenderVideo { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 | 158 |
| 159 std::map<int, TemporalLayerStats> frame_stats_by_temporal_layer_ | 159 std::map<int, TemporalLayerStats> frame_stats_by_temporal_layer_ |
| 160 GUARDED_BY(stats_crit_); | 160 GUARDED_BY(stats_crit_); |
| 161 | 161 |
| 162 OneTimeEvent first_frame_sent_; | 162 OneTimeEvent first_frame_sent_; |
| 163 }; | 163 }; |
| 164 | 164 |
| 165 } // namespace webrtc | 165 } // namespace webrtc |
| 166 | 166 |
| 167 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_VIDEO_H_ | 167 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_VIDEO_H_ |
| OLD | NEW |