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

Side by Side Diff: webrtc/config.h

Issue 2911193002: Implement timing frames. (Closed)
Patch Set: Implement Holmer@ comments Created 3 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 | « webrtc/common_video/include/video_frame.h ('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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 // Header extension for coordination of video orientation, see url for 85 // Header extension for coordination of video orientation, see url for
86 // details: 86 // details:
87 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/ts_126 114v120700p.pdf 87 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/ts_126 114v120700p.pdf
88 static const char* kVideoRotationUri; 88 static const char* kVideoRotationUri;
89 static const int kVideoRotationDefaultId; 89 static const int kVideoRotationDefaultId;
90 90
91 // Header extension for video content type. E.g. default or screenshare. 91 // Header extension for video content type. E.g. default or screenshare.
92 static const char* kVideoContentTypeUri; 92 static const char* kVideoContentTypeUri;
93 static const int kVideoContentTypeDefaultId; 93 static const int kVideoContentTypeDefaultId;
94 94
95 // Header extension for video timing.
96 static const char* kVideoTimingUri;
97 static const int kVideoTimingDefaultId;
98
95 // Header extension for transport sequence number, see url for details: 99 // Header extension for transport sequence number, see url for details:
96 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions 100 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions
97 static const char* kTransportSequenceNumberUri; 101 static const char* kTransportSequenceNumberUri;
98 static const int kTransportSequenceNumberDefaultId; 102 static const int kTransportSequenceNumberDefaultId;
99 103
100 static const char* kPlayoutDelayUri; 104 static const char* kPlayoutDelayUri;
101 static const int kPlayoutDelayDefaultId; 105 static const int kPlayoutDelayDefaultId;
102 106
103 // Inclusive min and max IDs for one-byte header extensions, per RFC5285. 107 // Inclusive min and max IDs for one-byte header extensions, per RFC5285.
104 static const int kMinId; 108 static const int kMinId;
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 236
233 private: 237 private:
234 // Access to the copy constructor is private to force use of the Copy() 238 // Access to the copy constructor is private to force use of the Copy()
235 // method for those exceptional cases where we do use it. 239 // method for those exceptional cases where we do use it.
236 VideoEncoderConfig(const VideoEncoderConfig&); 240 VideoEncoderConfig(const VideoEncoderConfig&);
237 }; 241 };
238 242
239 } // namespace webrtc 243 } // namespace webrtc
240 244
241 #endif // WEBRTC_CONFIG_H_ 245 #endif // WEBRTC_CONFIG_H_
OLDNEW
« no previous file with comments | « webrtc/common_video/include/video_frame.h ('k') | webrtc/config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698