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

Side by Side Diff: content/renderer/media/media_stream_audio_processor_options.cc

Issue 227743004: Added a kEchoCancellation constraint to turn off the audio processing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: added missing new unittest Created 6 years, 8 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 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/media/media_stream_audio_processor_options.h" 5 #include "content/renderer/media/media_stream_audio_processor_options.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
11 #include "content/common/media/media_stream_options.h" 12 #include "content/common/media/media_stream_options.h"
13 #include "content/renderer/media/media_stream_constraints_util.h"
12 #include "content/renderer/media/rtc_media_constraints.h" 14 #include "content/renderer/media/rtc_media_constraints.h"
13 #include "media/audio/audio_parameters.h" 15 #include "media/audio/audio_parameters.h"
14 #include "third_party/WebKit/public/platform/WebMediaConstraints.h"
15 #include "third_party/libjingle/source/talk/app/webrtc/mediaconstraintsinterface .h"
16 #include "third_party/webrtc/modules/audio_processing/include/audio_processing.h " 16 #include "third_party/webrtc/modules/audio_processing/include/audio_processing.h "
17 #include "third_party/webrtc/modules/audio_processing/typing_detection.h" 17 #include "third_party/webrtc/modules/audio_processing/typing_detection.h"
18 18
19 namespace content { 19 namespace content {
20 20
21 const char MediaAudioConstraints::kEchoCancellation[] = "echoCancellation";
22 const char MediaAudioConstraints::kGoogEchoCancellation[] =
23 "googEchoCancellation";
24 const char MediaAudioConstraints::kGoogExperimentalEchoCancellation[] =
25 "googEchoCancellation2";
26 const char MediaAudioConstraints::kGoogAutoGainControl[] =
27 "googAutoGainControl";
28 const char MediaAudioConstraints::kGoogExperimentalAutoGainControl[] =
29 "googAutoGainControl2";
30 const char MediaAudioConstraints::kGoogNoiseSuppression[] =
31 "googNoiseSuppression";
32 const char MediaAudioConstraints::kGoogExperimentalNoiseSuppression[] =
33 "googNoiseSuppression2";
34 const char MediaAudioConstraints::kGoogHighpassFilter[] = "googHighpassFilter";
35 const char MediaAudioConstraints::kGoogTypingNoiseDetection[] =
36 "googTypingNoiseDetection";
37 const char MediaAudioConstraints::kGoogAudioMirroring[] = "googAudioMirroring";
38
21 namespace { 39 namespace {
22 40
23 // Constant constraint keys which enables default audio constraints on 41 // Constant constraint keys which enables default audio constraints on
24 // mediastreams with audio. 42 // mediastreams with audio.
25 struct { 43 struct {
26 const char* key; 44 const char* key;
27 const char* value; 45 bool value;
28 } const kDefaultAudioConstraints[] = { 46 } const kDefaultAudioConstraints[] = {
29 { webrtc::MediaConstraintsInterface::kEchoCancellation, 47 { MediaAudioConstraints::kEchoCancellation, true },
30 webrtc::MediaConstraintsInterface::kValueTrue }, 48 { MediaAudioConstraints::kGoogEchoCancellation, true },
31 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) 49 #if defined(OS_CHROMEOS) || defined(OS_MACOSX)
32 // Enable the extended filter mode AEC on platforms with known echo issues. 50 // Enable the extended filter mode AEC on platforms with known echo issues.
33 { webrtc::MediaConstraintsInterface::kExperimentalEchoCancellation, 51 { MediaAudioConstraints::kGoogExperimentalEchoCancellation, true },
34 webrtc::MediaConstraintsInterface::kValueTrue }, 52 #else
53 { MediaAudioConstraints::kGoogExperimentalEchoCancellation, false },
35 #endif 54 #endif
36 { webrtc::MediaConstraintsInterface::kAutoGainControl, 55 { MediaAudioConstraints::kGoogAutoGainControl, true },
37 webrtc::MediaConstraintsInterface::kValueTrue }, 56 { MediaAudioConstraints::kGoogExperimentalAutoGainControl, true },
38 { webrtc::MediaConstraintsInterface::kExperimentalAutoGainControl, 57 { MediaAudioConstraints::kGoogNoiseSuppression, true },
39 webrtc::MediaConstraintsInterface::kValueTrue }, 58 { MediaAudioConstraints::kGoogHighpassFilter, true },
40 { webrtc::MediaConstraintsInterface::kNoiseSuppression, 59 { MediaAudioConstraints::kGoogTypingNoiseDetection, true },
41 webrtc::MediaConstraintsInterface::kValueTrue }, 60 { MediaAudioConstraints::kGoogExperimentalNoiseSuppression, false },
42 { webrtc::MediaConstraintsInterface::kHighpassFilter,
43 webrtc::MediaConstraintsInterface::kValueTrue },
44 { webrtc::MediaConstraintsInterface::kTypingNoiseDetection,
45 webrtc::MediaConstraintsInterface::kValueTrue },
46 #if defined(OS_WIN) 61 #if defined(OS_WIN)
47 { content::kMediaStreamAudioDucking, 62 { kMediaStreamAudioDucking, true },
48 webrtc::MediaConstraintsInterface::kValueTrue }, 63 #else
64 { kMediaStreamAudioDucking, false },
49 #endif 65 #endif
50 }; 66 };
51 67
68 bool GetDefaultValueForConstraint(const blink::WebMediaConstraints& constraints,
69 const std::string& key) {
70 // The default audio processing is false for gUM with a specific
71 // kMediaStreamSource, which is used by tab capture and screen capture.
72 std::string value;
73 if (GetConstraintValue(constraints, kMediaStreamSource, &value))
74 return false;
75
76 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kDefaultAudioConstraints); ++i) {
77 if (kDefaultAudioConstraints[i].key == key)
78 return kDefaultAudioConstraints[i].value;
79 }
80
81 return false;
82 }
83
52 } // namespace 84 } // namespace
53 85
54 void ApplyFixedAudioConstraints(RTCMediaConstraints* constraints) { 86 // TODO(xians): Remove this method after the APM in WebRtc is deprecated.
87 void MediaAudioConstraints::ApplyFixedAudioConstraints(
88 RTCMediaConstraints* constraints) {
55 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kDefaultAudioConstraints); ++i) { 89 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kDefaultAudioConstraints); ++i) {
56 bool already_set_value; 90 bool already_set_value;
57 if (!webrtc::FindConstraint(constraints, kDefaultAudioConstraints[i].key, 91 if (!webrtc::FindConstraint(constraints, kDefaultAudioConstraints[i].key,
58 &already_set_value, NULL)) { 92 &already_set_value, NULL)) {
59 constraints->AddOptional(kDefaultAudioConstraints[i].key, 93 const std::string value = kDefaultAudioConstraints[i].value ?
60 kDefaultAudioConstraints[i].value, false); 94 webrtc::MediaConstraintsInterface::kValueTrue :
95 webrtc::MediaConstraintsInterface::kValueFalse;
96 constraints->AddOptional(kDefaultAudioConstraints[i].key, value, false);
61 } else { 97 } else {
62 DVLOG(1) << "Constraint " << kDefaultAudioConstraints[i].key 98 DVLOG(1) << "Constraint " << kDefaultAudioConstraints[i].key
63 << " already set to " << already_set_value; 99 << " already set to " << already_set_value;
64 } 100 }
65 } 101 }
66 } 102 }
67 103
68 bool NeedsAudioProcessing(const blink::WebMediaConstraints& constraints, 104 MediaAudioConstraints::MediaAudioConstraints(
69 int effects) { 105 const blink::WebMediaConstraints& constraints, int effects)
70 RTCMediaConstraints native_constraints(constraints); 106 : constraints_(constraints), effects_(effects) {}
71 ApplyFixedAudioConstraints(&native_constraints); 107
72 if (effects & media::AudioParameters::ECHO_CANCELLER) { 108 MediaAudioConstraints::~MediaAudioConstraints() {}
73 // If platform echo canceller is enabled, disable the software AEC. 109
74 native_constraints.AddOptional( 110 // TODO(xians): Remove this method after the APM in WebRtc is deprecated.
75 MediaConstraintsInterface::kEchoCancellation, 111 bool MediaAudioConstraints::NeedsAudioProcessing() {
76 MediaConstraintsInterface::kValueFalse, true);
77 }
78 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kDefaultAudioConstraints); ++i) { 112 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kDefaultAudioConstraints); ++i) {
79 bool value = false; 113 // |kMediaStreamAudioDucking| does not require audio processing.
80 if (webrtc::FindConstraint(&native_constraints, 114 if (kDefaultAudioConstraints[i].key != kMediaStreamAudioDucking &&
81 kDefaultAudioConstraints[i].key, &value, NULL) && 115 GetProperty(kDefaultAudioConstraints[i].key)) {
82 value) {
83 return true; 116 return true;
84 } 117 }
85 } 118 }
86 119
87 return false; 120 return false;
88 } 121 }
89 122
90 bool GetPropertyFromConstraints(const MediaConstraintsInterface* constraints, 123 bool MediaAudioConstraints::GetProperty(const std::string& key) {
91 const std::string& key) {
92 bool value = false; 124 bool value = false;
93 return webrtc::FindConstraint(constraints, key, &value, NULL) && value; 125 if (key == kGoogEchoCancellation) {
126 // If platform echo canceller is enabled, disable the software AEC.
127 if (effects_ & media::AudioParameters::ECHO_CANCELLER)
ajm 2014/04/24 21:39:12 You'll need to apply this to kEchoCancellation if
no longer working on chromium 2014/04/28 12:42:54 Yes, I will keep it in mind. And I think we have
128 return false;
129
130 // If |kEchoCancellation| is specified in the constraints, it will
131 // overwrite the value of |kGoogEchoCancellation|.
132 if (GetConstraintValue(constraints_, kEchoCancellation, &value))
ajm 2014/04/24 21:39:12 Not sure we want to make GetProperty this "smart",
tommi (sloooow) - chröme 2014/04/25 15:09:31 I don't think that checking kEchoCancellation or k
no longer working on chromium 2014/04/28 12:42:54 As offline discussed, I added a GetEchoCancellatio
133 return value;
134 }
135
136 // Return the value if the constraint is specified in |constraints|,
137 // otherwise return the default value.
138 if (!GetConstraintValue(constraints_, key, &value))
139 value = GetDefaultValueForConstraint(constraints_, key);
140
141 return value;
142 }
143
144 bool MediaAudioConstraints::IsValid() {
145 blink::WebVector<blink::WebMediaConstraint> mandatory;
146 constraints_.getMandatoryConstraints(mandatory);
147 for (size_t i = 0; i < mandatory.size(); ++i) {
148 if (mandatory[i].m_name.utf8() == kMediaStreamSource)
149 continue;
150
151 bool valid = false;
152 for (size_t j = 0; j < ARRAYSIZE_UNSAFE(kDefaultAudioConstraints); ++j) {
153 if (mandatory[i].m_name.utf8() == kDefaultAudioConstraints[j].key) {
154 valid = true;
155 break;
156 }
157 }
158
159 if (!valid) {
160 DLOG(ERROR) << "Invalid MediaStream constraint. Name:"
161 << mandatory[i].m_name.utf8();
162 return false;
163 }
164 }
165
166 return true;
94 } 167 }
95 168
96 void EnableEchoCancellation(AudioProcessing* audio_processing) { 169 void EnableEchoCancellation(AudioProcessing* audio_processing) {
97 #if defined(OS_ANDROID) 170 #if defined(OS_ANDROID)
98 // Mobile devices are using AECM. 171 // Mobile devices are using AECM.
99 int err = audio_processing->echo_control_mobile()->set_routing_mode( 172 int err = audio_processing->echo_control_mobile()->set_routing_mode(
100 webrtc::EchoControlMobile::kSpeakerphone); 173 webrtc::EchoControlMobile::kSpeakerphone);
101 err |= audio_processing->echo_control_mobile()->Enable(true); 174 err |= audio_processing->echo_control_mobile()->Enable(true);
102 CHECK_EQ(err, 0); 175 CHECK_EQ(err, 0);
103 #else 176 #else
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 } 280 }
208 281
209 int median = 0, std = 0; 282 int median = 0, std = 0;
210 if (!audio_processing->echo_cancellation()->GetDelayMetrics(&median, &std)) { 283 if (!audio_processing->echo_cancellation()->GetDelayMetrics(&median, &std)) {
211 stats->echo_delay_median_ms = median; 284 stats->echo_delay_median_ms = median;
212 stats->echo_delay_std_ms = std; 285 stats->echo_delay_std_ms = std;
213 } 286 }
214 } 287 }
215 288
216 } // namespace content 289 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698