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