| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 // details: | 80 // details: |
| 81 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/ts_126
114v120700p.pdf | 81 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/ts_126
114v120700p.pdf |
| 82 static const char* kVideoRotationUri; | 82 static const char* kVideoRotationUri; |
| 83 static const int kVideoRotationDefaultId; | 83 static const int kVideoRotationDefaultId; |
| 84 | 84 |
| 85 // Header extension for transport sequence number, see url for details: | 85 // Header extension for transport sequence number, see url for details: |
| 86 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions | 86 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions |
| 87 static const char* kTransportSequenceNumberUri; | 87 static const char* kTransportSequenceNumberUri; |
| 88 static const int kTransportSequenceNumberDefaultId; | 88 static const int kTransportSequenceNumberDefaultId; |
| 89 | 89 |
| 90 static const char* kPlayoutDelayUri; |
| 91 static const int kPlayoutDelayDefaultId; |
| 92 |
| 90 std::string uri; | 93 std::string uri; |
| 91 int id; | 94 int id; |
| 92 }; | 95 }; |
| 93 | 96 |
| 94 struct VideoStream { | 97 struct VideoStream { |
| 95 VideoStream(); | 98 VideoStream(); |
| 96 ~VideoStream(); | 99 ~VideoStream(); |
| 97 std::string ToString() const; | 100 std::string ToString() const; |
| 98 | 101 |
| 99 size_t width; | 102 size_t width; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 struct VoicePacing { | 169 struct VoicePacing { |
| 167 VoicePacing() : enabled(false) {} | 170 VoicePacing() : enabled(false) {} |
| 168 explicit VoicePacing(bool value) : enabled(value) {} | 171 explicit VoicePacing(bool value) : enabled(value) {} |
| 169 static const ConfigOptionID identifier = ConfigOptionID::kVoicePacing; | 172 static const ConfigOptionID identifier = ConfigOptionID::kVoicePacing; |
| 170 bool enabled; | 173 bool enabled; |
| 171 }; | 174 }; |
| 172 | 175 |
| 173 } // namespace webrtc | 176 } // namespace webrtc |
| 174 | 177 |
| 175 #endif // WEBRTC_CONFIG_H_ | 178 #endif // WEBRTC_CONFIG_H_ |
| OLD | NEW |