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

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

Issue 2871393002: AppRTCMobile support to turn off the WebRTC AGC and HPF (Closed)
Patch Set: Removed coded that did not belong to this CL Created 3 years, 7 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 33956f77f2fac4a3472b1e92d037eb65df4d76d2..e93ce749285912f3406bc2097862f08469fcfa3c 100644
--- a/webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java
+++ b/webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java
@@ -263,25 +263,25 @@ public class PeerConnectionClientTest implements PeerConnectionEvents {
}
private PeerConnectionParameters createParametersForAudioCall() {
- PeerConnectionParameters peerConnectionParameters =
- new PeerConnectionParameters(false, /* videoCallEnabled */
- true, /* loopback */
- false, /* tracing */
- // Video codec parameters.
- 0, /* videoWidth */
- 0, /* videoHeight */
- 0, /* videoFps */
- 0, /* videoStartBitrate */
- "", /* videoCodec */
- true, /* videoCodecHwAcceleration */
- false, /* videoFlexfecEnabled */
- // Audio codec parameters.
- 0, /* audioStartBitrate */
- "OPUS", /* audioCodec */
- false, /* noAudioProcessing */
- false, /* aecDump */
- false /* useOpenSLES */, false /* disableBuiltInAEC */, false /* disableBuiltInAGC */,
- false /* disableBuiltInNS */, false /* enableLevelControl */);
+ PeerConnectionParameters peerConnectionParameters = new PeerConnectionParameters(
+ false, /* videoCallEnabled */
+ true, /* loopback */
+ false, /* tracing */
+ // Video codec parameters.
+ 0, /* videoWidth */
+ 0, /* videoHeight */
+ 0, /* videoFps */
+ 0, /* videoStartBitrate */
+ "", /* videoCodec */
+ true, /* videoCodecHwAcceleration */
+ false, /* videoFlexfecEnabled */
+ // Audio codec parameters.
+ 0, /* audioStartBitrate */
+ "OPUS", /* audioCodec */
+ false, /* noAudioProcessing */
+ false, /* aecDump */
+ false /* useOpenSLES */, false /* disableBuiltInAEC */, false /* disableBuiltInAGC */,
+ false /* disableBuiltInNS */, false /* enableLevelControl */, false /* disableWebRtcAGC */);
return peerConnectionParameters;
}
@@ -301,25 +301,25 @@ public class PeerConnectionClientTest implements PeerConnectionEvents {
}
private PeerConnectionParameters createParametersForVideoCall(String videoCodec) {
- PeerConnectionParameters peerConnectionParameters =
- new PeerConnectionParameters(true, /* videoCallEnabled */
- true, /* loopback */
- false, /* tracing */
- // Video codec parameters.
- 0, /* videoWidth */
- 0, /* videoHeight */
- 0, /* videoFps */
- 0, /* videoStartBitrate */
- videoCodec, /* videoCodec */
- true, /* videoCodecHwAcceleration */
- false, /* videoFlexfecEnabled */
- // Audio codec parameters.
- 0, /* audioStartBitrate */
- "OPUS", /* audioCodec */
- false, /* noAudioProcessing */
- false, /* aecDump */
- false /* useOpenSLES */, false /* disableBuiltInAEC */, false /* disableBuiltInAGC */,
- false /* disableBuiltInNS */, false /* enableLevelControl */);
+ PeerConnectionParameters peerConnectionParameters = new PeerConnectionParameters(
+ true, /* videoCallEnabled */
+ true, /* loopback */
+ false, /* tracing */
+ // Video codec parameters.
+ 0, /* videoWidth */
+ 0, /* videoHeight */
+ 0, /* videoFps */
+ 0, /* videoStartBitrate */
+ videoCodec, /* videoCodec */
+ true, /* videoCodecHwAcceleration */
+ false, /* videoFlexfecEnabled */
+ // Audio codec parameters.
+ 0, /* audioStartBitrate */
+ "OPUS", /* audioCodec */
+ false, /* noAudioProcessing */
+ false, /* aecDump */
+ false /* useOpenSLES */, false /* disableBuiltInAEC */, false /* disableBuiltInAGC */,
+ false /* disableBuiltInNS */, false /* enableLevelControl */, false /* disableWebRtcAGC */);
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