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

Unified Diff: content/common/media/media_stream_options.cc

Issue 99033003: Enable platform echo cancellation through the AudioRecord path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove getEnabled() logging. Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: content/common/media/media_stream_options.cc
diff --git a/content/common/media/media_stream_options.cc b/content/common/media/media_stream_options.cc
index ef5a9da033e099ab6849633bb318857b9fa567f0..58e27a59f5e49cb14243e06ff1b061d3bb87c980 100644
--- a/content/common/media/media_stream_options.cc
+++ b/content/common/media/media_stream_options.cc
@@ -47,9 +47,10 @@ StreamDeviceInfo::StreamDeviceInfo(MediaStreamType service_param,
const std::string& device_param,
int sample_rate,
int channel_layout,
- int frames_per_buffer)
+ int frames_per_buffer,
+ bool use_platform_aec)
: device(service_param, device_param, name_param, sample_rate,
- channel_layout, frames_per_buffer),
+ channel_layout, frames_per_buffer, use_platform_aec),
session_id(kNoId) {
}

Powered by Google App Engine
This is Rietveld 408576698