| 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_RECEIVER_RTP_RECEIVER_DEFINES_H_ | 5 #ifndef MEDIA_CAST_RTP_RECEIVER_RTP_RECEIVER_DEFINES_H_ |
| 6 #define MEDIA_CAST_RTP_RECEIVER_RTP_RECEIVER_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/net/rtcp/rtcp_defines.h" |
| 11 | 11 |
| 12 namespace media { | 12 namespace media { |
| 13 namespace cast { | 13 namespace cast { |
| 14 | 14 |
| 15 struct RtpCastHeader { | 15 struct RtpCastHeader { |
| 16 RtpCastHeader(); | 16 RtpCastHeader(); |
| 17 | 17 |
| 18 // Elements from RTP packet header. | 18 // Elements from RTP packet header. |
| 19 bool marker; | 19 bool marker; |
| 20 uint8 payload_type; | 20 uint8 payload_type; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 35 virtual void CastFeedback(const RtcpCastMessage& cast_feedback) = 0; | 35 virtual void CastFeedback(const RtcpCastMessage& cast_feedback) = 0; |
| 36 | 36 |
| 37 protected: | 37 protected: |
| 38 virtual ~RtpPayloadFeedback(); | 38 virtual ~RtpPayloadFeedback(); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 } // namespace cast | 41 } // namespace cast |
| 42 } // namespace media | 42 } // namespace media |
| 43 | 43 |
| 44 #endif // MEDIA_CAST_RTP_RECEIVER_RTP_RECEIVER_DEFINES_H_ | 44 #endif // MEDIA_CAST_RTP_RECEIVER_RTP_RECEIVER_DEFINES_H_ |
| OLD | NEW |