OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 * | 9 * |
10 */ | 10 */ |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 | 107 |
108 private: | 108 private: |
109 bool CreateAndAddAppended(uint8_t* packet, | 109 bool CreateAndAddAppended(uint8_t* packet, |
110 size_t* index, | 110 size_t* index, |
111 size_t max_length, | 111 size_t max_length, |
112 PacketReadyCallback* callback) const; | 112 PacketReadyCallback* callback) const; |
113 | 113 |
114 std::vector<RtcpPacket*> appended_packets_; | 114 std::vector<RtcpPacket*> appended_packets_; |
115 }; | 115 }; |
116 | 116 |
| 117 // TODO(sprang): Move RtcpPacket subclasses out to separate files. |
| 118 |
117 class Empty : public RtcpPacket { | 119 class Empty : public RtcpPacket { |
118 public: | 120 public: |
119 Empty() : RtcpPacket() {} | 121 Empty() : RtcpPacket() {} |
120 | 122 |
121 virtual ~Empty() {} | 123 virtual ~Empty() {} |
122 | 124 |
123 protected: | 125 protected: |
124 bool Create(uint8_t* packet, | 126 bool Create(uint8_t* packet, |
125 size_t* index, | 127 size_t* index, |
126 size_t max_length, | 128 size_t max_length, |
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1140 | 1142 |
1141 private: | 1143 private: |
1142 const size_t buffer_length_; | 1144 const size_t buffer_length_; |
1143 size_t length_; | 1145 size_t length_; |
1144 rtc::scoped_ptr<uint8_t[]> buffer_; | 1146 rtc::scoped_ptr<uint8_t[]> buffer_; |
1145 }; | 1147 }; |
1146 | 1148 |
1147 } // namespace rtcp | 1149 } // namespace rtcp |
1148 } // namespace webrtc | 1150 } // namespace webrtc |
1149 #endif // WEBRTC_MODULES_RTP_RTCP_RTCP_PACKET_H_ | 1151 #endif // WEBRTC_MODULES_RTP_RTCP_RTCP_PACKET_H_ |
OLD | NEW |