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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 kAllowRetransmission | 60 kAllowRetransmission |
61 }; | 61 }; |
62 | 62 |
63 enum RTPExtensionType { | 63 enum RTPExtensionType { |
64 kRtpExtensionNone, | 64 kRtpExtensionNone, |
65 kRtpExtensionTransmissionTimeOffset, | 65 kRtpExtensionTransmissionTimeOffset, |
66 kRtpExtensionAudioLevel, | 66 kRtpExtensionAudioLevel, |
67 kRtpExtensionAbsoluteSendTime, | 67 kRtpExtensionAbsoluteSendTime, |
68 kRtpExtensionVideoRotation, | 68 kRtpExtensionVideoRotation, |
69 kRtpExtensionTransportSequenceNumber, | 69 kRtpExtensionTransportSequenceNumber, |
| 70 kRtpExtensionPlayoutDelay, |
70 }; | 71 }; |
71 | 72 |
72 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 }; | 73 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 }; |
73 | 74 |
74 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up. | 75 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up. |
75 enum RTCPPacketType : uint32_t { | 76 enum RTCPPacketType : uint32_t { |
76 kRtcpReport = 0x0001, | 77 kRtcpReport = 0x0001, |
77 kRtcpSr = 0x0002, | 78 kRtcpSr = 0x0002, |
78 kRtcpRr = 0x0004, | 79 kRtcpRr = 0x0004, |
79 kRtcpSdes = 0x0008, | 80 kRtcpSdes = 0x0008, |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 class TransportSequenceNumberAllocator { | 385 class TransportSequenceNumberAllocator { |
385 public: | 386 public: |
386 TransportSequenceNumberAllocator() {} | 387 TransportSequenceNumberAllocator() {} |
387 virtual ~TransportSequenceNumberAllocator() {} | 388 virtual ~TransportSequenceNumberAllocator() {} |
388 | 389 |
389 virtual uint16_t AllocateSequenceNumber() = 0; | 390 virtual uint16_t AllocateSequenceNumber() = 0; |
390 }; | 391 }; |
391 | 392 |
392 } // namespace webrtc | 393 } // namespace webrtc |
393 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ | 394 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ |
OLD | NEW |