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

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

Issue 2024083002: VideoCapturerAndroidTestFixtures: Fix deprecation compile warnings (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTestFixtures.java
diff --git a/webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTestFixtures.java b/webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTestFixtures.java
index 04643f15278950af2e53c3ca3659212d6cea28d7..6c4a6ea96fbaf50128f35af41fd1119b933e6360 100644
--- a/webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTestFixtures.java
+++ b/webrtc/api/androidtests/src/org/webrtc/VideoCapturerAndroidTestFixtures.java
@@ -10,7 +10,6 @@
package org.webrtc;
import android.content.Context;
-import android.hardware.Camera;
import org.webrtc.VideoCapturerAndroidTestFixtures;
import org.webrtc.CameraEnumerationAndroid.CaptureFormat;
@@ -22,6 +21,7 @@ import java.util.concurrent.CountDownLatch;
import static junit.framework.Assert.*;
+@SuppressWarnings("deprecation")
public class VideoCapturerAndroidTestFixtures {
static class RendererCallbacks implements VideoRenderer.Callbacks {
private int framesRendered = 0;
@@ -217,7 +217,7 @@ public class VideoCapturerAndroidTestFixtures {
// Return true if the device under test have at least two cameras.
@SuppressWarnings("deprecation")
static public boolean HaveTwoCameras() {
- return (Camera.getNumberOfCameras() >= 2);
+ return (android.hardware.Camera.getNumberOfCameras() >= 2);
}
static public void release(VideoCapturerAndroid capturer) {
@@ -227,7 +227,7 @@ public class VideoCapturerAndroidTestFixtures {
static public void startCapturerAndRender(VideoCapturerAndroid capturer)
throws InterruptedException {
- PeerConnectionFactory factory = new PeerConnectionFactory();
+ PeerConnectionFactory factory = new PeerConnectionFactory(null /* options */);
VideoSource source =
factory.createVideoSource(capturer, new MediaConstraints());
VideoTrack track = factory.createVideoTrack("dummy", source);
@@ -240,7 +240,7 @@ public class VideoCapturerAndroidTestFixtures {
}
static public void switchCamera(VideoCapturerAndroid capturer) throws InterruptedException {
- PeerConnectionFactory factory = new PeerConnectionFactory();
+ PeerConnectionFactory factory = new PeerConnectionFactory(null /* options */);
VideoSource source =
factory.createVideoSource(capturer, new MediaConstraints());
VideoTrack track = factory.createVideoTrack("dummy", source);
@@ -330,7 +330,7 @@ public class VideoCapturerAndroidTestFixtures {
static public void stopRestartVideoSource(VideoCapturerAndroid capturer)
throws InterruptedException {
- PeerConnectionFactory factory = new PeerConnectionFactory();
+ PeerConnectionFactory factory = new PeerConnectionFactory(null /* options */);
VideoSource source =
factory.createVideoSource(capturer, new MediaConstraints());
VideoTrack track = factory.createVideoTrack("dummy", source);
@@ -403,7 +403,7 @@ public class VideoCapturerAndroidTestFixtures {
VideoCapturerAndroid capturer, Context appContext) throws InterruptedException {
final List<CaptureFormat> formats = capturer.getSupportedFormats();
final CameraEnumerationAndroid.CaptureFormat format = formats.get(0);
- Camera camera = Camera.open(capturer.getCurrentCameraId());
+ android.hardware.Camera camera = android.hardware.Camera.open(capturer.getCurrentCameraId());
final SurfaceTextureHelper surfaceTextureHelper = SurfaceTextureHelper.create(
"SurfaceTextureHelper test" /* threadName */, null /* sharedContext */);
@@ -428,7 +428,7 @@ public class VideoCapturerAndroidTestFixtures {
VideoCapturerAndroid capturer, Context appContext) throws InterruptedException {
final List<CaptureFormat> formats = capturer.getSupportedFormats();
final CameraEnumerationAndroid.CaptureFormat format = formats.get(0);
- Camera camera = Camera.open(capturer.getCurrentCameraId());
+ android.hardware.Camera camera = android.hardware.Camera.open(capturer.getCurrentCameraId());
final SurfaceTextureHelper surfaceTextureHelper = SurfaceTextureHelper.create(
"SurfaceTextureHelper test" /* threadName */, null /* sharedContext */);
@@ -454,7 +454,7 @@ public class VideoCapturerAndroidTestFixtures {
VideoCapturerAndroid capturer, Context appContext) throws InterruptedException {
final List<CaptureFormat> formats = capturer.getSupportedFormats();
final CameraEnumerationAndroid.CaptureFormat format = formats.get(0);
- Camera camera = Camera.open(capturer.getCurrentCameraId());
+ android.hardware.Camera camera = android.hardware.Camera.open(capturer.getCurrentCameraId());
final SurfaceTextureHelper surfaceTextureHelper = SurfaceTextureHelper.create(
"SurfaceTextureHelper test" /* threadName */, null /* sharedContext */);
@@ -507,7 +507,7 @@ public class VideoCapturerAndroidTestFixtures {
static public void returnBufferLateEndToEnd(VideoCapturerAndroid capturer)
throws InterruptedException {
- final PeerConnectionFactory factory = new PeerConnectionFactory();
+ final PeerConnectionFactory factory = new PeerConnectionFactory(null /* options */);
final VideoSource source = factory.createVideoSource(capturer, new MediaConstraints());
final VideoTrack track = factory.createVideoTrack("dummy", source);
final FakeAsyncRenderer renderer = new FakeAsyncRenderer();
@@ -567,7 +567,7 @@ public class VideoCapturerAndroidTestFixtures {
}
static public void scaleCameraOutput(VideoCapturerAndroid capturer) throws InterruptedException {
- PeerConnectionFactory factory = new PeerConnectionFactory();
+ PeerConnectionFactory factory = new PeerConnectionFactory(null /* options */);
VideoSource source =
factory.createVideoSource(capturer, new MediaConstraints());
VideoTrack track = factory.createVideoTrack("dummy", source);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698