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

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

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/mediaconstraintsinterface.h ('k') | webrtc/media/base/mediachannel.h » ('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 28 matching lines...) Expand all
39 const char MediaConstraintsInterface::kDAEchoCancellation[] = 39 const char MediaConstraintsInterface::kDAEchoCancellation[] =
40 "googDAEchoCancellation"; 40 "googDAEchoCancellation";
41 const char MediaConstraintsInterface::kAutoGainControl[] = 41 const char MediaConstraintsInterface::kAutoGainControl[] =
42 "googAutoGainControl"; 42 "googAutoGainControl";
43 const char MediaConstraintsInterface::kExperimentalAutoGainControl[] = 43 const char MediaConstraintsInterface::kExperimentalAutoGainControl[] =
44 "googAutoGainControl2"; 44 "googAutoGainControl2";
45 const char MediaConstraintsInterface::kNoiseSuppression[] = 45 const char MediaConstraintsInterface::kNoiseSuppression[] =
46 "googNoiseSuppression"; 46 "googNoiseSuppression";
47 const char MediaConstraintsInterface::kExperimentalNoiseSuppression[] = 47 const char MediaConstraintsInterface::kExperimentalNoiseSuppression[] =
48 "googNoiseSuppression2"; 48 "googNoiseSuppression2";
49 const char MediaConstraintsInterface::kIntelligibilityEnhancer[] =
50 "intelligibilityEnhancer";
49 const char MediaConstraintsInterface::kHighpassFilter[] = 51 const char MediaConstraintsInterface::kHighpassFilter[] =
50 "googHighpassFilter"; 52 "googHighpassFilter";
51 const char MediaConstraintsInterface::kTypingNoiseDetection[] = 53 const char MediaConstraintsInterface::kTypingNoiseDetection[] =
52 "googTypingNoiseDetection"; 54 "googTypingNoiseDetection";
53 const char MediaConstraintsInterface::kAudioMirroring[] = "googAudioMirroring"; 55 const char MediaConstraintsInterface::kAudioMirroring[] = "googAudioMirroring";
54 56
55 // Google-specific constraint keys for a local video source (getUserMedia). 57 // Google-specific constraint keys for a local video source (getUserMedia).
56 const char MediaConstraintsInterface::kNoiseReduction[] = "googNoiseReduction"; 58 const char MediaConstraintsInterface::kNoiseReduction[] = "googNoiseReduction";
57 59
58 // Constraint keys for CreateOffer / CreateAnswer defined in W3C specification. 60 // Constraint keys for CreateOffer / CreateAnswer defined in W3C specification.
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 &configuration->screencast_min_bitrate); 203 &configuration->screencast_min_bitrate);
202 ConstraintToOptionalBool(constraints, 204 ConstraintToOptionalBool(constraints,
203 MediaConstraintsInterface::kCombinedAudioVideoBwe, 205 MediaConstraintsInterface::kCombinedAudioVideoBwe,
204 &configuration->combined_audio_video_bwe); 206 &configuration->combined_audio_video_bwe);
205 ConstraintToOptionalBool(constraints, 207 ConstraintToOptionalBool(constraints,
206 MediaConstraintsInterface::kEnableDtlsSrtp, 208 MediaConstraintsInterface::kEnableDtlsSrtp,
207 &configuration->enable_dtls_srtp); 209 &configuration->enable_dtls_srtp);
208 } 210 }
209 211
210 } // namespace webrtc 212 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/api/mediaconstraintsinterface.h ('k') | webrtc/media/base/mediachannel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698