Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Side by Side Diff: webrtc/api/mediaconstraintsinterface.h

Issue 2095563002: Adding activation logic of the new APM level control functionality using MediaConstraints (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@ALC_RC2_CL
Patch Set: Changed logging behavior according to reviewer comments Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698