| 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 15 matching lines...) Expand all Loading... |
| 26 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" | 26 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" |
| 27 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 27 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
| 28 #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" | 28 #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" |
| 29 #include "webrtc/typedefs.h" | 29 #include "webrtc/typedefs.h" |
| 30 | 30 |
| 31 namespace webrtc { | 31 namespace webrtc { |
| 32 | 32 |
| 33 class ModuleRtpRtcpImpl; | 33 class ModuleRtpRtcpImpl; |
| 34 class RTCPReceiver; | 34 class RTCPReceiver; |
| 35 | 35 |
| 36 namespace rtcp { |
| 37 class TransportFeedback; |
| 38 } |
| 36 class NACKStringBuilder { | 39 class NACKStringBuilder { |
| 37 public: | 40 public: |
| 38 NACKStringBuilder(); | 41 NACKStringBuilder(); |
| 39 ~NACKStringBuilder(); | 42 ~NACKStringBuilder(); |
| 40 | 43 |
| 41 void PushNACK(uint16_t nack); | 44 void PushNACK(uint16_t nack); |
| 42 std::string GetResult(); | 45 std::string GetResult(); |
| 43 | 46 |
| 44 private: | 47 private: |
| 45 std::ostringstream stream_; | 48 std::ostringstream stream_; |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 std::set<ReportFlag> report_flags_ GUARDED_BY(critical_section_rtcp_sender_); | 321 std::set<ReportFlag> report_flags_ GUARDED_BY(critical_section_rtcp_sender_); |
| 319 | 322 |
| 320 typedef BuildResult (RTCPSender::*Builder)(RtcpContext*); | 323 typedef BuildResult (RTCPSender::*Builder)(RtcpContext*); |
| 321 std::map<RTCPPacketType, Builder> builders_; | 324 std::map<RTCPPacketType, Builder> builders_; |
| 322 | 325 |
| 323 class PacketBuiltCallback; | 326 class PacketBuiltCallback; |
| 324 }; | 327 }; |
| 325 } // namespace webrtc | 328 } // namespace webrtc |
| 326 | 329 |
| 327 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ | 330 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |
| OLD | NEW |