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_DEFINES_H_ | 5 #ifndef MEDIA_CAST_RTCP_RTCP_DEFINES_H_ |
6 #define MEDIA_CAST_RTCP_RTCP_DEFINES_H_ | 6 #define MEDIA_CAST_RTCP_RTCP_DEFINES_H_ |
7 | 7 |
8 #include <list> | |
9 #include <map> | 8 #include <map> |
10 #include <set> | 9 #include <set> |
| 10 #include <vector> |
11 | 11 |
12 #include "media/cast/cast_config.h" | 12 #include "media/cast/cast_config.h" |
13 #include "media/cast/cast_defines.h" | 13 #include "media/cast/cast_defines.h" |
14 #include "media/cast/logging/logging_defines.h" | 14 #include "media/cast/logging/logging_defines.h" |
15 #include "media/cast/transport/cast_transport_defines.h" | 15 #include "media/cast/transport/cast_transport_defines.h" |
16 | 16 |
17 namespace media { | 17 namespace media { |
18 namespace cast { | 18 namespace cast { |
19 | 19 |
20 // Handle the per frame ACK and NACK messages. | 20 // Handle the per frame ACK and NACK messages. |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 RtcpReceiverReferenceTimeReport rhs) { | 83 RtcpReceiverReferenceTimeReport rhs) { |
84 return lhs.remote_ssrc == rhs.remote_ssrc && | 84 return lhs.remote_ssrc == rhs.remote_ssrc && |
85 lhs.ntp_seconds == rhs.ntp_seconds && | 85 lhs.ntp_seconds == rhs.ntp_seconds && |
86 lhs.ntp_fraction == rhs.ntp_fraction; | 86 lhs.ntp_fraction == rhs.ntp_fraction; |
87 } | 87 } |
88 | 88 |
89 } // namespace cast | 89 } // namespace cast |
90 } // namespace media | 90 } // namespace media |
91 | 91 |
92 #endif // MEDIA_CAST_RTCP_RTCP_DEFINES_H_ | 92 #endif // MEDIA_CAST_RTCP_RTCP_DEFINES_H_ |
OLD | NEW |