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_H_ | 5 #ifndef MEDIA_CAST_RTCP_RTCP_H_ |
6 #define MEDIA_CAST_RTCP_RTCP_H_ | 6 #define MEDIA_CAST_RTCP_RTCP_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/time/tick_clock.h" | 14 #include "base/time/tick_clock.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "media/cast/base/clock_drift_smoother.h" | |
17 #include "media/cast/cast_config.h" | 16 #include "media/cast/cast_config.h" |
18 #include "media/cast/cast_defines.h" | 17 #include "media/cast/cast_defines.h" |
19 #include "media/cast/cast_environment.h" | 18 #include "media/cast/cast_environment.h" |
| 19 #include "media/cast/common/clock_drift_smoother.h" |
20 #include "media/cast/rtcp/receiver_rtcp_event_subscriber.h" | 20 #include "media/cast/rtcp/receiver_rtcp_event_subscriber.h" |
21 #include "media/cast/rtcp/rtcp_defines.h" | 21 #include "media/cast/rtcp/rtcp_defines.h" |
22 #include "media/cast/transport/cast_transport_defines.h" | 22 #include "media/cast/transport/cast_transport_defines.h" |
23 #include "media/cast/transport/cast_transport_sender.h" | 23 #include "media/cast/transport/cast_transport_sender.h" |
24 #include "media/cast/transport/pacing/paced_sender.h" | 24 #include "media/cast/transport/pacing/paced_sender.h" |
25 | 25 |
26 namespace media { | 26 namespace media { |
27 namespace cast { | 27 namespace cast { |
28 | 28 |
29 class LocalRtcpReceiverFeedback; | 29 class LocalRtcpReceiverFeedback; |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 base::TimeDelta avg_rtt_; | 197 base::TimeDelta avg_rtt_; |
198 base::TimeDelta target_delay_; | 198 base::TimeDelta target_delay_; |
199 | 199 |
200 DISALLOW_COPY_AND_ASSIGN(Rtcp); | 200 DISALLOW_COPY_AND_ASSIGN(Rtcp); |
201 }; | 201 }; |
202 | 202 |
203 } // namespace cast | 203 } // namespace cast |
204 } // namespace media | 204 } // namespace media |
205 | 205 |
206 #endif // MEDIA_CAST_RTCP_RTCP_H_ | 206 #endif // MEDIA_CAST_RTCP_RTCP_H_ |
OLD | NEW |