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_RTP_COMMON_RTP_DEFINES_H_ | 5 #ifndef MEDIA_CAST_RTP_RECEIVER_RTP_RECEIVER_DEFINES_H_ |
6 #define MEDIA_CAST_RTP_COMMON_RTP_DEFINES_H_ | 6 #define MEDIA_CAST_RTP_RECEIVER_RTP_RECEIVER_DEFINES_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "media/cast/cast_config.h" | 9 #include "media/cast/cast_config.h" |
10 #include "media/cast/rtcp/rtcp_defines.h" | 10 #include "media/cast/rtcp/rtcp_defines.h" |
11 #include "third_party/webrtc/modules/interface/module_common_types.h" | 11 #include "third_party/webrtc/modules/interface/module_common_types.h" |
12 | 12 |
13 namespace media { | 13 namespace media { |
14 namespace cast { | 14 namespace cast { |
15 | 15 |
16 const uint8 kRtpMarkerBitMask = 0x80; | 16 const uint8 kRtpMarkerBitMask = 0x80; |
(...skipping 21 matching lines...) Expand all Loading... |
38 public: | 38 public: |
39 virtual void CastFeedback(const RtcpCastMessage& cast_feedback) = 0; | 39 virtual void CastFeedback(const RtcpCastMessage& cast_feedback) = 0; |
40 | 40 |
41 protected: | 41 protected: |
42 virtual ~RtpPayloadFeedback() {} | 42 virtual ~RtpPayloadFeedback() {} |
43 }; | 43 }; |
44 | 44 |
45 } // namespace cast | 45 } // namespace cast |
46 } // namespace media | 46 } // namespace media |
47 | 47 |
48 #endif // MEDIA_CAST_RTP_COMMON_RTP_DEFINES_H_ | 48 #endif // MEDIA_CAST_RTP_RECEIVER_RTP_RECEIVER_DEFINES_H_ |
OLD | NEW |