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

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

Issue 1952123003: Surface the IntelligibilityEnhancer on MediaConstraints (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebasing Created 4 years, 7 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
« no previous file with comments | « webrtc/api/localaudiosource.cc ('k') | webrtc/api/mediaconstraintsinterface.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « webrtc/api/localaudiosource.cc ('k') | webrtc/api/mediaconstraintsinterface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698