diff options
author | Zhijun He <zhijunhe@google.com> | 2013-09-13 11:32:20 -0700 |
---|---|---|
committer | Zhijun He <zhijunhe@google.com> | 2013-09-13 13:27:03 -0700 |
commit | bbae94a02e73020646535b0d915f4557c39f357b (patch) | |
tree | 8c0d0bd13185dcfc144423e2836a1f29ef84ce68 /core/java/android/hardware | |
parent | 074dc2eb2da23976bc2916cfe7c61dfcd9977e8f (diff) | |
download | frameworks_base-bbae94a02e73020646535b0d915f4557c39f357b.zip frameworks_base-bbae94a02e73020646535b0d915f4557c39f357b.tar.gz frameworks_base-bbae94a02e73020646535b0d915f4557c39f357b.tar.bz2 |
Camera2: Rename TEMPLATE_MANUAL to TEMPLATE_ZERO_SHUTTER_LAG
It collides with HAL ZSL template, rename it to TEMPLATE_ZERO_SHUTTER_LAG and
hide it for now.
Bug: 10690122
Change-Id: I793154849aa7aa4bf4874e2ff3f3890dd05b1f9e
Diffstat (limited to 'core/java/android/hardware')
-rw-r--r-- | core/java/android/hardware/camera2/CameraDevice.java | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/core/java/android/hardware/camera2/CameraDevice.java b/core/java/android/hardware/camera2/CameraDevice.java index 75c0f7d..0c13b0f 100644 --- a/core/java/android/hardware/camera2/CameraDevice.java +++ b/core/java/android/hardware/camera2/CameraDevice.java @@ -89,6 +89,16 @@ public interface CameraDevice extends AutoCloseable { public static final int TEMPLATE_VIDEO_SNAPSHOT = 4; /** + * Create a request suitable for zero shutter lag still capture. This means + * means maximizing image quality without compromising preview frame rate. + * AE/AWB/AF should be on auto mode. + * + * @see #createCaptureRequest + * @hide + */ + public static final int TEMPLATE_ZERO_SHUTTER_LAG = 5; + + /** * A basic template for direct application control of capture * parameters. All automatic control is disabled (auto-exposure, auto-white * balance, auto-focus), and post-processing parameters are set to preview @@ -97,8 +107,9 @@ public interface CameraDevice extends AutoCloseable { * application depending on the intended use case. * * @see #createCaptureRequest + * @hide */ - public static final int TEMPLATE_MANUAL = 5; + public static final int TEMPLATE_MANUAL = 6; /** * Get the ID of this camera device. |