| 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_UTILITY_H_ | 5 #ifndef MEDIA_CAST_RTCP_RTCP_UTILITY_H_ |
| 6 #define MEDIA_CAST_RTCP_RTCP_UTILITY_H_ | 6 #define MEDIA_CAST_RTCP_RTCP_UTILITY_H_ |
| 7 | 7 |
| 8 #include "media/cast/cast_config.h" | 8 #include "media/cast/cast_config.h" |
| 9 #include "media/cast/cast_defines.h" | 9 #include "media/cast/cast_defines.h" |
| 10 #include "media/cast/rtcp/rtcp_defines.h" | 10 #include "media/cast/rtcp/rtcp_defines.h" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 struct RtcpFieldPayloadSpecificRembItem { | 132 struct RtcpFieldPayloadSpecificRembItem { |
| 133 uint32 bitrate; | 133 uint32 bitrate; |
| 134 uint8 number_of_ssrcs; | 134 uint8 number_of_ssrcs; |
| 135 uint32 ssrcs[kRtcpMaxNumberOfRembFeedbackSsrcs]; | 135 uint32 ssrcs[kRtcpMaxNumberOfRembFeedbackSsrcs]; |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 struct RtcpFieldPayloadSpecificCastItem { | 138 struct RtcpFieldPayloadSpecificCastItem { |
| 139 uint8 last_frame_id; | 139 uint8 last_frame_id; |
| 140 uint8 number_of_lost_fields; | 140 uint8 number_of_lost_fields; |
| 141 uint16 target_delay_ms; |
| 141 }; | 142 }; |
| 142 | 143 |
| 143 struct RtcpFieldPayloadSpecificCastNackItem { | 144 struct RtcpFieldPayloadSpecificCastNackItem { |
| 144 uint8 frame_id; | 145 uint8 frame_id; |
| 145 uint16 packet_id; | 146 uint16 packet_id; |
| 146 uint8 bitmask; | 147 uint8 bitmask; |
| 147 }; | 148 }; |
| 148 | 149 |
| 149 struct RtcpFieldApplicationSpecificCastReceiverLogItem { | 150 struct RtcpFieldApplicationSpecificCastReceiverLogItem { |
| 150 uint32 sender_ssrc; | 151 uint32 sender_ssrc; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 RtcpFieldTypes field_type_; | 337 RtcpFieldTypes field_type_; |
| 337 RtcpField field_; | 338 RtcpField field_; |
| 338 | 339 |
| 339 DISALLOW_COPY_AND_ASSIGN(RtcpParser); | 340 DISALLOW_COPY_AND_ASSIGN(RtcpParser); |
| 340 }; | 341 }; |
| 341 | 342 |
| 342 } // namespace cast | 343 } // namespace cast |
| 343 } // namespace media | 344 } // namespace media |
| 344 | 345 |
| 345 #endif // MEDIA_CAST_RTCP_RTCP_UTILITY_H_ | 346 #endif // MEDIA_CAST_RTCP_RTCP_UTILITY_H_ |
| OLD | NEW |