OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 if (mandatory_constraints) | 122 if (mandatory_constraints) |
123 ++*mandatory_constraints; | 123 ++*mandatory_constraints; |
124 return rtc::FromString(string_value, value); | 124 return rtc::FromString(string_value, value); |
125 } | 125 } |
126 if (constraints->GetOptional().FindFirst(key, &string_value)) { | 126 if (constraints->GetOptional().FindFirst(key, &string_value)) { |
127 return rtc::FromString(string_value, value); | 127 return rtc::FromString(string_value, value); |
128 } | 128 } |
129 return false; | 129 return false; |
130 } | 130 } |
131 | 131 |
| 132 // As above, but for integers. |
| 133 bool FindConstraint(const MediaConstraintsInterface* constraints, |
| 134 const std::string& key, |
| 135 int* value, |
| 136 size_t* mandatory_constraints) { |
| 137 std::string string_value; |
| 138 if (!constraints) { |
| 139 return false; |
| 140 } |
| 141 if (constraints->GetMandatory().FindFirst(key, &string_value)) { |
| 142 if (mandatory_constraints) |
| 143 ++*mandatory_constraints; |
| 144 return rtc::FromString(string_value, value); |
| 145 } |
| 146 if (constraints->GetOptional().FindFirst(key, &string_value)) { |
| 147 return rtc::FromString(string_value, value); |
| 148 } |
| 149 return false; |
| 150 } |
| 151 |
| 152 rtc::Optional<bool> ConstraintToOptionalBool( |
| 153 const MediaConstraintsInterface* constraints, |
| 154 const std::string& key) { |
| 155 bool value; |
| 156 bool present = FindConstraint(constraints, key, &value, nullptr); |
| 157 if (present) { |
| 158 return rtc::Optional<bool>(value); |
| 159 } |
| 160 return rtc::Optional<bool>(); |
| 161 } |
| 162 |
| 163 rtc::Optional<int> ConstraintToOptionalInt( |
| 164 const MediaConstraintsInterface* constraints, |
| 165 const std::string& key) { |
| 166 int value; |
| 167 bool present = FindConstraint(constraints, key, &value, nullptr); |
| 168 if (present) { |
| 169 return rtc::Optional<int>(value); |
| 170 } |
| 171 return rtc::Optional<int>(); |
| 172 } |
| 173 |
132 } // namespace webrtc | 174 } // namespace webrtc |
OLD | NEW |