| 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 30 matching lines...) Expand all Loading... |
| 41 const char MediaConstraintsInterface::kAutoGainControl[] = | 41 const char MediaConstraintsInterface::kAutoGainControl[] = |
| 42 "googAutoGainControl"; | 42 "googAutoGainControl"; |
| 43 const char MediaConstraintsInterface::kExperimentalAutoGainControl[] = | 43 const char MediaConstraintsInterface::kExperimentalAutoGainControl[] = |
| 44 "googAutoGainControl2"; | 44 "googAutoGainControl2"; |
| 45 const char MediaConstraintsInterface::kNoiseSuppression[] = | 45 const char MediaConstraintsInterface::kNoiseSuppression[] = |
| 46 "googNoiseSuppression"; | 46 "googNoiseSuppression"; |
| 47 const char MediaConstraintsInterface::kExperimentalNoiseSuppression[] = | 47 const char MediaConstraintsInterface::kExperimentalNoiseSuppression[] = |
| 48 "googNoiseSuppression2"; | 48 "googNoiseSuppression2"; |
| 49 const char MediaConstraintsInterface::kIntelligibilityEnhancer[] = | 49 const char MediaConstraintsInterface::kIntelligibilityEnhancer[] = |
| 50 "intelligibilityEnhancer"; | 50 "intelligibilityEnhancer"; |
| 51 const char MediaConstraintsInterface::kLevelControl[] = "levelControl"; |
| 51 const char MediaConstraintsInterface::kHighpassFilter[] = | 52 const char MediaConstraintsInterface::kHighpassFilter[] = |
| 52 "googHighpassFilter"; | 53 "googHighpassFilter"; |
| 53 const char MediaConstraintsInterface::kTypingNoiseDetection[] = | 54 const char MediaConstraintsInterface::kTypingNoiseDetection[] = |
| 54 "googTypingNoiseDetection"; | 55 "googTypingNoiseDetection"; |
| 55 const char MediaConstraintsInterface::kAudioMirroring[] = "googAudioMirroring"; | 56 const char MediaConstraintsInterface::kAudioMirroring[] = "googAudioMirroring"; |
| 56 | 57 |
| 57 // Google-specific constraint keys for a local video source (getUserMedia). | 58 // Google-specific constraint keys for a local video source (getUserMedia). |
| 58 const char MediaConstraintsInterface::kNoiseReduction[] = "googNoiseReduction"; | 59 const char MediaConstraintsInterface::kNoiseReduction[] = "googNoiseReduction"; |
| 59 | 60 |
| 60 // Constraint keys for CreateOffer / CreateAnswer defined in W3C specification. | 61 // Constraint keys for CreateOffer / CreateAnswer defined in W3C specification. |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 &configuration->screencast_min_bitrate); | 204 &configuration->screencast_min_bitrate); |
| 204 ConstraintToOptionalBool(constraints, | 205 ConstraintToOptionalBool(constraints, |
| 205 MediaConstraintsInterface::kCombinedAudioVideoBwe, | 206 MediaConstraintsInterface::kCombinedAudioVideoBwe, |
| 206 &configuration->combined_audio_video_bwe); | 207 &configuration->combined_audio_video_bwe); |
| 207 ConstraintToOptionalBool(constraints, | 208 ConstraintToOptionalBool(constraints, |
| 208 MediaConstraintsInterface::kEnableDtlsSrtp, | 209 MediaConstraintsInterface::kEnableDtlsSrtp, |
| 209 &configuration->enable_dtls_srtp); | 210 &configuration->enable_dtls_srtp); |
| 210 } | 211 } |
| 211 | 212 |
| 212 } // namespace webrtc | 213 } // namespace webrtc |
| OLD | NEW |