| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_NET_RTCP_RTCP_DEFINES_H_ | 5 #ifndef MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_ |
| 6 #define MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_ | 6 #define MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 CastLoggingEvent type; | 62 CastLoggingEvent type; |
| 63 base::TimeTicks event_timestamp; | 63 base::TimeTicks event_timestamp; |
| 64 base::TimeDelta delay_delta; | 64 base::TimeDelta delay_delta; |
| 65 uint16_t packet_id; | 65 uint16_t packet_id; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 typedef std::list<RtcpReceiverEventLogMessage> RtcpReceiverEventLogMessages; | 68 typedef std::list<RtcpReceiverEventLogMessage> RtcpReceiverEventLogMessages; |
| 69 | 69 |
| 70 struct RtcpReceiverFrameLogMessage { | 70 struct RtcpReceiverFrameLogMessage { |
| 71 explicit RtcpReceiverFrameLogMessage(RtpTimeTicks rtp_timestamp); | 71 explicit RtcpReceiverFrameLogMessage(RtpTimeTicks rtp_timestamp); |
| 72 RtcpReceiverFrameLogMessage(const RtcpReceiverFrameLogMessage& other); |
| 72 ~RtcpReceiverFrameLogMessage(); | 73 ~RtcpReceiverFrameLogMessage(); |
| 73 | 74 |
| 74 const RtpTimeTicks rtp_timestamp_; | 75 const RtpTimeTicks rtp_timestamp_; |
| 75 RtcpReceiverEventLogMessages event_log_messages_; | 76 RtcpReceiverEventLogMessages event_log_messages_; |
| 76 }; | 77 }; |
| 77 | 78 |
| 78 typedef std::list<RtcpReceiverFrameLogMessage> RtcpReceiverLogMessage; | 79 typedef std::list<RtcpReceiverFrameLogMessage> RtcpReceiverLogMessage; |
| 79 | 80 |
| 80 struct RtcpReceiverReferenceTimeReport { | 81 struct RtcpReceiverReferenceTimeReport { |
| 81 RtcpReceiverReferenceTimeReport(); | 82 RtcpReceiverReferenceTimeReport(); |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 base::TimeDelta target_delay; | 146 base::TimeDelta target_delay; |
| 146 scoped_ptr<std::vector<std::pair<RtpTimeTicks, RtcpEvent>>> rtcp_events; | 147 scoped_ptr<std::vector<std::pair<RtpTimeTicks, RtcpEvent>>> rtcp_events; |
| 147 scoped_ptr<RtpReceiverStatistics> rtp_receiver_statistics; | 148 scoped_ptr<RtpReceiverStatistics> rtp_receiver_statistics; |
| 148 }; | 149 }; |
| 149 | 150 |
| 150 | 151 |
| 151 } // namespace cast | 152 } // namespace cast |
| 152 } // namespace media | 153 } // namespace media |
| 153 | 154 |
| 154 #endif // MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_ | 155 #endif // MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_ |
| OLD | NEW |