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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
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 kHighpassFilter[]; // googHighpassFilter | 77 static const char kHighpassFilter[]; // googHighpassFilter |
77 static const char kTypingNoiseDetection[]; // googTypingNoiseDetection | 78 static const char kTypingNoiseDetection[]; // googTypingNoiseDetection |
78 static const char kAudioMirroring[]; // googAudioMirroring | 79 static const char kAudioMirroring[]; // googAudioMirroring |
79 | 80 |
80 // Google-specific constraint keys for a local video source | 81 // Google-specific constraint keys for a local video source |
81 static const char kNoiseReduction[]; // googNoiseReduction | 82 static const char kNoiseReduction[]; // googNoiseReduction |
82 | 83 |
83 // Constraint keys for CreateOffer / CreateAnswer | 84 // Constraint keys for CreateOffer / CreateAnswer |
84 // Specified by the W3C PeerConnection spec | 85 // Specified by the W3C PeerConnection spec |
85 static const char kOfferToReceiveVideo[]; // OfferToReceiveVideo | 86 static const char kOfferToReceiveVideo[]; // OfferToReceiveVideo |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 size_t* mandatory_constraints); | 132 size_t* mandatory_constraints); |
132 | 133 |
133 // Copy all relevant constraints into an RTCConfiguration object. | 134 // Copy all relevant constraints into an RTCConfiguration object. |
134 void CopyConstraintsIntoRtcConfiguration( | 135 void CopyConstraintsIntoRtcConfiguration( |
135 const MediaConstraintsInterface* constraints, | 136 const MediaConstraintsInterface* constraints, |
136 PeerConnectionInterface::RTCConfiguration* configuration); | 137 PeerConnectionInterface::RTCConfiguration* configuration); |
137 | 138 |
138 } // namespace webrtc | 139 } // namespace webrtc |
139 | 140 |
140 #endif // WEBRTC_API_MEDIACONSTRAINTSINTERFACE_H_ | 141 #endif // WEBRTC_API_MEDIACONSTRAINTSINTERFACE_H_ |
OLD | NEW |