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