diff options
author | Zhijun He <zhijunhe@google.com> | 2014-08-18 11:12:32 -0700 |
---|---|---|
committer | Zhijun He <zhijunhe@google.com> | 2014-08-20 22:08:52 -0700 |
commit | 9e4e439a688f1859cd895f2ff7ecad75cddb116b (patch) | |
tree | 8dcdf22500ccfc201f7c207d5e55a38a720aac8d /core/java/android/hardware/camera2 | |
parent | 635bc8bc84fe5da6d667c280bea6d96c46ffa3fd (diff) | |
download | frameworks_base-9e4e439a688f1859cd895f2ff7ecad75cddb116b.zip frameworks_base-9e4e439a688f1859cd895f2ff7ecad75cddb116b.tar.gz frameworks_base-9e4e439a688f1859cd895f2ff7ecad75cddb116b.tar.bz2 |
Camera2: update aberration correction related tag name
This is for API review update.
Bug: 17008587
Change-Id: I67c2cffed8fcc106008b0fde6f01cd81f4ce6db0
Diffstat (limited to 'core/java/android/hardware/camera2')
4 files changed, 31 insertions, 30 deletions
diff --git a/core/java/android/hardware/camera2/CameraCharacteristics.java b/core/java/android/hardware/camera2/CameraCharacteristics.java index 4e7f9dd..c525348 100644 --- a/core/java/android/hardware/camera2/CameraCharacteristics.java +++ b/core/java/android/hardware/camera2/CameraCharacteristics.java @@ -313,18 +313,18 @@ public final class CameraCharacteristics extends CameraMetadata<CameraCharacteri /** * <p>The set of aberration correction modes supported by this camera device.</p> - * <p>This metadata lists the valid modes for {@link CaptureRequest#COLOR_CORRECTION_ABERRATION_CORRECTION_MODE android.colorCorrection.aberrationCorrectionMode}. + * <p>This metadata lists the valid modes for {@link CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE android.colorCorrection.aberrationMode}. * If no aberration correction modes are available for a device, this list will solely include * OFF mode.</p> * <p>For FULL capability device ({@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} <code>==</code> FULL), OFF must be * included.</p> * - * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_CORRECTION_MODE + * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL */ @PublicKey - public static final Key<int[]> COLOR_CORRECTION_AVAILABLE_ABERRATION_CORRECTION_MODES = - new Key<int[]>("android.colorCorrection.availableAberrationCorrectionModes", int[].class); + public static final Key<int[]> COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES = + new Key<int[]>("android.colorCorrection.availableAberrationModes", int[].class); /** * <p>The set of auto-exposure antibanding modes that are diff --git a/core/java/android/hardware/camera2/CameraMetadata.java b/core/java/android/hardware/camera2/CameraMetadata.java index 9bdfe8b..3c9b7b3 100644 --- a/core/java/android/hardware/camera2/CameraMetadata.java +++ b/core/java/android/hardware/camera2/CameraMetadata.java @@ -386,8 +386,8 @@ public abstract class CameraMetadata<TKey> { * </ul> * </li> * <li>Manual aberration correction control (if aberration correction is supported)<ul> - * <li>{@link CaptureRequest#COLOR_CORRECTION_ABERRATION_CORRECTION_MODE android.colorCorrection.aberrationCorrectionMode}</li> - * <li>{@link CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_CORRECTION_MODES android.colorCorrection.availableAberrationCorrectionModes}</li> + * <li>{@link CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE android.colorCorrection.aberrationMode}</li> + * <li>{@link CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES android.colorCorrection.availableAberrationModes}</li> * </ul> * </li> * </ul> @@ -396,8 +396,8 @@ public abstract class CameraMetadata<TKey> { * <p>A given camera device may also support additional post-processing * controls, but this capability only covers the above list of controls.</p> * - * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_CORRECTION_MODE - * @see CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_CORRECTION_MODES + * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE + * @see CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES * @see CaptureRequest#COLOR_CORRECTION_GAINS * @see CaptureRequest#COLOR_CORRECTION_TRANSFORM * @see CaptureRequest#SHADING_MODE @@ -739,28 +739,28 @@ public abstract class CameraMetadata<TKey> { public static final int COLOR_CORRECTION_MODE_HIGH_QUALITY = 2; // - // Enumeration values for CaptureRequest#COLOR_CORRECTION_ABERRATION_CORRECTION_MODE + // Enumeration values for CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE // /** * <p>No aberration correction is applied.</p> - * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_CORRECTION_MODE + * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE */ - public static final int COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_OFF = 0; + public static final int COLOR_CORRECTION_ABERRATION_MODE_OFF = 0; /** * <p>Aberration correction will not slow down capture rate * relative to sensor raw output.</p> - * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_CORRECTION_MODE + * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE */ - public static final int COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_FAST = 1; + public static final int COLOR_CORRECTION_ABERRATION_MODE_FAST = 1; /** * <p>Aberration correction operates at improved quality but reduced * capture rate (relative to sensor raw output).</p> - * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_CORRECTION_MODE + * @see CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE */ - public static final int COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_HIGH_QUALITY = 2; + public static final int COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY = 2; // // Enumeration values for CaptureRequest#CONTROL_AE_ANTIBANDING_MODE @@ -1213,7 +1213,8 @@ public abstract class CameraMetadata<TKey> { * image while recording video) use case.</p> * <p>The camera device should take the highest-quality image * possible (given the other settings) without disrupting the - * frame rate of video recording. </p> + * frame rate of video recording.<br /> + * </p> * @see CaptureRequest#CONTROL_CAPTURE_INTENT */ public static final int CONTROL_CAPTURE_INTENT_VIDEO_SNAPSHOT = 4; diff --git a/core/java/android/hardware/camera2/CaptureRequest.java b/core/java/android/hardware/camera2/CaptureRequest.java index 97077e6..bcdcd62 100644 --- a/core/java/android/hardware/camera2/CaptureRequest.java +++ b/core/java/android/hardware/camera2/CaptureRequest.java @@ -569,7 +569,7 @@ public final class CaptureRequest extends CameraMetadata<CaptureRequest.Key<?>> /** * <p>Mode of operation for the chromatic aberration correction algorithm.</p> * <p>This must be set to a valid mode from - * {@link CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_CORRECTION_MODES android.colorCorrection.availableAberrationCorrectionModes}.</p> + * {@link CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES android.colorCorrection.availableAberrationModes}.</p> * <p>Chromatic (color) aberration is caused by the fact that different wavelengths of light * can not focus on the same point after exiting from the lens. This metadata defines * the high level control of chromatic aberration correction algorithm, which aims to @@ -581,14 +581,14 @@ public final class CaptureRequest extends CameraMetadata<CaptureRequest.Key<?>> * capture rate. FAST means the camera device will not slow down capture rate when * applying aberration correction.</p> * - * @see CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_CORRECTION_MODES - * @see #COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_OFF - * @see #COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_FAST - * @see #COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_HIGH_QUALITY + * @see CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES + * @see #COLOR_CORRECTION_ABERRATION_MODE_OFF + * @see #COLOR_CORRECTION_ABERRATION_MODE_FAST + * @see #COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY */ @PublicKey - public static final Key<Integer> COLOR_CORRECTION_ABERRATION_CORRECTION_MODE = - new Key<Integer>("android.colorCorrection.aberrationCorrectionMode", int.class); + public static final Key<Integer> COLOR_CORRECTION_ABERRATION_MODE = + new Key<Integer>("android.colorCorrection.aberrationMode", int.class); /** * <p>The desired setting for the camera device's auto-exposure diff --git a/core/java/android/hardware/camera2/CaptureResult.java b/core/java/android/hardware/camera2/CaptureResult.java index 63dff55..f9c4df4 100644 --- a/core/java/android/hardware/camera2/CaptureResult.java +++ b/core/java/android/hardware/camera2/CaptureResult.java @@ -420,7 +420,7 @@ public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> { /** * <p>Mode of operation for the chromatic aberration correction algorithm.</p> * <p>This must be set to a valid mode from - * {@link CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_CORRECTION_MODES android.colorCorrection.availableAberrationCorrectionModes}.</p> + * {@link CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES android.colorCorrection.availableAberrationModes}.</p> * <p>Chromatic (color) aberration is caused by the fact that different wavelengths of light * can not focus on the same point after exiting from the lens. This metadata defines * the high level control of chromatic aberration correction algorithm, which aims to @@ -432,14 +432,14 @@ public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> { * capture rate. FAST means the camera device will not slow down capture rate when * applying aberration correction.</p> * - * @see CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_CORRECTION_MODES - * @see #COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_OFF - * @see #COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_FAST - * @see #COLOR_CORRECTION_ABERRATION_CORRECTION_MODE_HIGH_QUALITY + * @see CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES + * @see #COLOR_CORRECTION_ABERRATION_MODE_OFF + * @see #COLOR_CORRECTION_ABERRATION_MODE_FAST + * @see #COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY */ @PublicKey - public static final Key<Integer> COLOR_CORRECTION_ABERRATION_CORRECTION_MODE = - new Key<Integer>("android.colorCorrection.aberrationCorrectionMode", int.class); + public static final Key<Integer> COLOR_CORRECTION_ABERRATION_MODE = + new Key<Integer>("android.colorCorrection.aberrationMode", int.class); /** * <p>The desired setting for the camera device's auto-exposure |