summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/com/android/camera/CaptureModule.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/com/android/camera/CaptureModule.java b/src/com/android/camera/CaptureModule.java
index e013124a1..02d01c222 100755
--- a/src/com/android/camera/CaptureModule.java
+++ b/src/com/android/camera/CaptureModule.java
@@ -4670,7 +4670,9 @@ public class CaptureModule implements CameraModule, PhotoController,
mState[cameraId] = STATE_PREVIEW;
mControlAFMode = CaptureRequest.CONTROL_AF_MODE_CONTINUOUS_PICTURE;
mIsAutoFocusStarted = false;
- closePreviewSession();
+ if (!isAbortCapturesEnable()) {
+ closePreviewSession();
+ }
mFrameProcessor.onClose();
if (mUI.setPreviewSize(mVideoPreviewSize.getWidth(), mVideoPreviewSize.getHeight())) {
@@ -5306,7 +5308,7 @@ public class CaptureModule implements CameraModule, PhotoController,
e.printStackTrace();
}
}
- if (!mPaused) {
+ if (!mPaused && !isAbortCapturesEnable()) {
closePreviewSession();
}
mMediaRecorderStarted = false;