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/net/cast_net_defines.h" | |
9 #include "media/cast/rtcp/rtcp.h" | 8 #include "media/cast/rtcp/rtcp.h" |
10 #include "media/cast/rtcp/rtcp_defines.h" | 9 #include "media/cast/rtcp/rtcp_defines.h" |
11 #include "media/cast/rtcp/rtcp_utility.h" | 10 #include "media/cast/rtcp/rtcp_utility.h" |
| 11 #include "media/cast/transport/cast_transport_defines.h" |
12 | 12 |
13 namespace media { | 13 namespace media { |
14 namespace cast { | 14 namespace cast { |
15 | 15 |
16 class RtcpReceiverFeedback { | 16 class RtcpReceiverFeedback { |
17 public: | 17 public: |
18 virtual void OnReceivedSenderReport( | 18 virtual void OnReceivedSenderReport( |
19 const RtcpSenderInfo& remote_sender_info) = 0; | 19 const RtcpSenderInfo& remote_sender_info) = 0; |
20 | 20 |
21 virtual void OnReceiverReferenceTimeReport( | 21 virtual void OnReceiverReferenceTimeReport( |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 | 105 |
106 const uint32 ssrc_; | 106 const uint32 ssrc_; |
107 uint32 remote_ssrc_; | 107 uint32 remote_ssrc_; |
108 | 108 |
109 // Not owned by this class. | 109 // Not owned by this class. |
110 RtcpSenderFeedback* const sender_feedback_; | 110 RtcpSenderFeedback* const sender_feedback_; |
111 RtcpReceiverFeedback* const receiver_feedback_; | 111 RtcpReceiverFeedback* const receiver_feedback_; |
112 RtcpRttFeedback* const rtt_feedback_; | 112 RtcpRttFeedback* const rtt_feedback_; |
113 scoped_refptr<CastEnvironment> cast_environment_; | 113 scoped_refptr<CastEnvironment> cast_environment_; |
114 | 114 |
115 FrameIdWrapHelper ack_frame_id_wrap_helper_; | 115 transport::FrameIdWrapHelper ack_frame_id_wrap_helper_; |
116 | 116 |
117 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); | 117 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); |
118 }; | 118 }; |
119 | 119 |
120 } // namespace cast | 120 } // namespace cast |
121 } // namespace media | 121 } // namespace media |
122 | 122 |
123 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ | 123 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ |
OLD | NEW |