| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 kRtpExtensionTransmissionTimeOffset, | 73 kRtpExtensionTransmissionTimeOffset, |
| 74 kRtpExtensionAudioLevel, | 74 kRtpExtensionAudioLevel, |
| 75 kRtpExtensionAbsoluteSendTime, | 75 kRtpExtensionAbsoluteSendTime, |
| 76 kRtpExtensionVideoRotation, | 76 kRtpExtensionVideoRotation, |
| 77 kRtpExtensionTransportSequenceNumber, | 77 kRtpExtensionTransportSequenceNumber, |
| 78 kRtpExtensionPlayoutDelay, | 78 kRtpExtensionPlayoutDelay, |
| 79 kRtpExtensionVideoContentType, | 79 kRtpExtensionVideoContentType, |
| 80 kRtpExtensionVideoTiming, | 80 kRtpExtensionVideoTiming, |
| 81 kRtpExtensionRtpStreamId, | 81 kRtpExtensionRtpStreamId, |
| 82 kRtpExtensionRepairedRtpStreamId, | 82 kRtpExtensionRepairedRtpStreamId, |
| 83 kRtpExtensionFrameMarking, |
| 83 kRtpExtensionNumberOfExtensions // Must be the last entity in the enum. | 84 kRtpExtensionNumberOfExtensions // Must be the last entity in the enum. |
| 84 }; | 85 }; |
| 85 | 86 |
| 86 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 }; | 87 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 }; |
| 87 | 88 |
| 88 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up. | 89 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up. |
| 89 enum RTCPPacketType : uint32_t { | 90 enum RTCPPacketType : uint32_t { |
| 90 kRtcpReport = 0x0001, | 91 kRtcpReport = 0x0001, |
| 91 kRtcpSr = 0x0002, | 92 kRtcpSr = 0x0002, |
| 92 kRtcpRr = 0x0004, | 93 kRtcpRr = 0x0004, |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 class TransportSequenceNumberAllocator { | 457 class TransportSequenceNumberAllocator { |
| 457 public: | 458 public: |
| 458 TransportSequenceNumberAllocator() {} | 459 TransportSequenceNumberAllocator() {} |
| 459 virtual ~TransportSequenceNumberAllocator() {} | 460 virtual ~TransportSequenceNumberAllocator() {} |
| 460 | 461 |
| 461 virtual uint16_t AllocateSequenceNumber() = 0; | 462 virtual uint16_t AllocateSequenceNumber() = 0; |
| 462 }; | 463 }; |
| 463 | 464 |
| 464 } // namespace webrtc | 465 } // namespace webrtc |
| 465 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ | 466 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ |
| OLD | NEW |