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

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

Issue 2062103002: Add a libfuzzer for RtpHeaderParser. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Use an enum value to count number of extensions Created 4 years, 6 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
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtp_sender.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 kRtpExtensionPlayoutDelay,
71
mflodman 2016/06/23 09:14:17 nit: I'd prefer to remove the empty line.
72 kRtpExtensionNumberOfExtensions,
71 }; 73 };
72 74
73 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 }; 75 enum RTCPAppSubTypes { kAppSubtypeBwe = 0x00 };
74 76
75 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up. 77 // TODO(sprang): Make this an enum class once rtcp_receiver has been cleaned up.
76 enum RTCPPacketType : uint32_t { 78 enum RTCPPacketType : uint32_t {
77 kRtcpReport = 0x0001, 79 kRtcpReport = 0x0001,
78 kRtcpSr = 0x0002, 80 kRtcpSr = 0x0002,
79 kRtcpRr = 0x0004, 81 kRtcpRr = 0x0004,
80 kRtcpSdes = 0x0008, 82 kRtcpSdes = 0x0008,
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 class TransportSequenceNumberAllocator { 394 class TransportSequenceNumberAllocator {
393 public: 395 public:
394 TransportSequenceNumberAllocator() {} 396 TransportSequenceNumberAllocator() {}
395 virtual ~TransportSequenceNumberAllocator() {} 397 virtual ~TransportSequenceNumberAllocator() {}
396 398
397 virtual uint16_t AllocateSequenceNumber() = 0; 399 virtual uint16_t AllocateSequenceNumber() = 0;
398 }; 400 };
399 401
400 } // namespace webrtc 402 } // namespace webrtc
401 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ 403 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtp_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698