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

Side by Side Diff: webrtc/config.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
« no previous file with comments | « webrtc/common_types.cc ('k') | webrtc/config.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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 static const char kTransportSequenceNumberUri[]; 117 static const char kTransportSequenceNumberUri[];
118 static const int kTransportSequenceNumberDefaultId; 118 static const int kTransportSequenceNumberDefaultId;
119 119
120 static const char kPlayoutDelayUri[]; 120 static const char kPlayoutDelayUri[];
121 static const int kPlayoutDelayDefaultId; 121 static const int kPlayoutDelayDefaultId;
122 122
123 // Encryption of Header Extensions, see RFC 6904 for details: 123 // Encryption of Header Extensions, see RFC 6904 for details:
124 // https://tools.ietf.org/html/rfc6904 124 // https://tools.ietf.org/html/rfc6904
125 static const char kEncryptHeaderExtensionsUri[]; 125 static const char kEncryptHeaderExtensionsUri[];
126 126
127 // Frame Marking RTP Header Extension
128 // https://tools.ietf.org/html/draft-ietf-avtext-framemarking-05
129 static const char* kFrameMarkingUri;
130 static const int kFrameMarkingDefaultId;
131
127 // Inclusive min and max IDs for one-byte header extensions, per RFC5285. 132 // Inclusive min and max IDs for one-byte header extensions, per RFC5285.
128 static const int kMinId; 133 static const int kMinId;
129 static const int kMaxId; 134 static const int kMaxId;
130 135
131 std::string uri; 136 std::string uri;
132 int id = 0; 137 int id = 0;
133 bool encrypt = false; 138 bool encrypt = false;
134 }; 139 };
135 140
136 struct VideoStream { 141 struct VideoStream {
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 262
258 private: 263 private:
259 // Access to the copy constructor is private to force use of the Copy() 264 // Access to the copy constructor is private to force use of the Copy()
260 // method for those exceptional cases where we do use it. 265 // method for those exceptional cases where we do use it.
261 VideoEncoderConfig(const VideoEncoderConfig&); 266 VideoEncoderConfig(const VideoEncoderConfig&);
262 }; 267 };
263 268
264 } // namespace webrtc 269 } // namespace webrtc
265 270
266 #endif // WEBRTC_CONFIG_H_ 271 #endif // WEBRTC_CONFIG_H_
OLDNEW
« no previous file with comments | « webrtc/common_types.cc ('k') | webrtc/config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698