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 28 matching lines...) Expand all Loading... | |
39 const char MediaConstraintsInterface::kDAEchoCancellation[] = | 39 const char MediaConstraintsInterface::kDAEchoCancellation[] = |
40 "googDAEchoCancellation"; | 40 "googDAEchoCancellation"; |
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[] = | |
50 "IntelligibilityEnhancer"; | |
tommi
2016/05/11 06:06:48
This doesn't follow the convention for audio const
aluebs-webrtc
2016/05/11 21:22:05
By convention do you mean the "goog" prefix? Becau
tommi
2016/05/12 07:06:37
This should be intelligibilityEnhancer
aluebs-webrtc
2016/05/13 02:04:38
You are totally right. Changed.
| |
49 const char MediaConstraintsInterface::kHighpassFilter[] = | 51 const char MediaConstraintsInterface::kHighpassFilter[] = |
50 "googHighpassFilter"; | 52 "googHighpassFilter"; |
51 const char MediaConstraintsInterface::kTypingNoiseDetection[] = | 53 const char MediaConstraintsInterface::kTypingNoiseDetection[] = |
52 "googTypingNoiseDetection"; | 54 "googTypingNoiseDetection"; |
53 const char MediaConstraintsInterface::kAudioMirroring[] = "googAudioMirroring"; | 55 const char MediaConstraintsInterface::kAudioMirroring[] = "googAudioMirroring"; |
54 | 56 |
55 // Google-specific constraint keys for a local video source (getUserMedia). | 57 // Google-specific constraint keys for a local video source (getUserMedia). |
56 const char MediaConstraintsInterface::kNoiseReduction[] = "googNoiseReduction"; | 58 const char MediaConstraintsInterface::kNoiseReduction[] = "googNoiseReduction"; |
57 | 59 |
58 // Constraint keys for CreateOffer / CreateAnswer defined in W3C specification. | 60 // Constraint keys for CreateOffer / CreateAnswer defined in W3C specification. |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
201 &configuration->screencast_min_bitrate); | 203 &configuration->screencast_min_bitrate); |
202 ConstraintToOptionalBool(constraints, | 204 ConstraintToOptionalBool(constraints, |
203 MediaConstraintsInterface::kCombinedAudioVideoBwe, | 205 MediaConstraintsInterface::kCombinedAudioVideoBwe, |
204 &configuration->combined_audio_video_bwe); | 206 &configuration->combined_audio_video_bwe); |
205 ConstraintToOptionalBool(constraints, | 207 ConstraintToOptionalBool(constraints, |
206 MediaConstraintsInterface::kEnableDtlsSrtp, | 208 MediaConstraintsInterface::kEnableDtlsSrtp, |
207 &configuration->enable_dtls_srtp); | 209 &configuration->enable_dtls_srtp); |
208 } | 210 } |
209 | 211 |
210 } // namespace webrtc | 212 } // namespace webrtc |
OLD | NEW |