Chromium Code Reviews| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 53 enum ProtectionType { | 53 enum ProtectionType { |
| 54 kUnprotectedPacket, | 54 kUnprotectedPacket, |
| 55 kProtectedPacket | 55 kProtectedPacket |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 enum StorageType { | 58 enum StorageType { |
| 59 kDontRetransmit, | 59 kDontRetransmit, |
| 60 kAllowRetransmission | 60 kAllowRetransmission |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 const int kNumberOfRtpHeaderExtensions = 7; | |
|
phoglund
2016/06/15 08:20:25
Maybe just add this as the last entry in the enum?
katrielc
2016/06/15 09:05:30
The problem with adding it to the enum is that it'
| |
| 63 enum RTPExtensionType { | 64 enum RTPExtensionType { |
| 64 kRtpExtensionNone, | 65 kRtpExtensionNone, |
| 65 kRtpExtensionTransmissionTimeOffset, | 66 kRtpExtensionTransmissionTimeOffset, |
| 66 kRtpExtensionAudioLevel, | 67 kRtpExtensionAudioLevel, |
| 67 kRtpExtensionAbsoluteSendTime, | 68 kRtpExtensionAbsoluteSendTime, |
| 68 kRtpExtensionVideoRotation, | 69 kRtpExtensionVideoRotation, |
| 69 kRtpExtensionTransportSequenceNumber, | 70 kRtpExtensionTransportSequenceNumber, |
| 70 kRtpExtensionPlayoutDelay, | 71 kRtpExtensionPlayoutDelay, |
| 71 }; | 72 }; |
| 72 | 73 |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 400 class TransportSequenceNumberAllocator { | 401 class TransportSequenceNumberAllocator { |
| 401 public: | 402 public: |
| 402 TransportSequenceNumberAllocator() {} | 403 TransportSequenceNumberAllocator() {} |
| 403 virtual ~TransportSequenceNumberAllocator() {} | 404 virtual ~TransportSequenceNumberAllocator() {} |
| 404 | 405 |
| 405 virtual uint16_t AllocateSequenceNumber() = 0; | 406 virtual uint16_t AllocateSequenceNumber() = 0; |
| 406 }; | 407 }; |
| 407 | 408 |
| 408 } // namespace webrtc | 409 } // namespace webrtc |
| 409 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ | 410 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ |
| OLD | NEW |