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

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

Issue 2273573003: Support for video file instead of camera and output video out to file (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added . to comments Created 4 years, 3 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
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..949a82fc89a059863b60e12a8b6b4ea679742027 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 */);
+
return peerConnectionParameters;
}
@@ -312,11 +314,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 */);
+
return peerConnectionParameters;
}

Powered by Google App Engine
This is Rietveld 408576698