| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 static const int kVideoTimingDefaultId; | 113 static const int kVideoTimingDefaultId; |
| 114 | 114 |
| 115 // Header extension for transport sequence number, see url for details: | 115 // Header extension for transport sequence number, see url for details: |
| 116 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions | 116 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions |
| 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 // Frame Marking RTP Header Extension |
| 124 // https://tools.ietf.org/html/draft-ietf-avtext-framemarking-04#page-4 |
| 125 static const char* kFrameMarkingUri; |
| 126 static const int kFrameMarkingDefaultId; |
| 127 |
| 123 // Encryption of Header Extensions, see RFC 6904 for details: | 128 // Encryption of Header Extensions, see RFC 6904 for details: |
| 124 // https://tools.ietf.org/html/rfc6904 | 129 // https://tools.ietf.org/html/rfc6904 |
| 125 static const char* kEncryptHeaderExtensionsUri; | 130 static const char* kEncryptHeaderExtensionsUri; |
| 126 | 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; |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ |
| OLD | NEW |