Chromium Code Reviews| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 93 static const int kVideoContentTypeDefaultId; | 93 static const int kVideoContentTypeDefaultId; |
| 94 | 94 |
| 95 // Header extension for transport sequence number, see url for details: | 95 // Header extension for transport sequence number, see url for details: |
| 96 // 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 |
| 97 static const char* kTransportSequenceNumberUri; | 97 static const char* kTransportSequenceNumberUri; |
| 98 static const int kTransportSequenceNumberDefaultId; | 98 static const int kTransportSequenceNumberDefaultId; |
| 99 | 99 |
| 100 static const char* kPlayoutDelayUri; | 100 static const char* kPlayoutDelayUri; |
| 101 static const int kPlayoutDelayDefaultId; | 101 static const int kPlayoutDelayDefaultId; |
| 102 | 102 |
| 103 // Frame Marking RTP Header Extension | |
|
danilchap
2017/06/28 16:07:06
remove two spaces
sergio.garcia.murillo
2017/06/29 12:58:57
Done.
| |
| 104 // https://tools.ietf.org/html/draft-ietf-avtext-framemarking-04#page-4 | |
| 105 static const char* kFrameMarkingUri; | |
| 106 static const int kFrameMarkingDefaultId; | |
| 107 | |
| 103 // Inclusive min and max IDs for one-byte header extensions, per RFC5285. | 108 // Inclusive min and max IDs for one-byte header extensions, per RFC5285. |
| 104 static const int kMinId; | 109 static const int kMinId; |
| 105 static const int kMaxId; | 110 static const int kMaxId; |
| 106 | 111 |
| 107 std::string uri; | 112 std::string uri; |
| 108 int id; | 113 int id; |
| 109 }; | 114 }; |
| 110 | 115 |
| 111 struct VideoStream { | 116 struct VideoStream { |
| 112 VideoStream(); | 117 VideoStream(); |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 232 | 237 |
| 233 private: | 238 private: |
| 234 // Access to the copy constructor is private to force use of the Copy() | 239 // Access to the copy constructor is private to force use of the Copy() |
| 235 // method for those exceptional cases where we do use it. | 240 // method for those exceptional cases where we do use it. |
| 236 VideoEncoderConfig(const VideoEncoderConfig&); | 241 VideoEncoderConfig(const VideoEncoderConfig&); |
| 237 }; | 242 }; |
| 238 | 243 |
| 239 } // namespace webrtc | 244 } // namespace webrtc |
| 240 | 245 |
| 241 #endif // WEBRTC_CONFIG_H_ | 246 #endif // WEBRTC_CONFIG_H_ |
| OLD | NEW |