summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/VideoModule.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/camera/VideoModule.java')
-rw-r--r--src/com/android/camera/VideoModule.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/com/android/camera/VideoModule.java b/src/com/android/camera/VideoModule.java
index 1bd395188..59874dd81 100644
--- a/src/com/android/camera/VideoModule.java
+++ b/src/com/android/camera/VideoModule.java
@@ -646,6 +646,7 @@ public class VideoModule implements CameraModule,
mUI.animateCapture();
}
}
+ mUI.showUIafterRecording();
}
public void onVideoSaved() {
@@ -687,10 +688,8 @@ public class VideoModule implements CameraModule,
if (stop) {
onStopVideoRecording();
- mUI.showUIafterRecording();
} else {
startVideoRecording();
- mUI.hideUIwhileRecording();
}
mUI.enableShutter(false);
@@ -1597,6 +1596,7 @@ public class VideoModule implements CameraModule,
mStartRecPending = true;
mUI.cancelAnimations();
mUI.setSwipingEnabled(false);
+ mUI.hideUIwhileRecording();
mActivity.updateStorageSpaceAndHint();
if (mActivity.getStorageSpaceBytes() <= Storage.LOW_STORAGE_THRESHOLD_BYTES) {
@@ -2276,6 +2276,11 @@ public class VideoModule implements CameraModule,
mParameters.setVideoRotation(videoRotation);
}
+ //set low-power mode if supported
+ String lpmSupported = mParameters.get("low-power-mode-supported");
+ if ("true".equals(lpmSupported)) {
+ mParameters.set("low-power-mode", 1);
+ }
}
@SuppressWarnings("deprecation")
private void setCameraParameters() {