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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 void HandleFIR(RtcpParser* rtcp_parser); | 89 void HandleFIR(RtcpParser* rtcp_parser); |
90 void HandleFIRItem(const RtcpField* rtcp_field); | 90 void HandleFIRItem(const RtcpField* rtcp_field); |
91 | 91 |
92 void HandlePayloadSpecificApp(RtcpParser* rtcp_parser); | 92 void HandlePayloadSpecificApp(RtcpParser* rtcp_parser); |
93 void HandlePayloadSpecificRembItem(RtcpParser* rtcp_parser); | 93 void HandlePayloadSpecificRembItem(RtcpParser* rtcp_parser); |
94 void HandlePayloadSpecificCastItem(RtcpParser* rtcp_parser); | 94 void HandlePayloadSpecificCastItem(RtcpParser* rtcp_parser); |
95 void HandlePayloadSpecificCastNackItem( | 95 void HandlePayloadSpecificCastNackItem( |
96 const RtcpField* rtcp_field, | 96 const RtcpField* rtcp_field, |
97 MissingFramesAndPacketsMap* missing_frames_and_packets); | 97 MissingFramesAndPacketsMap* missing_frames_and_packets); |
98 | 98 |
| 99 void HandleApplicationSpecificCastReceiverLog(RtcpParser* rtcp_parser); |
| 100 void HandleApplicationSpecificCastSenderLog(RtcpParser* rtcp_parser); |
| 101 void HandleApplicationSpecificCastReceiverEventLog( |
| 102 RtcpParser* rtcp_parser, |
| 103 RtcpReceiverEventLogMessages* event_log_messages); |
| 104 |
99 const uint32 ssrc_; | 105 const uint32 ssrc_; |
100 uint32 remote_ssrc_; | 106 uint32 remote_ssrc_; |
101 | 107 |
102 // Not owned by this class. | 108 // Not owned by this class. |
103 RtcpSenderFeedback* const sender_feedback_; | 109 RtcpSenderFeedback* const sender_feedback_; |
104 RtcpReceiverFeedback* const receiver_feedback_; | 110 RtcpReceiverFeedback* const receiver_feedback_; |
105 RtcpRttFeedback* const rtt_feedback_; | 111 RtcpRttFeedback* const rtt_feedback_; |
106 scoped_refptr<CastEnvironment> cast_environment_; | 112 scoped_refptr<CastEnvironment> cast_environment_; |
107 | 113 |
108 FrameIdWrapHelper ack_frame_id_wrap_helper_; | 114 FrameIdWrapHelper ack_frame_id_wrap_helper_; |
109 | 115 |
110 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); | 116 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); |
111 }; | 117 }; |
112 | 118 |
113 } // namespace cast | 119 } // namespace cast |
114 } // namespace media | 120 } // namespace media |
115 | 121 |
116 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ | 122 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ |
OLD | NEW |