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

Unified Diff: webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java

Issue 2184653002: Add an option to disable built-in AGC/NS to AppRTC Demo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 5 months 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
« no previous file with comments | « webrtc/examples/androidapp/src/org/appspot/apprtc/SettingsActivity.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java
diff --git a/webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java b/webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java
index c8f0f55dc762a4c0400c1e4c21853de2edd0c00c..a8b65c20d68c206ed0a69d729df16b170e78815f 100644
--- a/webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java
+++ b/webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java
@@ -283,7 +283,9 @@ public class PeerConnectionClientTest extends InstrumentationTestCase
false, /* noAudioProcessing */
false, /* aecDump */
false /* useOpenSLES */,
- false /* disableBuiltInAEC */);
+ false /* disableBuiltInAEC */,
+ false /* disableBuiltInAGC */,
+ false /* disableBuiltInNS */);
return peerConnectionParameters;
}
@@ -311,7 +313,9 @@ public class PeerConnectionClientTest extends InstrumentationTestCase
false, /* noAudioProcessing */
false, /* aecDump */
false /* useOpenSLES */,
- false /* disableBuiltInAEC */);
+ false /* disableBuiltInAEC */,
+ false /* disableBuiltInAGC */,
+ false /* disableBuiltInNS */);
return peerConnectionParameters;
}
« no previous file with comments | « webrtc/examples/androidapp/src/org/appspot/apprtc/SettingsActivity.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698