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

Side by Side Diff: webrtc/config.h

Issue 2812913002: Reland of Add content type information to encoded images and corresponding rtp extension header (Closed)
Patch Set: Fix indent 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
« 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 // http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time 81 // http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
82 static const char* kAbsSendTimeUri; 82 static const char* kAbsSendTimeUri;
83 static const int kAbsSendTimeDefaultId; 83 static const int kAbsSendTimeDefaultId;
84 84
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.
92 static const char* kVideoContentTypeUri;
93 static const int kVideoContentTypeDefaultId;
94
91 // Header extension for transport sequence number, see url for details: 95 // Header extension for transport sequence number, see url for details:
92 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions 96 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions
93 static const char* kTransportSequenceNumberUri; 97 static const char* kTransportSequenceNumberUri;
94 static const int kTransportSequenceNumberDefaultId; 98 static const int kTransportSequenceNumberDefaultId;
95 99
96 static const char* kPlayoutDelayUri; 100 static const char* kPlayoutDelayUri;
97 static const int kPlayoutDelayDefaultId; 101 static const int kPlayoutDelayDefaultId;
98 102
99 // Inclusive min and max IDs for one-byte header extensions, per RFC5285. 103 // Inclusive min and max IDs for one-byte header extensions, per RFC5285.
100 static const int kMinId; 104 static const int kMinId;
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 232
229 private: 233 private:
230 // Access to the copy constructor is private to force use of the Copy() 234 // Access to the copy constructor is private to force use of the Copy()
231 // method for those exceptional cases where we do use it. 235 // method for those exceptional cases where we do use it.
232 VideoEncoderConfig(const VideoEncoderConfig&); 236 VideoEncoderConfig(const VideoEncoderConfig&);
233 }; 237 };
234 238
235 } // namespace webrtc 239 } // namespace webrtc
236 240
237 #endif // WEBRTC_CONFIG_H_ 241 #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