OLD | NEW |
---|---|
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 Loading... | |
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; | |
tommi
2017/04/10 10:59:18
can this be declared inline as
static const char
ilnik
2017/04/10 12:47:42
I think it will be better if we leave it in the sa
| |
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 Loading... | |
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_ |
OLD | NEW |