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

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

Issue 54383003: Added an "enable-audio-processor" flag and WebRtcAudioProcessor class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: switched to Atomic32 and removed the lock, also fixed some nits. Created 7 years, 1 month 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/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index f59ce5f8e8bf4e284e2a7757815e775c0039e190..f1aba67d8d98c5e5fd03ed8db69d47d29373efd9 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -920,10 +920,14 @@ const char kZygoteCmdPrefix[] = "zygote-cmd-prefix";
const char kZygoteProcess[] = "zygote";
#if defined(ENABLE_WEBRTC)
-// Disable WebRTC device enumeration.
+// Enables audio processing in a MediaStreamTrack. When this flag is on, aec,
Henrik Grunell 2013/11/12 12:46:37 Use caps for the abbreviations: AEC, NS and AGC.
no longer working on chromium 2013/11/12 13:43:22 Done.
+// Ns and AGC will be done per MediaStreamTrack instead of in PeerConnection.
Henrik Grunell 2013/11/12 12:46:37 In PeerConnection isn't really true. I think it's
no longer working on chromium 2013/11/12 13:43:22 Talked offline, agreed to keep what it is.
+const char kEnableAudioTrackProcessing[] = "enable-audio-processor";
+
+// Disables WebRTC device enumeration.
const char kDisableDeviceEnumeration[] = "disable-device-enumeration";
-// Disable WebRTC DataChannels SCTP wire protocol support.
+// Disables WebRTC DataChannels SCTP wire protocol support.
const char kDisableSCTPDataChannels[] = "disable-sctp-data-channels";
// Disables HW decode acceleration for WebRTC.
@@ -939,7 +943,7 @@ const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding";
// Enables WebRTC AEC recordings.
const char kEnableWebRtcAecRecordings[] = "enable-webrtc-aec-recordings";
-// Enable WebRTC to open TCP server sockets.
+// Enables WebRTC to open TCP server sockets.
const char kEnableWebRtcTcpServerSocket[] = "enable-webrtc-tcp-server-socket";
// Enables VP8 HW encode acceleration for WebRTC.

Powered by Google App Engine
This is Rietveld 408576698