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

Unified Diff: content/public/common/media_stream_request.cc

Issue 99033003: Enable platform echo cancellation through the AudioRecord path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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/public/common/media_stream_request.cc
diff --git a/content/public/common/media_stream_request.cc b/content/public/common/media_stream_request.cc
index b15a0b04879ec7a6532a954ff13ef5188411963a..0e07b1e5c277750a71105d1c90f11575c975b05a 100644
--- a/content/public/common/media_stream_request.cc
+++ b/content/public/common/media_stream_request.cc
@@ -48,12 +48,14 @@ MediaStreamDevice::MediaStreamDevice(
const std::string& name,
int sample_rate,
int channel_layout,
- int frames_per_buffer)
+ int frames_per_buffer,
+ bool use_platform_aec)
: type(type),
id(id),
video_facing(MEDIA_VIDEO_FACING_NONE),
name(name),
- input(sample_rate, channel_layout, frames_per_buffer) {
+ input(sample_rate, channel_layout, frames_per_buffer,
+ use_platform_aec) {
}
MediaStreamDevice::~MediaStreamDevice() {}

Powered by Google App Engine
This is Rietveld 408576698