| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 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 |