 Chromium Code Reviews
 Chromium Code Reviews Issue 54383003:
  Added an "enable-audio-processor" flag and WebRtcAudioProcessor class  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 54383003:
  Added an "enable-audio-processor" flag and WebRtcAudioProcessor class  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| 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. |