OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 // RFC5450 | 265 // RFC5450 |
266 kExtendedIj, | 266 kExtendedIj, |
267 kExtendedIjItem, | 267 kExtendedIjItem, |
268 | 268 |
269 // RFC4585 | 269 // RFC4585 |
270 kRtpfbNack, | 270 kRtpfbNack, |
271 kRtpfbNackItem, | 271 kRtpfbNackItem, |
272 | 272 |
273 kPsfbPli, | 273 kPsfbPli, |
274 kPsfbRpsi, | 274 kPsfbRpsi, |
| 275 kPsfbRpsiItem, |
275 kPsfbSli, | 276 kPsfbSli, |
276 kPsfbSliItem, | 277 kPsfbSliItem, |
277 kPsfbApp, | 278 kPsfbApp, |
278 kPsfbRemb, | 279 kPsfbRemb, |
279 kPsfbRembItem, | 280 kPsfbRembItem, |
280 | 281 |
281 // RFC5104 | 282 // RFC5104 |
282 kRtpfbTmmbr, | 283 kRtpfbTmmbr, |
283 kRtpfbTmmbrItem, | 284 kRtpfbTmmbrItem, |
284 kRtpfbTmmbn, | 285 kRtpfbTmmbn, |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 uint8_t* const _ptrBegin; | 484 uint8_t* const _ptrBegin; |
484 uint8_t* const _ptrEnd; | 485 uint8_t* const _ptrEnd; |
485 | 486 |
486 uint8_t* _ptrBlock; | 487 uint8_t* _ptrBlock; |
487 | 488 |
488 RtcpCommonHeader _header; | 489 RtcpCommonHeader _header; |
489 }; | 490 }; |
490 } // namespace RTCPUtility | 491 } // namespace RTCPUtility |
491 } // namespace webrtc | 492 } // namespace webrtc |
492 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_UTILITY_H_ | 493 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_UTILITY_H_ |
OLD | NEW |