| 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 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" | 31 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" |
| 32 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h" | 32 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h" |
| 33 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" | 33 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" |
| 34 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h" | 34 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h" |
| 35 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" | 35 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" |
| 36 #include "webrtc/typedefs.h" | 36 #include "webrtc/typedefs.h" |
| 37 | 37 |
| 38 namespace webrtc { | 38 namespace webrtc { |
| 39 | 39 |
| 40 class ModuleRtpRtcpImpl; | 40 class ModuleRtpRtcpImpl; |
| 41 class RTCPReceiver; | |
| 42 class RtcEventLog; | 41 class RtcEventLog; |
| 43 | 42 |
| 44 class NACKStringBuilder { | 43 class NACKStringBuilder { |
| 45 public: | 44 public: |
| 46 NACKStringBuilder(); | 45 NACKStringBuilder(); |
| 47 ~NACKStringBuilder(); | 46 ~NACKStringBuilder(); |
| 48 | 47 |
| 49 void PushNACK(uint16_t nack); | 48 void PushNACK(uint16_t nack); |
| 50 std::string GetResult(); | 49 std::string GetResult(); |
| 51 | 50 |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 typedef std::unique_ptr<rtcp::RtcpPacket> (RTCPSender::*BuilderFunc)( | 290 typedef std::unique_ptr<rtcp::RtcpPacket> (RTCPSender::*BuilderFunc)( |
| 292 const RtcpContext&); | 291 const RtcpContext&); |
| 293 // Map from RTCPPacketType to builder. | 292 // Map from RTCPPacketType to builder. |
| 294 std::map<uint32_t, BuilderFunc> builders_; | 293 std::map<uint32_t, BuilderFunc> builders_; |
| 295 | 294 |
| 296 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSender); | 295 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSender); |
| 297 }; | 296 }; |
| 298 } // namespace webrtc | 297 } // namespace webrtc |
| 299 | 298 |
| 300 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ | 299 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |
| OLD | NEW |