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

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

Issue 2954503002: Implement FrameMarking header extension support
Patch Set: fix fuzzer Created 3 years, 3 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 kRtpExtensionMid, 83 kRtpExtensionMid,
84 kRtpExtensionFrameMarking,
84 kRtpExtensionNumberOfExtensions // Must be the last entity in the enum. 85 kRtpExtensionNumberOfExtensions // Must be the last entity in the enum.
85 }; 86 };
86 87
87 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 }; 88 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 };
88 89
89 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up. 90 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up.
90 enum RTCPPacketType : uint32_t { 91 enum RTCPPacketType : uint32_t {
91 kRtcpReport = 0x0001, 92 kRtcpReport = 0x0001,
92 kRtcpSr = 0x0002, 93 kRtcpSr = 0x0002,
93 kRtcpRr = 0x0004, 94 kRtcpRr = 0x0004,
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 class TransportSequenceNumberAllocator { 476 class TransportSequenceNumberAllocator {
476 public: 477 public:
477 TransportSequenceNumberAllocator() {} 478 TransportSequenceNumberAllocator() {}
478 virtual ~TransportSequenceNumberAllocator() {} 479 virtual ~TransportSequenceNumberAllocator() {}
479 480
480 virtual uint16_t AllocateSequenceNumber() = 0; 481 virtual uint16_t AllocateSequenceNumber() = 0;
481 }; 482 };
482 483
483 } // namespace webrtc 484 } // namespace webrtc
484 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ 485 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
OLDNEW
« no previous file with comments | « webrtc/media/engine/webrtcvideoengine.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_header_extension_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698