| 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 85052ea3e28be26b2c5262f30d2ee09694706aa8..eb6aa0cb6a078ce8865b1f913d8475e877cf1c14 100644
|
| --- a/webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java
|
| +++ b/webrtc/examples/androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java
|
| @@ -281,11 +281,13 @@ public class PeerConnectionClientTest extends InstrumentationTestCase
|
| "OPUS", /* audioCodec */
|
| false, /* noAudioProcessing */
|
| false, /* aecDump */
|
| - false /* useOpenSLES */,
|
| - false /* disableBuiltInAEC */,
|
| - false /* disableBuiltInAGC */,
|
| - false /* disableBuiltInNS */,
|
| - false /* enableLevelControl */);
|
| + false, /* useOpenSLES */
|
| + false, /* disableBuiltInAEC */
|
| + false, /* disableBuiltInAGC */
|
| + false, /* disableBuiltInNS */
|
| + false, /* enableLevelControl */
|
| + null, /* videoFileAsCamera */
|
| + 0, 0 /* videoFileAsCameraWidth, videoFileAsCameraHeight */);
|
| return peerConnectionParameters;
|
| }
|
|
|
| @@ -312,11 +314,15 @@ public class PeerConnectionClientTest extends InstrumentationTestCase
|
| "OPUS", /* audioCodec */
|
| false, /* noAudioProcessing */
|
| false, /* aecDump */
|
| - false /* useOpenSLES */,
|
| - false /* disableBuiltInAEC */,
|
| - false /* disableBuiltInAGC */,
|
| - false /* disableBuiltInNS */,
|
| - false /* enableLevelControl */);
|
| + false, /* useOpenSLES */
|
| + false, /* disableBuiltInAEC */
|
| + false, /* disableBuiltInAGC */
|
| + false, /* disableBuiltInNS */
|
| + false, /* enableLevelControl */
|
| + null, /* videoFileAsCamera */
|
| + 0, 0 /* videoFileAsCameraWidth, videoFileAsCameraHeight */);
|
| +
|
| +
|
| return peerConnectionParameters;
|
| }
|
|
|
|
|