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

Unified Diff: webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java

Issue 1783793002: VideoCapturer: Update interface (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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/api/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java
diff --git a/webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java b/webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java
index 2e4bd38bd9ea1b535a1a2f7f5072de1d4d0f0dff..7c9872d25fb1ff17d6bc07c0888c584a98ac2728 100644
--- a/webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java
+++ b/webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java
@@ -67,10 +67,8 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@SmallTest
public void testCreateAndReleaseUsingTextures() {
- EglBase eglBase = EglBase.create();
VideoCapturerAndroidTestFixtures.release(
- VideoCapturerAndroid.create("", null, eglBase.getEglBaseContext()));
- eglBase.release();
+ VideoCapturerAndroid.create("", null, true /* captureToTexture */));
}
@SmallTest
@@ -92,11 +90,9 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@SmallTest
public void testStartVideoCapturerUsingTextures() throws InterruptedException {
perkj_webrtc 2016/03/11 15:25:02 create a copy of this to test that the current beh
magjed_webrtc 2016/03/13 11:14:34 Done.
- EglBase eglBase = EglBase.create();
VideoCapturerAndroid capturer =
- VideoCapturerAndroid.create("", null, eglBase.getEglBaseContext());
+ VideoCapturerAndroid.create("", null, true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.startCapturerAndRender(capturer);
- eglBase.release();
}
@SmallTest
@@ -136,11 +132,9 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@SmallTest
public void testSwitchVideoCapturerUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
VideoCapturerAndroid capturer =
- VideoCapturerAndroid.create("", null, eglBase.getEglBaseContext());
+ VideoCapturerAndroid.create("", null, true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.switchCamera(capturer);
- eglBase.release();
}
@MediumTest
@@ -154,14 +148,12 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@MediumTest
public void testCameraEventsUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
VideoCapturerAndroidTestFixtures.CameraEvents cameraEvents =
VideoCapturerAndroidTestFixtures.createCameraEvents();
VideoCapturerAndroid capturer =
- VideoCapturerAndroid.create("", cameraEvents, eglBase.getEglBaseContext());
+ VideoCapturerAndroid.create("", cameraEvents, true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.cameraEventsInvoked(
capturer, cameraEvents, getInstrumentation().getContext());
- eglBase.release();
}
@MediumTest
@@ -176,14 +168,12 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@MediumTest
public void testCameraCallsAfterStopUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
final String deviceName = CameraEnumerationAndroid.getDeviceName(0);
final VideoCapturerAndroid capturer = VideoCapturerAndroid.create(deviceName, null,
- eglBase.getEglBaseContext());
+ true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.cameraCallsAfterStop(capturer,
getInstrumentation().getContext());
- eglBase.release();
}
@SmallTest
@@ -196,11 +186,9 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@SmallTest
public void testStopRestartVideoSourceUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
VideoCapturerAndroid capturer =
- VideoCapturerAndroid.create("", null, eglBase.getEglBaseContext());
+ VideoCapturerAndroid.create("", null, true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.stopRestartVideoSource(capturer);
- eglBase.release();
}
@SmallTest
@@ -216,13 +204,11 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@SmallTest
public void testStartStopWithDifferentResolutionsUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
String deviceName = CameraEnumerationAndroid.getDeviceName(0);
VideoCapturerAndroid capturer =
- VideoCapturerAndroid.create(deviceName, null, eglBase.getEglBaseContext());
+ VideoCapturerAndroid.create(deviceName, null, true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.startStopWithDifferentResolutions(capturer,
getInstrumentation().getContext());
- eglBase.release();
}
@SmallTest
@@ -273,13 +259,11 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@SmallTest
public void testReturnBufferLateUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
String deviceName = CameraEnumerationAndroid.getDeviceName(0);
VideoCapturerAndroid capturer =
- VideoCapturerAndroid.create(deviceName, null, eglBase.getEglBaseContext());
+ VideoCapturerAndroid.create(deviceName, null, true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.returnBufferLate(capturer,
getInstrumentation().getContext());
- eglBase.release();
}
@MediumTest
@@ -293,25 +277,21 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
@MediumTest
public void testReturnBufferLateEndToEndUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
final VideoCapturerAndroid capturer =
- VideoCapturerAndroid.create("", null, eglBase.getEglBaseContext());
+ VideoCapturerAndroid.create("", null, true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.returnBufferLateEndToEnd(capturer);
- eglBase.release();
}
@MediumTest
// This test that CameraEventsHandler.onError is triggered if video buffers are not returned to
// the capturer.
public void testCameraFreezedEventOnBufferStarvationUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
VideoCapturerAndroidTestFixtures.CameraEvents cameraEvents =
VideoCapturerAndroidTestFixtures.createCameraEvents();
VideoCapturerAndroid capturer = VideoCapturerAndroid.create("", cameraEvents,
- eglBase.getEglBaseContext());
+ true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.cameraFreezedEventOnBufferStarvationUsingTextures(capturer,
cameraEvents, getInstrumentation().getContext());
- eglBase.release();
}
@MediumTest
@@ -326,10 +306,8 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
// This test that frames forwarded to a renderer is scaled if onOutputFormatRequest is
// called. This test both Java and C++ parts of of the stack.
public void testScaleCameraOutputUsingTextures() throws InterruptedException {
- EglBase eglBase = EglBase.create();
VideoCapturerAndroid capturer =
- VideoCapturerAndroid.create("", null, eglBase.getEglBaseContext());
+ VideoCapturerAndroid.create("", null, true /* captureToTexture */);
VideoCapturerAndroidTestFixtures.scaleCameraOutput(capturer);
- eglBase.release();
}
}

Powered by Google App Engine
This is Rietveld 408576698