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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 // These keys are google specific. | 67 // These keys are google specific. |
68 static const char kGoogEchoCancellation[]; // googEchoCancellation | 68 static const char kGoogEchoCancellation[]; // googEchoCancellation |
69 | 69 |
70 static const char kExtendedFilterEchoCancellation[]; // googEchoCancellation2 | 70 static const char kExtendedFilterEchoCancellation[]; // googEchoCancellation2 |
71 static const char kDAEchoCancellation[]; // googDAEchoCancellation | 71 static const char kDAEchoCancellation[]; // googDAEchoCancellation |
72 static const char kAutoGainControl[]; // googAutoGainControl | 72 static const char kAutoGainControl[]; // googAutoGainControl |
73 static const char kExperimentalAutoGainControl[]; // googAutoGainControl2 | 73 static const char kExperimentalAutoGainControl[]; // googAutoGainControl2 |
74 static const char kNoiseSuppression[]; // googNoiseSuppression | 74 static const char kNoiseSuppression[]; // googNoiseSuppression |
75 static const char kExperimentalNoiseSuppression[]; // googNoiseSuppression2 | 75 static const char kExperimentalNoiseSuppression[]; // googNoiseSuppression2 |
76 static const char kIntelligibilityEnhancer[]; // intelligibilityEnhancer | 76 static const char kIntelligibilityEnhancer[]; // intelligibilityEnhancer |
| 77 static const char kLevelControl[]; // levelControl |
77 static const char kHighpassFilter[]; // googHighpassFilter | 78 static const char kHighpassFilter[]; // googHighpassFilter |
78 static const char kTypingNoiseDetection[]; // googTypingNoiseDetection | 79 static const char kTypingNoiseDetection[]; // googTypingNoiseDetection |
79 static const char kAudioMirroring[]; // googAudioMirroring | 80 static const char kAudioMirroring[]; // googAudioMirroring |
80 | 81 |
81 // Google-specific constraint keys for a local video source | 82 // Google-specific constraint keys for a local video source |
82 static const char kNoiseReduction[]; // googNoiseReduction | 83 static const char kNoiseReduction[]; // googNoiseReduction |
83 | 84 |
84 // Constraint keys for CreateOffer / CreateAnswer | 85 // Constraint keys for CreateOffer / CreateAnswer |
85 // Specified by the W3C PeerConnection spec | 86 // Specified by the W3C PeerConnection spec |
86 static const char kOfferToReceiveVideo[]; // OfferToReceiveVideo | 87 static const char kOfferToReceiveVideo[]; // OfferToReceiveVideo |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 size_t* mandatory_constraints); | 133 size_t* mandatory_constraints); |
133 | 134 |
134 // Copy all relevant constraints into an RTCConfiguration object. | 135 // Copy all relevant constraints into an RTCConfiguration object. |
135 void CopyConstraintsIntoRtcConfiguration( | 136 void CopyConstraintsIntoRtcConfiguration( |
136 const MediaConstraintsInterface* constraints, | 137 const MediaConstraintsInterface* constraints, |
137 PeerConnectionInterface::RTCConfiguration* configuration); | 138 PeerConnectionInterface::RTCConfiguration* configuration); |
138 | 139 |
139 } // namespace webrtc | 140 } // namespace webrtc |
140 | 141 |
141 #endif // WEBRTC_API_MEDIACONSTRAINTSINTERFACE_H_ | 142 #endif // WEBRTC_API_MEDIACONSTRAINTSINTERFACE_H_ |
OLD | NEW |