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

Unified Diff: webrtc/api/android/java/src/org/webrtc/VideoCapturerAndroid.java

Issue 2381343002: Add onCameraDisconnected camera event. (Closed)
Patch Set: 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/api/android/java/src/org/webrtc/VideoCapturerAndroid.java
diff --git a/webrtc/api/android/java/src/org/webrtc/VideoCapturerAndroid.java b/webrtc/api/android/java/src/org/webrtc/VideoCapturerAndroid.java
index a019ff6afb8acfc1f2b7e111e1b035ee88882560..4c0cb1c061bd2f4de73f3f9a7c8cf88c61b0ab04 100644
--- a/webrtc/api/android/java/src/org/webrtc/VideoCapturerAndroid.java
+++ b/webrtc/api/android/java/src/org/webrtc/VideoCapturerAndroid.java
@@ -92,7 +92,11 @@ public class VideoCapturerAndroid
}
Logging.e(TAG, errorMessage);
if (eventsHandler != null) {
- eventsHandler.onCameraError(errorMessage);
+ if (error == android.hardware.Camera.CAMERA_ERROR_EVICTED) {
+ eventsHandler.onCameraDisconnected();
+ } else {
+ eventsHandler.onCameraError(errorMessage);
+ }
}
}
};

Powered by Google App Engine
This is Rietveld 408576698