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

Unified Diff: trunk/src/content/public/common/media_stream_request.h

Issue 110303003: Revert 240548 "Enable platform echo cancellation through the Aud..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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: trunk/src/content/public/common/media_stream_request.h
===================================================================
--- trunk/src/content/public/common/media_stream_request.h (revision 240588)
+++ trunk/src/content/public/common/media_stream_request.h (working copy)
@@ -106,15 +106,14 @@
// in media::AudioParameters.
struct AudioDeviceParameters {
AudioDeviceParameters()
- : sample_rate(), channel_layout(), frames_per_buffer(), effects() {
+ : sample_rate(), channel_layout(), frames_per_buffer() {
}
AudioDeviceParameters(int sample_rate, int channel_layout,
- int frames_per_buffer)
+ int frames_per_buffer)
: sample_rate(sample_rate),
channel_layout(channel_layout),
- frames_per_buffer(frames_per_buffer),
- effects() {
+ frames_per_buffer(frames_per_buffer) {
}
// Preferred sample rate in samples per second for the device.
@@ -130,9 +129,6 @@
// expected browser side settings and avoid unnecessary buffering.
// See media::AudioParameters for more.
int frames_per_buffer;
-
- // See media::AudioParameters::PlatformEffectsMask.
- int effects;
};
// These below two member variables are valid only when the type of device is

Powered by Google App Engine
This is Rietveld 408576698