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

Unified Diff: talk/app/webrtc/java/android/org/webrtc/VideoCapturerAndroid.java

Issue 1325333003: Android: Guard against switching camera on stopped camera (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Android: Guard against switching camera on stopped camera Created 5 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
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/java/android/org/webrtc/VideoCapturerAndroid.java
diff --git a/talk/app/webrtc/java/android/org/webrtc/VideoCapturerAndroid.java b/talk/app/webrtc/java/android/org/webrtc/VideoCapturerAndroid.java
index aeb5418f75451c571a87fe1a4ffd7c094a8ccd35..5962e5585be17f7c18baa832b689e5f73a551b12 100644
--- a/talk/app/webrtc/java/android/org/webrtc/VideoCapturerAndroid.java
+++ b/talk/app/webrtc/java/android/org/webrtc/VideoCapturerAndroid.java
@@ -168,9 +168,9 @@ public class VideoCapturerAndroid extends VideoCapturer implements PreviewCallba
if (Camera.getNumberOfCameras() < 2 )
return false;
- if (cameraThread == null) {
- Log.e(TAG, "Camera has not been started");
- return false;
+ if (cameraThreadHandler == null) {
+ Log.e(TAG, "Calling switchCamera() for stopped camera.");
+ return false;
}
if (pendingCameraSwitch) {
// Do not handle multiple camera switch request to avoid blocking
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698