summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/camera/WideAnglePanoramaModule.java14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/com/android/camera/WideAnglePanoramaModule.java b/src/com/android/camera/WideAnglePanoramaModule.java
index 06e9710f4..e8ef589d7 100644
--- a/src/com/android/camera/WideAnglePanoramaModule.java
+++ b/src/com/android/camera/WideAnglePanoramaModule.java
@@ -387,10 +387,14 @@ public class WideAnglePanoramaModule
// This is also forward compatible if we have a new facing other than
// back or front in the future.
if (cameraId == -1) cameraId = 0;
- mCameraDevice = CameraUtil.openCamera(mActivity, cameraId,
- mMainHandler, mActivity.getCameraOpenErrorCallback());
+
+ // If mCameraDevice has already exist,there is no need to obtain again
if (mCameraDevice == null) {
- return false;
+ mCameraDevice = CameraUtil.openCamera(mActivity, cameraId,
+ mMainHandler, mActivity.getCameraOpenErrorCallback());
+ if (mCameraDevice == null) {
+ return false;
+ }
}
mCameraOrientation = CameraUtil.getCameraOrientation(cameraId);
if (cameraId == CameraHolder.instance().getFrontCameraId()) mUsingFrontCamera = true;
@@ -974,7 +978,9 @@ public class WideAnglePanoramaModule
} else {
// Camera must be initialized before MosaicFrameProcessor is
// initialized. The preview size has to be decided by camera device.
- initMosaicFrameProcessorIfNeeded();
+ if (! mMosaicFrameProcessorInitialized) {
+ initMosaicFrameProcessorIfNeeded();
+ }
Point size = mUI.getPreviewAreaSize();
mPreviewUIWidth = size.x;
mPreviewUIHeight = size.y;