OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ | 5 #ifndef MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ |
6 #define MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ | 6 #define MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ |
7 | 7 |
8 #include "media/cast/rtcp/rtcp.h" | 8 #include "media/cast/rtcp/rtcp.h" |
9 #include "media/cast/rtcp/rtcp_defines.h" | 9 #include "media/cast/rtcp/rtcp_defines.h" |
10 #include "media/cast/rtcp/rtcp_utility.h" | 10 #include "media/cast/rtcp/rtcp_utility.h" |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 void HandleFIR(RtcpParser* rtcp_parser); | 88 void HandleFIR(RtcpParser* rtcp_parser); |
89 void HandleFIRItem(const RtcpField* rtcp_field); | 89 void HandleFIRItem(const RtcpField* rtcp_field); |
90 | 90 |
91 void HandlePayloadSpecificApp(RtcpParser* rtcp_parser); | 91 void HandlePayloadSpecificApp(RtcpParser* rtcp_parser); |
92 void HandlePayloadSpecificRembItem(RtcpParser* rtcp_parser); | 92 void HandlePayloadSpecificRembItem(RtcpParser* rtcp_parser); |
93 void HandlePayloadSpecificCastItem(RtcpParser* rtcp_parser); | 93 void HandlePayloadSpecificCastItem(RtcpParser* rtcp_parser); |
94 void HandlePayloadSpecificCastNackItem( | 94 void HandlePayloadSpecificCastNackItem( |
95 const RtcpField* rtcp_field, | 95 const RtcpField* rtcp_field, |
96 MissingFramesAndPacketsMap* missing_frames_and_packets); | 96 MissingFramesAndPacketsMap* missing_frames_and_packets); |
97 | 97 |
| 98 void HandleApplicationSpecificCastReceiverLog(RtcpParser* rtcp_parser); |
| 99 void HandleApplicationSpecificCastSenderLog(RtcpParser* rtcp_parser); |
| 100 void HandleApplicationSpecificCastReceiverEventLog( |
| 101 RtcpParser* rtcp_parser, |
| 102 RtcpReceiverEventLogMessages* event_log_messages); |
| 103 |
98 const uint32 ssrc_; | 104 const uint32 ssrc_; |
99 uint32 remote_ssrc_; | 105 uint32 remote_ssrc_; |
100 | 106 |
101 // Not owned by this class. | 107 // Not owned by this class. |
102 RtcpSenderFeedback* const sender_feedback_; | 108 RtcpSenderFeedback* const sender_feedback_; |
103 RtcpReceiverFeedback* const receiver_feedback_; | 109 RtcpReceiverFeedback* const receiver_feedback_; |
104 RtcpRttFeedback* const rtt_feedback_; | 110 RtcpRttFeedback* const rtt_feedback_; |
105 | 111 |
106 FrameIdWrapHelper ack_frame_id_wrap_helper_; | 112 FrameIdWrapHelper ack_frame_id_wrap_helper_; |
107 | 113 |
108 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); | 114 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); |
109 }; | 115 }; |
110 | 116 |
111 } // namespace cast | 117 } // namespace cast |
112 } // namespace media | 118 } // namespace media |
113 | 119 |
114 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ | 120 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ |
OLD | NEW |