Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(570)

Side by Side Diff: webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h

Issue 2805023002: Add read support of RtpStreamId/RepairedRtpStreamId header extensions. (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 }; 69 };
70 70
71 enum RTPExtensionType { 71 enum RTPExtensionType {
72 kRtpExtensionNone, 72 kRtpExtensionNone,
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 kRtpExtensionRtpStreamId,
80 kRtpExtensionRepairedRtpStreamId,
79 kRtpExtensionNumberOfExtensions, 81 kRtpExtensionNumberOfExtensions,
80 }; 82 };
81 83
82 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 }; 84 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 };
83 85
84 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up. 86 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up.
85 enum RTCPPacketType : uint32_t { 87 enum RTCPPacketType : uint32_t {
86 kRtcpReport = 0x0001, 88 kRtcpReport = 0x0001,
87 kRtcpSr = 0x0002, 89 kRtcpSr = 0x0002,
88 kRtcpRr = 0x0004, 90 kRtcpRr = 0x0004,
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 class TransportSequenceNumberAllocator { 444 class TransportSequenceNumberAllocator {
443 public: 445 public:
444 TransportSequenceNumberAllocator() {} 446 TransportSequenceNumberAllocator() {}
445 virtual ~TransportSequenceNumberAllocator() {} 447 virtual ~TransportSequenceNumberAllocator() {}
446 448
447 virtual uint16_t AllocateSequenceNumber() = 0; 449 virtual uint16_t AllocateSequenceNumber() = 0;
448 }; 450 };
449 451
450 } // namespace webrtc 452 } // namespace webrtc
451 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ 453 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698