1/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.hardware.camera2;
18
19import android.annotation.NonNull;
20import android.annotation.Nullable;
21import android.hardware.camera2.impl.CameraMetadataNative;
22import android.hardware.camera2.impl.CaptureResultExtras;
23import android.hardware.camera2.impl.PublicKey;
24import android.hardware.camera2.impl.SyntheticKey;
25import android.hardware.camera2.utils.TypeReference;
26import android.util.Log;
27import android.util.Rational;
28
29import java.util.List;
30
31/**
32 * <p>The subset of the results of a single image capture from the image sensor.</p>
33 *
34 * <p>Contains a subset of the final configuration for the capture hardware (sensor, lens,
35 * flash), the processing pipeline, the control algorithms, and the output
36 * buffers.</p>
37 *
38 * <p>CaptureResults are produced by a {@link CameraDevice} after processing a
39 * {@link CaptureRequest}. All properties listed for capture requests can also
40 * be queried on the capture result, to determine the final values used for
41 * capture. The result also includes additional metadata about the state of the
42 * camera device during the capture.</p>
43 *
44 * <p>Not all properties returned by {@link CameraCharacteristics#getAvailableCaptureResultKeys()}
45 * are necessarily available. Some results are {@link CaptureResult partial} and will
46 * not have every key set. Only {@link TotalCaptureResult total} results are guaranteed to have
47 * every key available that was enabled by the request.</p>
48 *
49 * <p>{@link CaptureResult} objects are immutable.</p>
50 *
51 */
52public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> {
53
54    private static final String TAG = "CaptureResult";
55    private static final boolean VERBOSE = false;
56
57    /**
58     * A {@code Key} is used to do capture result field lookups with
59     * {@link CaptureResult#get}.
60     *
61     * <p>For example, to get the timestamp corresponding to the exposure of the first row:
62     * <code><pre>
63     * long timestamp = captureResult.get(CaptureResult.SENSOR_TIMESTAMP);
64     * </pre></code>
65     * </p>
66     *
67     * <p>To enumerate over all possible keys for {@link CaptureResult}, see
68     * {@link CameraCharacteristics#getAvailableCaptureResultKeys}.</p>
69     *
70     * @see CaptureResult#get
71     * @see CameraCharacteristics#getAvailableCaptureResultKeys
72     */
73    public final static class Key<T> {
74        private final CameraMetadataNative.Key<T> mKey;
75
76        /**
77         * Visible for testing and vendor extensions only.
78         *
79         * @hide
80         */
81        public Key(String name, Class<T> type) {
82            mKey = new CameraMetadataNative.Key<T>(name, type);
83        }
84
85        /**
86         * Visible for testing and vendor extensions only.
87         *
88         * @hide
89         */
90        public Key(String name, TypeReference<T> typeReference) {
91            mKey = new CameraMetadataNative.Key<T>(name, typeReference);
92        }
93
94        /**
95         * Return a camelCase, period separated name formatted like:
96         * {@code "root.section[.subsections].name"}.
97         *
98         * <p>Built-in keys exposed by the Android SDK are always prefixed with {@code "android."};
99         * keys that are device/platform-specific are prefixed with {@code "com."}.</p>
100         *
101         * <p>For example, {@code CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP} would
102         * have a name of {@code "android.scaler.streamConfigurationMap"}; whereas a device
103         * specific key might look like {@code "com.google.nexus.data.private"}.</p>
104         *
105         * @return String representation of the key name
106         */
107        @NonNull
108        public String getName() {
109            return mKey.getName();
110        }
111
112        /**
113         * {@inheritDoc}
114         */
115        @Override
116        public final int hashCode() {
117            return mKey.hashCode();
118        }
119
120        /**
121         * {@inheritDoc}
122         */
123        @SuppressWarnings("unchecked")
124        @Override
125        public final boolean equals(Object o) {
126            return o instanceof Key && ((Key<T>)o).mKey.equals(mKey);
127        }
128
129        /**
130         * Return this {@link Key} as a string representation.
131         *
132         * <p>{@code "CaptureResult.Key(%s)"}, where {@code %s} represents
133         * the name of this key as returned by {@link #getName}.</p>
134         *
135         * @return string representation of {@link Key}
136         */
137        @NonNull
138        @Override
139        public String toString() {
140            return String.format("CaptureResult.Key(%s)", mKey.getName());
141        }
142
143        /**
144         * Visible for CameraMetadataNative implementation only; do not use.
145         *
146         * TODO: Make this private or remove it altogether.
147         *
148         * @hide
149         */
150        public CameraMetadataNative.Key<T> getNativeKey() {
151            return mKey;
152        }
153
154        @SuppressWarnings({ "unchecked" })
155        /*package*/ Key(CameraMetadataNative.Key<?> nativeKey) {
156            mKey = (CameraMetadataNative.Key<T>) nativeKey;
157        }
158    }
159
160    private final CameraMetadataNative mResults;
161    private final CaptureRequest mRequest;
162    private final int mSequenceId;
163    private final long mFrameNumber;
164
165    /**
166     * Takes ownership of the passed-in properties object
167     *
168     * <p>For internal use only</p>
169     * @hide
170     */
171    public CaptureResult(CameraMetadataNative results, CaptureRequest parent,
172            CaptureResultExtras extras) {
173        if (results == null) {
174            throw new IllegalArgumentException("results was null");
175        }
176
177        if (parent == null) {
178            throw new IllegalArgumentException("parent was null");
179        }
180
181        if (extras == null) {
182            throw new IllegalArgumentException("extras was null");
183        }
184
185        mResults = CameraMetadataNative.move(results);
186        if (mResults.isEmpty()) {
187            throw new AssertionError("Results must not be empty");
188        }
189        mRequest = parent;
190        mSequenceId = extras.getRequestId();
191        mFrameNumber = extras.getFrameNumber();
192    }
193
194    /**
195     * Returns a copy of the underlying {@link CameraMetadataNative}.
196     * @hide
197     */
198    public CameraMetadataNative getNativeCopy() {
199        return new CameraMetadataNative(mResults);
200    }
201
202    /**
203     * Creates a request-less result.
204     *
205     * <p><strong>For testing only.</strong></p>
206     * @hide
207     */
208    public CaptureResult(CameraMetadataNative results, int sequenceId) {
209        if (results == null) {
210            throw new IllegalArgumentException("results was null");
211        }
212
213        mResults = CameraMetadataNative.move(results);
214        if (mResults.isEmpty()) {
215            throw new AssertionError("Results must not be empty");
216        }
217
218        mRequest = null;
219        mSequenceId = sequenceId;
220        mFrameNumber = -1;
221    }
222
223    /**
224     * Get a capture result field value.
225     *
226     * <p>The field definitions can be found in {@link CaptureResult}.</p>
227     *
228     * <p>Querying the value for the same key more than once will return a value
229     * which is equal to the previous queried value.</p>
230     *
231     * @throws IllegalArgumentException if the key was not valid
232     *
233     * @param key The result field to read.
234     * @return The value of that key, or {@code null} if the field is not set.
235     */
236    @Nullable
237    public <T> T get(Key<T> key) {
238        T value = mResults.get(key);
239        if (VERBOSE) Log.v(TAG, "#get for Key = " + key.getName() + ", returned value = " + value);
240        return value;
241    }
242
243    /**
244     * {@inheritDoc}
245     * @hide
246     */
247    @SuppressWarnings("unchecked")
248    @Override
249    protected <T> T getProtected(Key<?> key) {
250        return (T) mResults.get(key);
251    }
252
253    /**
254     * {@inheritDoc}
255     * @hide
256     */
257    @SuppressWarnings("unchecked")
258    @Override
259    protected Class<Key<?>> getKeyClass() {
260        Object thisClass = Key.class;
261        return (Class<Key<?>>)thisClass;
262    }
263
264    /**
265     * Dumps the native metadata contents to logcat.
266     *
267     * <p>Visibility for testing/debugging only. The results will not
268     * include any synthesized keys, as they are invisible to the native layer.</p>
269     *
270     * @hide
271     */
272    public void dumpToLog() {
273        mResults.dumpToLog();
274    }
275
276    /**
277     * {@inheritDoc}
278     */
279    @Override
280    @NonNull
281    public List<Key<?>> getKeys() {
282        // Force the javadoc for this function to show up on the CaptureResult page
283        return super.getKeys();
284    }
285
286    /**
287     * Get the request associated with this result.
288     *
289     * <p>Whenever a request has been fully or partially captured, with
290     * {@link CameraCaptureSession.CaptureCallback#onCaptureCompleted} or
291     * {@link CameraCaptureSession.CaptureCallback#onCaptureProgressed}, the {@code result}'s
292     * {@code getRequest()} will return that {@code request}.
293     * </p>
294     *
295     * <p>For example,
296     * <code><pre>cameraDevice.capture(someRequest, new CaptureCallback() {
297     *     {@literal @}Override
298     *     void onCaptureCompleted(CaptureRequest myRequest, CaptureResult myResult) {
299     *         assert(myResult.getRequest.equals(myRequest) == true);
300     *     }
301     * }, null);
302     * </code></pre>
303     * </p>
304     *
305     * @return The request associated with this result. Never {@code null}.
306     */
307    @NonNull
308    public CaptureRequest getRequest() {
309        return mRequest;
310    }
311
312    /**
313     * Get the frame number associated with this result.
314     *
315     * <p>Whenever a request has been processed, regardless of failure or success,
316     * it gets a unique frame number assigned to its future result/failure.</p>
317     *
318     * <p>For the same type of request (capturing from the camera device or reprocessing), this
319     * value monotonically increments, starting with 0, for every new result or failure and the
320     * scope is the lifetime of the {@link CameraDevice}. Between different types of requests,
321     * the frame number may not monotonically increment. For example, the frame number of a newer
322     * reprocess result may be smaller than the frame number of an older result of capturing new
323     * images from the camera device, but the frame number of a newer reprocess result will never be
324     * smaller than the frame number of an older reprocess result.</p>
325     *
326     * @return The frame number
327     *
328     * @see CameraDevice#createCaptureRequest
329     * @see CameraDevice#createReprocessCaptureRequest
330     */
331    public long getFrameNumber() {
332        return mFrameNumber;
333    }
334
335    /**
336     * The sequence ID for this failure that was returned by the
337     * {@link CameraCaptureSession#capture} family of functions.
338     *
339     * <p>The sequence ID is a unique monotonically increasing value starting from 0,
340     * incremented every time a new group of requests is submitted to the CameraDevice.</p>
341     *
342     * @return int The ID for the sequence of requests that this capture result is a part of
343     *
344     * @see CameraDevice.CaptureCallback#onCaptureSequenceCompleted
345     * @see CameraDevice.CaptureCallback#onCaptureSequenceAborted
346     */
347    public int getSequenceId() {
348        return mSequenceId;
349    }
350
351    /*@O~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~
352     * The key entries below this point are generated from metadata
353     * definitions in /system/media/camera/docs. Do not modify by hand or
354     * modify the comment blocks at the start or end.
355     *~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~*/
356
357    /**
358     * <p>The mode control selects how the image data is converted from the
359     * sensor's native color into linear sRGB color.</p>
360     * <p>When auto-white balance (AWB) is enabled with {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode}, this
361     * control is overridden by the AWB routine. When AWB is disabled, the
362     * application controls how the color mapping is performed.</p>
363     * <p>We define the expected processing pipeline below. For consistency
364     * across devices, this is always the case with TRANSFORM_MATRIX.</p>
365     * <p>When either FULL or HIGH_QUALITY is used, the camera device may
366     * do additional processing but {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} and
367     * {@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform} will still be provided by the
368     * camera device (in the results) and be roughly correct.</p>
369     * <p>Switching to TRANSFORM_MATRIX and using the data provided from
370     * FAST or HIGH_QUALITY will yield a picture with the same white point
371     * as what was produced by the camera device in the earlier frame.</p>
372     * <p>The expected processing pipeline is as follows:</p>
373     * <p><img alt="White balance processing pipeline" src="../../../../images/camera2/metadata/android.colorCorrection.mode/processing_pipeline.png" /></p>
374     * <p>The white balance is encoded by two values, a 4-channel white-balance
375     * gain vector (applied in the Bayer domain), and a 3x3 color transform
376     * matrix (applied after demosaic).</p>
377     * <p>The 4-channel white-balance gains are defined as:</p>
378     * <pre><code>{@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} = [ R G_even G_odd B ]
379     * </code></pre>
380     * <p>where <code>G_even</code> is the gain for green pixels on even rows of the
381     * output, and <code>G_odd</code> is the gain for green pixels on the odd rows.
382     * These may be identical for a given camera device implementation; if
383     * the camera device does not support a separate gain for even/odd green
384     * channels, it will use the <code>G_even</code> value, and write <code>G_odd</code> equal to
385     * <code>G_even</code> in the output result metadata.</p>
386     * <p>The matrices for color transforms are defined as a 9-entry vector:</p>
387     * <pre><code>{@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform} = [ I0 I1 I2 I3 I4 I5 I6 I7 I8 ]
388     * </code></pre>
389     * <p>which define a transform from input sensor colors, <code>P_in = [ r g b ]</code>,
390     * to output linear sRGB, <code>P_out = [ r' g' b' ]</code>,</p>
391     * <p>with colors as follows:</p>
392     * <pre><code>r' = I0r + I1g + I2b
393     * g' = I3r + I4g + I5b
394     * b' = I6r + I7g + I8b
395     * </code></pre>
396     * <p>Both the input and output value ranges must match. Overflow/underflow
397     * values are clipped to fit within the range.</p>
398     * <p><b>Possible values:</b>
399     * <ul>
400     *   <li>{@link #COLOR_CORRECTION_MODE_TRANSFORM_MATRIX TRANSFORM_MATRIX}</li>
401     *   <li>{@link #COLOR_CORRECTION_MODE_FAST FAST}</li>
402     *   <li>{@link #COLOR_CORRECTION_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
403     * </ul></p>
404     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
405     * <p><b>Full capability</b> -
406     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
407     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
408     *
409     * @see CaptureRequest#COLOR_CORRECTION_GAINS
410     * @see CaptureRequest#COLOR_CORRECTION_TRANSFORM
411     * @see CaptureRequest#CONTROL_AWB_MODE
412     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
413     * @see #COLOR_CORRECTION_MODE_TRANSFORM_MATRIX
414     * @see #COLOR_CORRECTION_MODE_FAST
415     * @see #COLOR_CORRECTION_MODE_HIGH_QUALITY
416     */
417    @PublicKey
418    public static final Key<Integer> COLOR_CORRECTION_MODE =
419            new Key<Integer>("android.colorCorrection.mode", int.class);
420
421    /**
422     * <p>A color transform matrix to use to transform
423     * from sensor RGB color space to output linear sRGB color space.</p>
424     * <p>This matrix is either set by the camera device when the request
425     * {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} is not TRANSFORM_MATRIX, or
426     * directly by the application in the request when the
427     * {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} is TRANSFORM_MATRIX.</p>
428     * <p>In the latter case, the camera device may round the matrix to account
429     * for precision issues; the final rounded matrix should be reported back
430     * in this matrix result metadata. The transform should keep the magnitude
431     * of the output color values within <code>[0, 1.0]</code> (assuming input color
432     * values is within the normalized range <code>[0, 1.0]</code>), or clipping may occur.</p>
433     * <p>The valid range of each matrix element varies on different devices, but
434     * values within [-1.5, 3.0] are guaranteed not to be clipped.</p>
435     * <p><b>Units</b>: Unitless scale factors</p>
436     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
437     * <p><b>Full capability</b> -
438     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
439     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
440     *
441     * @see CaptureRequest#COLOR_CORRECTION_MODE
442     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
443     */
444    @PublicKey
445    public static final Key<android.hardware.camera2.params.ColorSpaceTransform> COLOR_CORRECTION_TRANSFORM =
446            new Key<android.hardware.camera2.params.ColorSpaceTransform>("android.colorCorrection.transform", android.hardware.camera2.params.ColorSpaceTransform.class);
447
448    /**
449     * <p>Gains applying to Bayer raw color channels for
450     * white-balance.</p>
451     * <p>These per-channel gains are either set by the camera device
452     * when the request {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} is not
453     * TRANSFORM_MATRIX, or directly by the application in the
454     * request when the {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} is
455     * TRANSFORM_MATRIX.</p>
456     * <p>The gains in the result metadata are the gains actually
457     * applied by the camera device to the current frame.</p>
458     * <p>The valid range of gains varies on different devices, but gains
459     * between [1.0, 3.0] are guaranteed not to be clipped. Even if a given
460     * device allows gains below 1.0, this is usually not recommended because
461     * this can create color artifacts.</p>
462     * <p><b>Units</b>: Unitless gain factors</p>
463     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
464     * <p><b>Full capability</b> -
465     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
466     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
467     *
468     * @see CaptureRequest#COLOR_CORRECTION_MODE
469     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
470     */
471    @PublicKey
472    public static final Key<android.hardware.camera2.params.RggbChannelVector> COLOR_CORRECTION_GAINS =
473            new Key<android.hardware.camera2.params.RggbChannelVector>("android.colorCorrection.gains", android.hardware.camera2.params.RggbChannelVector.class);
474
475    /**
476     * <p>Mode of operation for the chromatic aberration correction algorithm.</p>
477     * <p>Chromatic (color) aberration is caused by the fact that different wavelengths of light
478     * can not focus on the same point after exiting from the lens. This metadata defines
479     * the high level control of chromatic aberration correction algorithm, which aims to
480     * minimize the chromatic artifacts that may occur along the object boundaries in an
481     * image.</p>
482     * <p>FAST/HIGH_QUALITY both mean that camera device determined aberration
483     * correction will be applied. HIGH_QUALITY mode indicates that the camera device will
484     * use the highest-quality aberration correction algorithms, even if it slows down
485     * capture rate. FAST means the camera device will not slow down capture rate when
486     * applying aberration correction.</p>
487     * <p>LEGACY devices will always be in FAST mode.</p>
488     * <p><b>Possible values:</b>
489     * <ul>
490     *   <li>{@link #COLOR_CORRECTION_ABERRATION_MODE_OFF OFF}</li>
491     *   <li>{@link #COLOR_CORRECTION_ABERRATION_MODE_FAST FAST}</li>
492     *   <li>{@link #COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
493     * </ul></p>
494     * <p><b>Available values for this device:</b><br>
495     * {@link CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES android.colorCorrection.availableAberrationModes}</p>
496     * <p>This key is available on all devices.</p>
497     *
498     * @see CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES
499     * @see #COLOR_CORRECTION_ABERRATION_MODE_OFF
500     * @see #COLOR_CORRECTION_ABERRATION_MODE_FAST
501     * @see #COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY
502     */
503    @PublicKey
504    public static final Key<Integer> COLOR_CORRECTION_ABERRATION_MODE =
505            new Key<Integer>("android.colorCorrection.aberrationMode", int.class);
506
507    /**
508     * <p>The desired setting for the camera device's auto-exposure
509     * algorithm's antibanding compensation.</p>
510     * <p>Some kinds of lighting fixtures, such as some fluorescent
511     * lights, flicker at the rate of the power supply frequency
512     * (60Hz or 50Hz, depending on country). While this is
513     * typically not noticeable to a person, it can be visible to
514     * a camera device. If a camera sets its exposure time to the
515     * wrong value, the flicker may become visible in the
516     * viewfinder as flicker or in a final captured image, as a
517     * set of variable-brightness bands across the image.</p>
518     * <p>Therefore, the auto-exposure routines of camera devices
519     * include antibanding routines that ensure that the chosen
520     * exposure value will not cause such banding. The choice of
521     * exposure time depends on the rate of flicker, which the
522     * camera device can detect automatically, or the expected
523     * rate can be selected by the application using this
524     * control.</p>
525     * <p>A given camera device may not support all of the possible
526     * options for the antibanding mode. The
527     * {@link CameraCharacteristics#CONTROL_AE_AVAILABLE_ANTIBANDING_MODES android.control.aeAvailableAntibandingModes} key contains
528     * the available modes for a given camera device.</p>
529     * <p>AUTO mode is the default if it is available on given
530     * camera device. When AUTO mode is not available, the
531     * default will be either 50HZ or 60HZ, and both 50HZ
532     * and 60HZ will be available.</p>
533     * <p>If manual exposure control is enabled (by setting
534     * {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} or {@link CaptureRequest#CONTROL_MODE android.control.mode} to OFF),
535     * then this setting has no effect, and the application must
536     * ensure it selects exposure times that do not cause banding
537     * issues. The {@link CaptureResult#STATISTICS_SCENE_FLICKER android.statistics.sceneFlicker} key can assist
538     * the application in this.</p>
539     * <p><b>Possible values:</b>
540     * <ul>
541     *   <li>{@link #CONTROL_AE_ANTIBANDING_MODE_OFF OFF}</li>
542     *   <li>{@link #CONTROL_AE_ANTIBANDING_MODE_50HZ 50HZ}</li>
543     *   <li>{@link #CONTROL_AE_ANTIBANDING_MODE_60HZ 60HZ}</li>
544     *   <li>{@link #CONTROL_AE_ANTIBANDING_MODE_AUTO AUTO}</li>
545     * </ul></p>
546     * <p><b>Available values for this device:</b><br></p>
547     * <p>{@link CameraCharacteristics#CONTROL_AE_AVAILABLE_ANTIBANDING_MODES android.control.aeAvailableAntibandingModes}</p>
548     * <p>This key is available on all devices.</p>
549     *
550     * @see CameraCharacteristics#CONTROL_AE_AVAILABLE_ANTIBANDING_MODES
551     * @see CaptureRequest#CONTROL_AE_MODE
552     * @see CaptureRequest#CONTROL_MODE
553     * @see CaptureResult#STATISTICS_SCENE_FLICKER
554     * @see #CONTROL_AE_ANTIBANDING_MODE_OFF
555     * @see #CONTROL_AE_ANTIBANDING_MODE_50HZ
556     * @see #CONTROL_AE_ANTIBANDING_MODE_60HZ
557     * @see #CONTROL_AE_ANTIBANDING_MODE_AUTO
558     */
559    @PublicKey
560    public static final Key<Integer> CONTROL_AE_ANTIBANDING_MODE =
561            new Key<Integer>("android.control.aeAntibandingMode", int.class);
562
563    /**
564     * <p>Adjustment to auto-exposure (AE) target image
565     * brightness.</p>
566     * <p>The adjustment is measured as a count of steps, with the
567     * step size defined by {@link CameraCharacteristics#CONTROL_AE_COMPENSATION_STEP android.control.aeCompensationStep} and the
568     * allowed range by {@link CameraCharacteristics#CONTROL_AE_COMPENSATION_RANGE android.control.aeCompensationRange}.</p>
569     * <p>For example, if the exposure value (EV) step is 0.333, '6'
570     * will mean an exposure compensation of +2 EV; -3 will mean an
571     * exposure compensation of -1 EV. One EV represents a doubling
572     * of image brightness. Note that this control will only be
573     * effective if {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} <code>!=</code> OFF. This control
574     * will take effect even when {@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} <code>== true</code>.</p>
575     * <p>In the event of exposure compensation value being changed, camera device
576     * may take several frames to reach the newly requested exposure target.
577     * During that time, {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} field will be in the SEARCHING
578     * state. Once the new exposure target is reached, {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} will
579     * change from SEARCHING to either CONVERGED, LOCKED (if AE lock is enabled), or
580     * FLASH_REQUIRED (if the scene is too dark for still capture).</p>
581     * <p><b>Units</b>: Compensation steps</p>
582     * <p><b>Range of valid values:</b><br>
583     * {@link CameraCharacteristics#CONTROL_AE_COMPENSATION_RANGE android.control.aeCompensationRange}</p>
584     * <p>This key is available on all devices.</p>
585     *
586     * @see CameraCharacteristics#CONTROL_AE_COMPENSATION_RANGE
587     * @see CameraCharacteristics#CONTROL_AE_COMPENSATION_STEP
588     * @see CaptureRequest#CONTROL_AE_LOCK
589     * @see CaptureRequest#CONTROL_AE_MODE
590     * @see CaptureResult#CONTROL_AE_STATE
591     */
592    @PublicKey
593    public static final Key<Integer> CONTROL_AE_EXPOSURE_COMPENSATION =
594            new Key<Integer>("android.control.aeExposureCompensation", int.class);
595
596    /**
597     * <p>Whether auto-exposure (AE) is currently locked to its latest
598     * calculated values.</p>
599     * <p>When set to <code>true</code> (ON), the AE algorithm is locked to its latest parameters,
600     * and will not change exposure settings until the lock is set to <code>false</code> (OFF).</p>
601     * <p>Note that even when AE is locked, the flash may be fired if
602     * the {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is ON_AUTO_FLASH /
603     * ON_ALWAYS_FLASH / ON_AUTO_FLASH_REDEYE.</p>
604     * <p>When {@link CaptureRequest#CONTROL_AE_EXPOSURE_COMPENSATION android.control.aeExposureCompensation} is changed, even if the AE lock
605     * is ON, the camera device will still adjust its exposure value.</p>
606     * <p>If AE precapture is triggered (see {@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger})
607     * when AE is already locked, the camera device will not change the exposure time
608     * ({@link CaptureRequest#SENSOR_EXPOSURE_TIME android.sensor.exposureTime}) and sensitivity ({@link CaptureRequest#SENSOR_SENSITIVITY android.sensor.sensitivity})
609     * parameters. The flash may be fired if the {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode}
610     * is ON_AUTO_FLASH/ON_AUTO_FLASH_REDEYE and the scene is too dark. If the
611     * {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is ON_ALWAYS_FLASH, the scene may become overexposed.
612     * Similarly, AE precapture trigger CANCEL has no effect when AE is already locked.</p>
613     * <p>When an AE precapture sequence is triggered, AE unlock will not be able to unlock
614     * the AE if AE is locked by the camera device internally during precapture metering
615     * sequence In other words, submitting requests with AE unlock has no effect for an
616     * ongoing precapture metering sequence. Otherwise, the precapture metering sequence
617     * will never succeed in a sequence of preview requests where AE lock is always set
618     * to <code>false</code>.</p>
619     * <p>Since the camera device has a pipeline of in-flight requests, the settings that
620     * get locked do not necessarily correspond to the settings that were present in the
621     * latest capture result received from the camera device, since additional captures
622     * and AE updates may have occurred even before the result was sent out. If an
623     * application is switching between automatic and manual control and wishes to eliminate
624     * any flicker during the switch, the following procedure is recommended:</p>
625     * <ol>
626     * <li>Starting in auto-AE mode:</li>
627     * <li>Lock AE</li>
628     * <li>Wait for the first result to be output that has the AE locked</li>
629     * <li>Copy exposure settings from that result into a request, set the request to manual AE</li>
630     * <li>Submit the capture request, proceed to run manual AE as desired.</li>
631     * </ol>
632     * <p>See {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} for AE lock related state transition details.</p>
633     * <p>This key is available on all devices.</p>
634     *
635     * @see CaptureRequest#CONTROL_AE_EXPOSURE_COMPENSATION
636     * @see CaptureRequest#CONTROL_AE_MODE
637     * @see CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER
638     * @see CaptureResult#CONTROL_AE_STATE
639     * @see CaptureRequest#SENSOR_EXPOSURE_TIME
640     * @see CaptureRequest#SENSOR_SENSITIVITY
641     */
642    @PublicKey
643    public static final Key<Boolean> CONTROL_AE_LOCK =
644            new Key<Boolean>("android.control.aeLock", boolean.class);
645
646    /**
647     * <p>The desired mode for the camera device's
648     * auto-exposure routine.</p>
649     * <p>This control is only effective if {@link CaptureRequest#CONTROL_MODE android.control.mode} is
650     * AUTO.</p>
651     * <p>When set to any of the ON modes, the camera device's
652     * auto-exposure routine is enabled, overriding the
653     * application's selected exposure time, sensor sensitivity,
654     * and frame duration ({@link CaptureRequest#SENSOR_EXPOSURE_TIME android.sensor.exposureTime},
655     * {@link CaptureRequest#SENSOR_SENSITIVITY android.sensor.sensitivity}, and
656     * {@link CaptureRequest#SENSOR_FRAME_DURATION android.sensor.frameDuration}). If one of the FLASH modes
657     * is selected, the camera device's flash unit controls are
658     * also overridden.</p>
659     * <p>The FLASH modes are only available if the camera device
660     * has a flash unit ({@link CameraCharacteristics#FLASH_INFO_AVAILABLE android.flash.info.available} is <code>true</code>).</p>
661     * <p>If flash TORCH mode is desired, this field must be set to
662     * ON or OFF, and {@link CaptureRequest#FLASH_MODE android.flash.mode} set to TORCH.</p>
663     * <p>When set to any of the ON modes, the values chosen by the
664     * camera device auto-exposure routine for the overridden
665     * fields for a given capture will be available in its
666     * CaptureResult.</p>
667     * <p><b>Possible values:</b>
668     * <ul>
669     *   <li>{@link #CONTROL_AE_MODE_OFF OFF}</li>
670     *   <li>{@link #CONTROL_AE_MODE_ON ON}</li>
671     *   <li>{@link #CONTROL_AE_MODE_ON_AUTO_FLASH ON_AUTO_FLASH}</li>
672     *   <li>{@link #CONTROL_AE_MODE_ON_ALWAYS_FLASH ON_ALWAYS_FLASH}</li>
673     *   <li>{@link #CONTROL_AE_MODE_ON_AUTO_FLASH_REDEYE ON_AUTO_FLASH_REDEYE}</li>
674     * </ul></p>
675     * <p><b>Available values for this device:</b><br>
676     * {@link CameraCharacteristics#CONTROL_AE_AVAILABLE_MODES android.control.aeAvailableModes}</p>
677     * <p>This key is available on all devices.</p>
678     *
679     * @see CameraCharacteristics#CONTROL_AE_AVAILABLE_MODES
680     * @see CaptureRequest#CONTROL_MODE
681     * @see CameraCharacteristics#FLASH_INFO_AVAILABLE
682     * @see CaptureRequest#FLASH_MODE
683     * @see CaptureRequest#SENSOR_EXPOSURE_TIME
684     * @see CaptureRequest#SENSOR_FRAME_DURATION
685     * @see CaptureRequest#SENSOR_SENSITIVITY
686     * @see #CONTROL_AE_MODE_OFF
687     * @see #CONTROL_AE_MODE_ON
688     * @see #CONTROL_AE_MODE_ON_AUTO_FLASH
689     * @see #CONTROL_AE_MODE_ON_ALWAYS_FLASH
690     * @see #CONTROL_AE_MODE_ON_AUTO_FLASH_REDEYE
691     */
692    @PublicKey
693    public static final Key<Integer> CONTROL_AE_MODE =
694            new Key<Integer>("android.control.aeMode", int.class);
695
696    /**
697     * <p>List of metering areas to use for auto-exposure adjustment.</p>
698     * <p>Not available if {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AE android.control.maxRegionsAe} is 0.
699     * Otherwise will always be present.</p>
700     * <p>The maximum number of regions supported by the device is determined by the value
701     * of {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AE android.control.maxRegionsAe}.</p>
702     * <p>The coordinate system is based on the active pixel array,
703     * with (0,0) being the top-left pixel in the active pixel array, and
704     * ({@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.width - 1,
705     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.height - 1) being the
706     * bottom-right pixel in the active pixel array.</p>
707     * <p>The weight must be within <code>[0, 1000]</code>, and represents a weight
708     * for every pixel in the area. This means that a large metering area
709     * with the same weight as a smaller area will have more effect in
710     * the metering result. Metering areas can partially overlap and the
711     * camera device will add the weights in the overlap region.</p>
712     * <p>The weights are relative to weights of other exposure metering regions, so if only one
713     * region is used, all non-zero weights will have the same effect. A region with 0
714     * weight is ignored.</p>
715     * <p>If all regions have 0 weight, then no specific metering area needs to be used by the
716     * camera device.</p>
717     * <p>If the metering region is outside the used {@link CaptureRequest#SCALER_CROP_REGION android.scaler.cropRegion} returned in
718     * capture result metadata, the camera device will ignore the sections outside the crop
719     * region and output only the intersection rectangle as the metering region in the result
720     * metadata.  If the region is entirely outside the crop region, it will be ignored and
721     * not reported in the result metadata.</p>
722     * <p><b>Units</b>: Pixel coordinates within {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
723     * <p><b>Range of valid values:</b><br>
724     * Coordinates must be between <code>[(0,0), (width, height))</code> of
725     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
726     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
727     *
728     * @see CameraCharacteristics#CONTROL_MAX_REGIONS_AE
729     * @see CaptureRequest#SCALER_CROP_REGION
730     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
731     */
732    @PublicKey
733    public static final Key<android.hardware.camera2.params.MeteringRectangle[]> CONTROL_AE_REGIONS =
734            new Key<android.hardware.camera2.params.MeteringRectangle[]>("android.control.aeRegions", android.hardware.camera2.params.MeteringRectangle[].class);
735
736    /**
737     * <p>Range over which the auto-exposure routine can
738     * adjust the capture frame rate to maintain good
739     * exposure.</p>
740     * <p>Only constrains auto-exposure (AE) algorithm, not
741     * manual control of {@link CaptureRequest#SENSOR_EXPOSURE_TIME android.sensor.exposureTime} and
742     * {@link CaptureRequest#SENSOR_FRAME_DURATION android.sensor.frameDuration}.</p>
743     * <p><b>Units</b>: Frames per second (FPS)</p>
744     * <p><b>Range of valid values:</b><br>
745     * Any of the entries in {@link CameraCharacteristics#CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES android.control.aeAvailableTargetFpsRanges}</p>
746     * <p>This key is available on all devices.</p>
747     *
748     * @see CameraCharacteristics#CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES
749     * @see CaptureRequest#SENSOR_EXPOSURE_TIME
750     * @see CaptureRequest#SENSOR_FRAME_DURATION
751     */
752    @PublicKey
753    public static final Key<android.util.Range<Integer>> CONTROL_AE_TARGET_FPS_RANGE =
754            new Key<android.util.Range<Integer>>("android.control.aeTargetFpsRange", new TypeReference<android.util.Range<Integer>>() {{ }});
755
756    /**
757     * <p>Whether the camera device will trigger a precapture
758     * metering sequence when it processes this request.</p>
759     * <p>This entry is normally set to IDLE, or is not
760     * included at all in the request settings. When included and
761     * set to START, the camera device will trigger the auto-exposure (AE)
762     * precapture metering sequence.</p>
763     * <p>When set to CANCEL, the camera device will cancel any active
764     * precapture metering trigger, and return to its initial AE state.
765     * If a precapture metering sequence is already completed, and the camera
766     * device has implicitly locked the AE for subsequent still capture, the
767     * CANCEL trigger will unlock the AE and return to its initial AE state.</p>
768     * <p>The precapture sequence should be triggered before starting a
769     * high-quality still capture for final metering decisions to
770     * be made, and for firing pre-capture flash pulses to estimate
771     * scene brightness and required final capture flash power, when
772     * the flash is enabled.</p>
773     * <p>Normally, this entry should be set to START for only a
774     * single request, and the application should wait until the
775     * sequence completes before starting a new one.</p>
776     * <p>When a precapture metering sequence is finished, the camera device
777     * may lock the auto-exposure routine internally to be able to accurately expose the
778     * subsequent still capture image (<code>{@link CaptureRequest#CONTROL_CAPTURE_INTENT android.control.captureIntent} == STILL_CAPTURE</code>).
779     * For this case, the AE may not resume normal scan if no subsequent still capture is
780     * submitted. To ensure that the AE routine restarts normal scan, the application should
781     * submit a request with <code>{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} == true</code>, followed by a request
782     * with <code>{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} == false</code>, if the application decides not to submit a
783     * still capture request after the precapture sequence completes. Alternatively, for
784     * API level 23 or newer devices, the CANCEL can be used to unlock the camera device
785     * internally locked AE if the application doesn't submit a still capture request after
786     * the AE precapture trigger. Note that, the CANCEL was added in API level 23, and must not
787     * be used in devices that have earlier API levels.</p>
788     * <p>The exact effect of auto-exposure (AE) precapture trigger
789     * depends on the current AE mode and state; see
790     * {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} for AE precapture state transition
791     * details.</p>
792     * <p>On LEGACY-level devices, the precapture trigger is not supported;
793     * capturing a high-resolution JPEG image will automatically trigger a
794     * precapture sequence before the high-resolution capture, including
795     * potentially firing a pre-capture flash.</p>
796     * <p>Using the precapture trigger and the auto-focus trigger {@link CaptureRequest#CONTROL_AF_TRIGGER android.control.afTrigger}
797     * simultaneously is allowed. However, since these triggers often require cooperation between
798     * the auto-focus and auto-exposure routines (for example, the may need to be enabled for a
799     * focus sweep), the camera device may delay acting on a later trigger until the previous
800     * trigger has been fully handled. This may lead to longer intervals between the trigger and
801     * changes to {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} indicating the start of the precapture sequence, for
802     * example.</p>
803     * <p>If both the precapture and the auto-focus trigger are activated on the same request, then
804     * the camera device will complete them in the optimal order for that device.</p>
805     * <p><b>Possible values:</b>
806     * <ul>
807     *   <li>{@link #CONTROL_AE_PRECAPTURE_TRIGGER_IDLE IDLE}</li>
808     *   <li>{@link #CONTROL_AE_PRECAPTURE_TRIGGER_START START}</li>
809     *   <li>{@link #CONTROL_AE_PRECAPTURE_TRIGGER_CANCEL CANCEL}</li>
810     * </ul></p>
811     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
812     * <p><b>Limited capability</b> -
813     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
814     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
815     *
816     * @see CaptureRequest#CONTROL_AE_LOCK
817     * @see CaptureResult#CONTROL_AE_STATE
818     * @see CaptureRequest#CONTROL_AF_TRIGGER
819     * @see CaptureRequest#CONTROL_CAPTURE_INTENT
820     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
821     * @see #CONTROL_AE_PRECAPTURE_TRIGGER_IDLE
822     * @see #CONTROL_AE_PRECAPTURE_TRIGGER_START
823     * @see #CONTROL_AE_PRECAPTURE_TRIGGER_CANCEL
824     */
825    @PublicKey
826    public static final Key<Integer> CONTROL_AE_PRECAPTURE_TRIGGER =
827            new Key<Integer>("android.control.aePrecaptureTrigger", int.class);
828
829    /**
830     * <p>Current state of the auto-exposure (AE) algorithm.</p>
831     * <p>Switching between or enabling AE modes ({@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode}) always
832     * resets the AE state to INACTIVE. Similarly, switching between {@link CaptureRequest#CONTROL_MODE android.control.mode},
833     * or {@link CaptureRequest#CONTROL_SCENE_MODE android.control.sceneMode} if <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} == USE_SCENE_MODE</code> resets all
834     * the algorithm states to INACTIVE.</p>
835     * <p>The camera device can do several state transitions between two results, if it is
836     * allowed by the state transition table. For example: INACTIVE may never actually be
837     * seen in a result.</p>
838     * <p>The state in the result is the state for this image (in sync with this image): if
839     * AE state becomes CONVERGED, then the image data associated with this result should
840     * be good to use.</p>
841     * <p>Below are state transition tables for different AE modes.</p>
842     * <table>
843     * <thead>
844     * <tr>
845     * <th align="center">State</th>
846     * <th align="center">Transition Cause</th>
847     * <th align="center">New State</th>
848     * <th align="center">Notes</th>
849     * </tr>
850     * </thead>
851     * <tbody>
852     * <tr>
853     * <td align="center">INACTIVE</td>
854     * <td align="center"></td>
855     * <td align="center">INACTIVE</td>
856     * <td align="center">Camera device auto exposure algorithm is disabled</td>
857     * </tr>
858     * </tbody>
859     * </table>
860     * <p>When {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is AE_MODE_ON_*:</p>
861     * <table>
862     * <thead>
863     * <tr>
864     * <th align="center">State</th>
865     * <th align="center">Transition Cause</th>
866     * <th align="center">New State</th>
867     * <th align="center">Notes</th>
868     * </tr>
869     * </thead>
870     * <tbody>
871     * <tr>
872     * <td align="center">INACTIVE</td>
873     * <td align="center">Camera device initiates AE scan</td>
874     * <td align="center">SEARCHING</td>
875     * <td align="center">Values changing</td>
876     * </tr>
877     * <tr>
878     * <td align="center">INACTIVE</td>
879     * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
880     * <td align="center">LOCKED</td>
881     * <td align="center">Values locked</td>
882     * </tr>
883     * <tr>
884     * <td align="center">SEARCHING</td>
885     * <td align="center">Camera device finishes AE scan</td>
886     * <td align="center">CONVERGED</td>
887     * <td align="center">Good values, not changing</td>
888     * </tr>
889     * <tr>
890     * <td align="center">SEARCHING</td>
891     * <td align="center">Camera device finishes AE scan</td>
892     * <td align="center">FLASH_REQUIRED</td>
893     * <td align="center">Converged but too dark w/o flash</td>
894     * </tr>
895     * <tr>
896     * <td align="center">SEARCHING</td>
897     * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
898     * <td align="center">LOCKED</td>
899     * <td align="center">Values locked</td>
900     * </tr>
901     * <tr>
902     * <td align="center">CONVERGED</td>
903     * <td align="center">Camera device initiates AE scan</td>
904     * <td align="center">SEARCHING</td>
905     * <td align="center">Values changing</td>
906     * </tr>
907     * <tr>
908     * <td align="center">CONVERGED</td>
909     * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
910     * <td align="center">LOCKED</td>
911     * <td align="center">Values locked</td>
912     * </tr>
913     * <tr>
914     * <td align="center">FLASH_REQUIRED</td>
915     * <td align="center">Camera device initiates AE scan</td>
916     * <td align="center">SEARCHING</td>
917     * <td align="center">Values changing</td>
918     * </tr>
919     * <tr>
920     * <td align="center">FLASH_REQUIRED</td>
921     * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
922     * <td align="center">LOCKED</td>
923     * <td align="center">Values locked</td>
924     * </tr>
925     * <tr>
926     * <td align="center">LOCKED</td>
927     * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is OFF</td>
928     * <td align="center">SEARCHING</td>
929     * <td align="center">Values not good after unlock</td>
930     * </tr>
931     * <tr>
932     * <td align="center">LOCKED</td>
933     * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is OFF</td>
934     * <td align="center">CONVERGED</td>
935     * <td align="center">Values good after unlock</td>
936     * </tr>
937     * <tr>
938     * <td align="center">LOCKED</td>
939     * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is OFF</td>
940     * <td align="center">FLASH_REQUIRED</td>
941     * <td align="center">Exposure good, but too dark</td>
942     * </tr>
943     * <tr>
944     * <td align="center">PRECAPTURE</td>
945     * <td align="center">Sequence done. {@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is OFF</td>
946     * <td align="center">CONVERGED</td>
947     * <td align="center">Ready for high-quality capture</td>
948     * </tr>
949     * <tr>
950     * <td align="center">PRECAPTURE</td>
951     * <td align="center">Sequence done. {@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
952     * <td align="center">LOCKED</td>
953     * <td align="center">Ready for high-quality capture</td>
954     * </tr>
955     * <tr>
956     * <td align="center">LOCKED</td>
957     * <td align="center">aeLock is ON and aePrecaptureTrigger is START</td>
958     * <td align="center">LOCKED</td>
959     * <td align="center">Precapture trigger is ignored when AE is already locked</td>
960     * </tr>
961     * <tr>
962     * <td align="center">LOCKED</td>
963     * <td align="center">aeLock is ON and aePrecaptureTrigger is CANCEL</td>
964     * <td align="center">LOCKED</td>
965     * <td align="center">Precapture trigger is ignored when AE is already locked</td>
966     * </tr>
967     * <tr>
968     * <td align="center">Any state (excluding LOCKED)</td>
969     * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is START</td>
970     * <td align="center">PRECAPTURE</td>
971     * <td align="center">Start AE precapture metering sequence</td>
972     * </tr>
973     * <tr>
974     * <td align="center">Any state (excluding LOCKED)</td>
975     * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is CANCEL</td>
976     * <td align="center">INACTIVE</td>
977     * <td align="center">Currently active precapture metering sequence is canceled</td>
978     * </tr>
979     * </tbody>
980     * </table>
981     * <p>For the above table, the camera device may skip reporting any state changes that happen
982     * without application intervention (i.e. mode switch, trigger, locking). Any state that
983     * can be skipped in that manner is called a transient state.</p>
984     * <p>For example, for above AE modes (AE_MODE_ON_*), in addition to the state transitions
985     * listed in above table, it is also legal for the camera device to skip one or more
986     * transient states between two results. See below table for examples:</p>
987     * <table>
988     * <thead>
989     * <tr>
990     * <th align="center">State</th>
991     * <th align="center">Transition Cause</th>
992     * <th align="center">New State</th>
993     * <th align="center">Notes</th>
994     * </tr>
995     * </thead>
996     * <tbody>
997     * <tr>
998     * <td align="center">INACTIVE</td>
999     * <td align="center">Camera device finished AE scan</td>
1000     * <td align="center">CONVERGED</td>
1001     * <td align="center">Values are already good, transient states are skipped by camera device.</td>
1002     * </tr>
1003     * <tr>
1004     * <td align="center">Any state (excluding LOCKED)</td>
1005     * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is START, sequence done</td>
1006     * <td align="center">FLASH_REQUIRED</td>
1007     * <td align="center">Converged but too dark w/o flash after a precapture sequence, transient states are skipped by camera device.</td>
1008     * </tr>
1009     * <tr>
1010     * <td align="center">Any state (excluding LOCKED)</td>
1011     * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is START, sequence done</td>
1012     * <td align="center">CONVERGED</td>
1013     * <td align="center">Converged after a precapture sequence, transient states are skipped by camera device.</td>
1014     * </tr>
1015     * <tr>
1016     * <td align="center">Any state (excluding LOCKED)</td>
1017     * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is CANCEL, converged</td>
1018     * <td align="center">FLASH_REQUIRED</td>
1019     * <td align="center">Converged but too dark w/o flash after a precapture sequence is canceled, transient states are skipped by camera device.</td>
1020     * </tr>
1021     * <tr>
1022     * <td align="center">Any state (excluding LOCKED)</td>
1023     * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is CANCEL, converged</td>
1024     * <td align="center">CONVERGED</td>
1025     * <td align="center">Converged after a precapture sequenceis canceled, transient states are skipped by camera device.</td>
1026     * </tr>
1027     * <tr>
1028     * <td align="center">CONVERGED</td>
1029     * <td align="center">Camera device finished AE scan</td>
1030     * <td align="center">FLASH_REQUIRED</td>
1031     * <td align="center">Converged but too dark w/o flash after a new scan, transient states are skipped by camera device.</td>
1032     * </tr>
1033     * <tr>
1034     * <td align="center">FLASH_REQUIRED</td>
1035     * <td align="center">Camera device finished AE scan</td>
1036     * <td align="center">CONVERGED</td>
1037     * <td align="center">Converged after a new scan, transient states are skipped by camera device.</td>
1038     * </tr>
1039     * </tbody>
1040     * </table>
1041     * <p><b>Possible values:</b>
1042     * <ul>
1043     *   <li>{@link #CONTROL_AE_STATE_INACTIVE INACTIVE}</li>
1044     *   <li>{@link #CONTROL_AE_STATE_SEARCHING SEARCHING}</li>
1045     *   <li>{@link #CONTROL_AE_STATE_CONVERGED CONVERGED}</li>
1046     *   <li>{@link #CONTROL_AE_STATE_LOCKED LOCKED}</li>
1047     *   <li>{@link #CONTROL_AE_STATE_FLASH_REQUIRED FLASH_REQUIRED}</li>
1048     *   <li>{@link #CONTROL_AE_STATE_PRECAPTURE PRECAPTURE}</li>
1049     * </ul></p>
1050     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
1051     * <p><b>Limited capability</b> -
1052     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
1053     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
1054     *
1055     * @see CaptureRequest#CONTROL_AE_LOCK
1056     * @see CaptureRequest#CONTROL_AE_MODE
1057     * @see CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER
1058     * @see CaptureRequest#CONTROL_MODE
1059     * @see CaptureRequest#CONTROL_SCENE_MODE
1060     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
1061     * @see #CONTROL_AE_STATE_INACTIVE
1062     * @see #CONTROL_AE_STATE_SEARCHING
1063     * @see #CONTROL_AE_STATE_CONVERGED
1064     * @see #CONTROL_AE_STATE_LOCKED
1065     * @see #CONTROL_AE_STATE_FLASH_REQUIRED
1066     * @see #CONTROL_AE_STATE_PRECAPTURE
1067     */
1068    @PublicKey
1069    public static final Key<Integer> CONTROL_AE_STATE =
1070            new Key<Integer>("android.control.aeState", int.class);
1071
1072    /**
1073     * <p>Whether auto-focus (AF) is currently enabled, and what
1074     * mode it is set to.</p>
1075     * <p>Only effective if {@link CaptureRequest#CONTROL_MODE android.control.mode} = AUTO and the lens is not fixed focus
1076     * (i.e. <code>{@link CameraCharacteristics#LENS_INFO_MINIMUM_FOCUS_DISTANCE android.lens.info.minimumFocusDistance} &gt; 0</code>). Also note that
1077     * when {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is OFF, the behavior of AF is device
1078     * dependent. It is recommended to lock AF by using {@link CaptureRequest#CONTROL_AF_TRIGGER android.control.afTrigger} before
1079     * setting {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} to OFF, or set AF mode to OFF when AE is OFF.</p>
1080     * <p>If the lens is controlled by the camera device auto-focus algorithm,
1081     * the camera device will report the current AF status in {@link CaptureResult#CONTROL_AF_STATE android.control.afState}
1082     * in result metadata.</p>
1083     * <p><b>Possible values:</b>
1084     * <ul>
1085     *   <li>{@link #CONTROL_AF_MODE_OFF OFF}</li>
1086     *   <li>{@link #CONTROL_AF_MODE_AUTO AUTO}</li>
1087     *   <li>{@link #CONTROL_AF_MODE_MACRO MACRO}</li>
1088     *   <li>{@link #CONTROL_AF_MODE_CONTINUOUS_VIDEO CONTINUOUS_VIDEO}</li>
1089     *   <li>{@link #CONTROL_AF_MODE_CONTINUOUS_PICTURE CONTINUOUS_PICTURE}</li>
1090     *   <li>{@link #CONTROL_AF_MODE_EDOF EDOF}</li>
1091     * </ul></p>
1092     * <p><b>Available values for this device:</b><br>
1093     * {@link CameraCharacteristics#CONTROL_AF_AVAILABLE_MODES android.control.afAvailableModes}</p>
1094     * <p>This key is available on all devices.</p>
1095     *
1096     * @see CaptureRequest#CONTROL_AE_MODE
1097     * @see CameraCharacteristics#CONTROL_AF_AVAILABLE_MODES
1098     * @see CaptureResult#CONTROL_AF_STATE
1099     * @see CaptureRequest#CONTROL_AF_TRIGGER
1100     * @see CaptureRequest#CONTROL_MODE
1101     * @see CameraCharacteristics#LENS_INFO_MINIMUM_FOCUS_DISTANCE
1102     * @see #CONTROL_AF_MODE_OFF
1103     * @see #CONTROL_AF_MODE_AUTO
1104     * @see #CONTROL_AF_MODE_MACRO
1105     * @see #CONTROL_AF_MODE_CONTINUOUS_VIDEO
1106     * @see #CONTROL_AF_MODE_CONTINUOUS_PICTURE
1107     * @see #CONTROL_AF_MODE_EDOF
1108     */
1109    @PublicKey
1110    public static final Key<Integer> CONTROL_AF_MODE =
1111            new Key<Integer>("android.control.afMode", int.class);
1112
1113    /**
1114     * <p>List of metering areas to use for auto-focus.</p>
1115     * <p>Not available if {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AF android.control.maxRegionsAf} is 0.
1116     * Otherwise will always be present.</p>
1117     * <p>The maximum number of focus areas supported by the device is determined by the value
1118     * of {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AF android.control.maxRegionsAf}.</p>
1119     * <p>The coordinate system is based on the active pixel array,
1120     * with (0,0) being the top-left pixel in the active pixel array, and
1121     * ({@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.width - 1,
1122     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.height - 1) being the
1123     * bottom-right pixel in the active pixel array.</p>
1124     * <p>The weight must be within <code>[0, 1000]</code>, and represents a weight
1125     * for every pixel in the area. This means that a large metering area
1126     * with the same weight as a smaller area will have more effect in
1127     * the metering result. Metering areas can partially overlap and the
1128     * camera device will add the weights in the overlap region.</p>
1129     * <p>The weights are relative to weights of other metering regions, so if only one region
1130     * is used, all non-zero weights will have the same effect. A region with 0 weight is
1131     * ignored.</p>
1132     * <p>If all regions have 0 weight, then no specific metering area needs to be used by the
1133     * camera device.</p>
1134     * <p>If the metering region is outside the used {@link CaptureRequest#SCALER_CROP_REGION android.scaler.cropRegion} returned in
1135     * capture result metadata, the camera device will ignore the sections outside the crop
1136     * region and output only the intersection rectangle as the metering region in the result
1137     * metadata. If the region is entirely outside the crop region, it will be ignored and
1138     * not reported in the result metadata.</p>
1139     * <p><b>Units</b>: Pixel coordinates within {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
1140     * <p><b>Range of valid values:</b><br>
1141     * Coordinates must be between <code>[(0,0), (width, height))</code> of
1142     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
1143     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
1144     *
1145     * @see CameraCharacteristics#CONTROL_MAX_REGIONS_AF
1146     * @see CaptureRequest#SCALER_CROP_REGION
1147     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
1148     */
1149    @PublicKey
1150    public static final Key<android.hardware.camera2.params.MeteringRectangle[]> CONTROL_AF_REGIONS =
1151            new Key<android.hardware.camera2.params.MeteringRectangle[]>("android.control.afRegions", android.hardware.camera2.params.MeteringRectangle[].class);
1152
1153    /**
1154     * <p>Whether the camera device will trigger autofocus for this request.</p>
1155     * <p>This entry is normally set to IDLE, or is not
1156     * included at all in the request settings.</p>
1157     * <p>When included and set to START, the camera device will trigger the
1158     * autofocus algorithm. If autofocus is disabled, this trigger has no effect.</p>
1159     * <p>When set to CANCEL, the camera device will cancel any active trigger,
1160     * and return to its initial AF state.</p>
1161     * <p>Generally, applications should set this entry to START or CANCEL for only a
1162     * single capture, and then return it to IDLE (or not set at all). Specifying
1163     * START for multiple captures in a row means restarting the AF operation over
1164     * and over again.</p>
1165     * <p>See {@link CaptureResult#CONTROL_AF_STATE android.control.afState} for what the trigger means for each AF mode.</p>
1166     * <p>Using the autofocus trigger and the precapture trigger {@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger}
1167     * simultaneously is allowed. However, since these triggers often require cooperation between
1168     * the auto-focus and auto-exposure routines (for example, the may need to be enabled for a
1169     * focus sweep), the camera device may delay acting on a later trigger until the previous
1170     * trigger has been fully handled. This may lead to longer intervals between the trigger and
1171     * changes to {@link CaptureResult#CONTROL_AF_STATE android.control.afState}, for example.</p>
1172     * <p><b>Possible values:</b>
1173     * <ul>
1174     *   <li>{@link #CONTROL_AF_TRIGGER_IDLE IDLE}</li>
1175     *   <li>{@link #CONTROL_AF_TRIGGER_START START}</li>
1176     *   <li>{@link #CONTROL_AF_TRIGGER_CANCEL CANCEL}</li>
1177     * </ul></p>
1178     * <p>This key is available on all devices.</p>
1179     *
1180     * @see CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER
1181     * @see CaptureResult#CONTROL_AF_STATE
1182     * @see #CONTROL_AF_TRIGGER_IDLE
1183     * @see #CONTROL_AF_TRIGGER_START
1184     * @see #CONTROL_AF_TRIGGER_CANCEL
1185     */
1186    @PublicKey
1187    public static final Key<Integer> CONTROL_AF_TRIGGER =
1188            new Key<Integer>("android.control.afTrigger", int.class);
1189
1190    /**
1191     * <p>Current state of auto-focus (AF) algorithm.</p>
1192     * <p>Switching between or enabling AF modes ({@link CaptureRequest#CONTROL_AF_MODE android.control.afMode}) always
1193     * resets the AF state to INACTIVE. Similarly, switching between {@link CaptureRequest#CONTROL_MODE android.control.mode},
1194     * or {@link CaptureRequest#CONTROL_SCENE_MODE android.control.sceneMode} if <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} == USE_SCENE_MODE</code> resets all
1195     * the algorithm states to INACTIVE.</p>
1196     * <p>The camera device can do several state transitions between two results, if it is
1197     * allowed by the state transition table. For example: INACTIVE may never actually be
1198     * seen in a result.</p>
1199     * <p>The state in the result is the state for this image (in sync with this image): if
1200     * AF state becomes FOCUSED, then the image data associated with this result should
1201     * be sharp.</p>
1202     * <p>Below are state transition tables for different AF modes.</p>
1203     * <p>When {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} is AF_MODE_OFF or AF_MODE_EDOF:</p>
1204     * <table>
1205     * <thead>
1206     * <tr>
1207     * <th align="center">State</th>
1208     * <th align="center">Transition Cause</th>
1209     * <th align="center">New State</th>
1210     * <th align="center">Notes</th>
1211     * </tr>
1212     * </thead>
1213     * <tbody>
1214     * <tr>
1215     * <td align="center">INACTIVE</td>
1216     * <td align="center"></td>
1217     * <td align="center">INACTIVE</td>
1218     * <td align="center">Never changes</td>
1219     * </tr>
1220     * </tbody>
1221     * </table>
1222     * <p>When {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} is AF_MODE_AUTO or AF_MODE_MACRO:</p>
1223     * <table>
1224     * <thead>
1225     * <tr>
1226     * <th align="center">State</th>
1227     * <th align="center">Transition Cause</th>
1228     * <th align="center">New State</th>
1229     * <th align="center">Notes</th>
1230     * </tr>
1231     * </thead>
1232     * <tbody>
1233     * <tr>
1234     * <td align="center">INACTIVE</td>
1235     * <td align="center">AF_TRIGGER</td>
1236     * <td align="center">ACTIVE_SCAN</td>
1237     * <td align="center">Start AF sweep, Lens now moving</td>
1238     * </tr>
1239     * <tr>
1240     * <td align="center">ACTIVE_SCAN</td>
1241     * <td align="center">AF sweep done</td>
1242     * <td align="center">FOCUSED_LOCKED</td>
1243     * <td align="center">Focused, Lens now locked</td>
1244     * </tr>
1245     * <tr>
1246     * <td align="center">ACTIVE_SCAN</td>
1247     * <td align="center">AF sweep done</td>
1248     * <td align="center">NOT_FOCUSED_LOCKED</td>
1249     * <td align="center">Not focused, Lens now locked</td>
1250     * </tr>
1251     * <tr>
1252     * <td align="center">ACTIVE_SCAN</td>
1253     * <td align="center">AF_CANCEL</td>
1254     * <td align="center">INACTIVE</td>
1255     * <td align="center">Cancel/reset AF, Lens now locked</td>
1256     * </tr>
1257     * <tr>
1258     * <td align="center">FOCUSED_LOCKED</td>
1259     * <td align="center">AF_CANCEL</td>
1260     * <td align="center">INACTIVE</td>
1261     * <td align="center">Cancel/reset AF</td>
1262     * </tr>
1263     * <tr>
1264     * <td align="center">FOCUSED_LOCKED</td>
1265     * <td align="center">AF_TRIGGER</td>
1266     * <td align="center">ACTIVE_SCAN</td>
1267     * <td align="center">Start new sweep, Lens now moving</td>
1268     * </tr>
1269     * <tr>
1270     * <td align="center">NOT_FOCUSED_LOCKED</td>
1271     * <td align="center">AF_CANCEL</td>
1272     * <td align="center">INACTIVE</td>
1273     * <td align="center">Cancel/reset AF</td>
1274     * </tr>
1275     * <tr>
1276     * <td align="center">NOT_FOCUSED_LOCKED</td>
1277     * <td align="center">AF_TRIGGER</td>
1278     * <td align="center">ACTIVE_SCAN</td>
1279     * <td align="center">Start new sweep, Lens now moving</td>
1280     * </tr>
1281     * <tr>
1282     * <td align="center">Any state</td>
1283     * <td align="center">Mode change</td>
1284     * <td align="center">INACTIVE</td>
1285     * <td align="center"></td>
1286     * </tr>
1287     * </tbody>
1288     * </table>
1289     * <p>For the above table, the camera device may skip reporting any state changes that happen
1290     * without application intervention (i.e. mode switch, trigger, locking). Any state that
1291     * can be skipped in that manner is called a transient state.</p>
1292     * <p>For example, for these AF modes (AF_MODE_AUTO and AF_MODE_MACRO), in addition to the
1293     * state transitions listed in above table, it is also legal for the camera device to skip
1294     * one or more transient states between two results. See below table for examples:</p>
1295     * <table>
1296     * <thead>
1297     * <tr>
1298     * <th align="center">State</th>
1299     * <th align="center">Transition Cause</th>
1300     * <th align="center">New State</th>
1301     * <th align="center">Notes</th>
1302     * </tr>
1303     * </thead>
1304     * <tbody>
1305     * <tr>
1306     * <td align="center">INACTIVE</td>
1307     * <td align="center">AF_TRIGGER</td>
1308     * <td align="center">FOCUSED_LOCKED</td>
1309     * <td align="center">Focus is already good or good after a scan, lens is now locked.</td>
1310     * </tr>
1311     * <tr>
1312     * <td align="center">INACTIVE</td>
1313     * <td align="center">AF_TRIGGER</td>
1314     * <td align="center">NOT_FOCUSED_LOCKED</td>
1315     * <td align="center">Focus failed after a scan, lens is now locked.</td>
1316     * </tr>
1317     * <tr>
1318     * <td align="center">FOCUSED_LOCKED</td>
1319     * <td align="center">AF_TRIGGER</td>
1320     * <td align="center">FOCUSED_LOCKED</td>
1321     * <td align="center">Focus is already good or good after a scan, lens is now locked.</td>
1322     * </tr>
1323     * <tr>
1324     * <td align="center">NOT_FOCUSED_LOCKED</td>
1325     * <td align="center">AF_TRIGGER</td>
1326     * <td align="center">FOCUSED_LOCKED</td>
1327     * <td align="center">Focus is good after a scan, lens is not locked.</td>
1328     * </tr>
1329     * </tbody>
1330     * </table>
1331     * <p>When {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} is AF_MODE_CONTINUOUS_VIDEO:</p>
1332     * <table>
1333     * <thead>
1334     * <tr>
1335     * <th align="center">State</th>
1336     * <th align="center">Transition Cause</th>
1337     * <th align="center">New State</th>
1338     * <th align="center">Notes</th>
1339     * </tr>
1340     * </thead>
1341     * <tbody>
1342     * <tr>
1343     * <td align="center">INACTIVE</td>
1344     * <td align="center">Camera device initiates new scan</td>
1345     * <td align="center">PASSIVE_SCAN</td>
1346     * <td align="center">Start AF scan, Lens now moving</td>
1347     * </tr>
1348     * <tr>
1349     * <td align="center">INACTIVE</td>
1350     * <td align="center">AF_TRIGGER</td>
1351     * <td align="center">NOT_FOCUSED_LOCKED</td>
1352     * <td align="center">AF state query, Lens now locked</td>
1353     * </tr>
1354     * <tr>
1355     * <td align="center">PASSIVE_SCAN</td>
1356     * <td align="center">Camera device completes current scan</td>
1357     * <td align="center">PASSIVE_FOCUSED</td>
1358     * <td align="center">End AF scan, Lens now locked</td>
1359     * </tr>
1360     * <tr>
1361     * <td align="center">PASSIVE_SCAN</td>
1362     * <td align="center">Camera device fails current scan</td>
1363     * <td align="center">PASSIVE_UNFOCUSED</td>
1364     * <td align="center">End AF scan, Lens now locked</td>
1365     * </tr>
1366     * <tr>
1367     * <td align="center">PASSIVE_SCAN</td>
1368     * <td align="center">AF_TRIGGER</td>
1369     * <td align="center">FOCUSED_LOCKED</td>
1370     * <td align="center">Immediate transition, if focus is good. Lens now locked</td>
1371     * </tr>
1372     * <tr>
1373     * <td align="center">PASSIVE_SCAN</td>
1374     * <td align="center">AF_TRIGGER</td>
1375     * <td align="center">NOT_FOCUSED_LOCKED</td>
1376     * <td align="center">Immediate transition, if focus is bad. Lens now locked</td>
1377     * </tr>
1378     * <tr>
1379     * <td align="center">PASSIVE_SCAN</td>
1380     * <td align="center">AF_CANCEL</td>
1381     * <td align="center">INACTIVE</td>
1382     * <td align="center">Reset lens position, Lens now locked</td>
1383     * </tr>
1384     * <tr>
1385     * <td align="center">PASSIVE_FOCUSED</td>
1386     * <td align="center">Camera device initiates new scan</td>
1387     * <td align="center">PASSIVE_SCAN</td>
1388     * <td align="center">Start AF scan, Lens now moving</td>
1389     * </tr>
1390     * <tr>
1391     * <td align="center">PASSIVE_UNFOCUSED</td>
1392     * <td align="center">Camera device initiates new scan</td>
1393     * <td align="center">PASSIVE_SCAN</td>
1394     * <td align="center">Start AF scan, Lens now moving</td>
1395     * </tr>
1396     * <tr>
1397     * <td align="center">PASSIVE_FOCUSED</td>
1398     * <td align="center">AF_TRIGGER</td>
1399     * <td align="center">FOCUSED_LOCKED</td>
1400     * <td align="center">Immediate transition, lens now locked</td>
1401     * </tr>
1402     * <tr>
1403     * <td align="center">PASSIVE_UNFOCUSED</td>
1404     * <td align="center">AF_TRIGGER</td>
1405     * <td align="center">NOT_FOCUSED_LOCKED</td>
1406     * <td align="center">Immediate transition, lens now locked</td>
1407     * </tr>
1408     * <tr>
1409     * <td align="center">FOCUSED_LOCKED</td>
1410     * <td align="center">AF_TRIGGER</td>
1411     * <td align="center">FOCUSED_LOCKED</td>
1412     * <td align="center">No effect</td>
1413     * </tr>
1414     * <tr>
1415     * <td align="center">FOCUSED_LOCKED</td>
1416     * <td align="center">AF_CANCEL</td>
1417     * <td align="center">INACTIVE</td>
1418     * <td align="center">Restart AF scan</td>
1419     * </tr>
1420     * <tr>
1421     * <td align="center">NOT_FOCUSED_LOCKED</td>
1422     * <td align="center">AF_TRIGGER</td>
1423     * <td align="center">NOT_FOCUSED_LOCKED</td>
1424     * <td align="center">No effect</td>
1425     * </tr>
1426     * <tr>
1427     * <td align="center">NOT_FOCUSED_LOCKED</td>
1428     * <td align="center">AF_CANCEL</td>
1429     * <td align="center">INACTIVE</td>
1430     * <td align="center">Restart AF scan</td>
1431     * </tr>
1432     * </tbody>
1433     * </table>
1434     * <p>When {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} is AF_MODE_CONTINUOUS_PICTURE:</p>
1435     * <table>
1436     * <thead>
1437     * <tr>
1438     * <th align="center">State</th>
1439     * <th align="center">Transition Cause</th>
1440     * <th align="center">New State</th>
1441     * <th align="center">Notes</th>
1442     * </tr>
1443     * </thead>
1444     * <tbody>
1445     * <tr>
1446     * <td align="center">INACTIVE</td>
1447     * <td align="center">Camera device initiates new scan</td>
1448     * <td align="center">PASSIVE_SCAN</td>
1449     * <td align="center">Start AF scan, Lens now moving</td>
1450     * </tr>
1451     * <tr>
1452     * <td align="center">INACTIVE</td>
1453     * <td align="center">AF_TRIGGER</td>
1454     * <td align="center">NOT_FOCUSED_LOCKED</td>
1455     * <td align="center">AF state query, Lens now locked</td>
1456     * </tr>
1457     * <tr>
1458     * <td align="center">PASSIVE_SCAN</td>
1459     * <td align="center">Camera device completes current scan</td>
1460     * <td align="center">PASSIVE_FOCUSED</td>
1461     * <td align="center">End AF scan, Lens now locked</td>
1462     * </tr>
1463     * <tr>
1464     * <td align="center">PASSIVE_SCAN</td>
1465     * <td align="center">Camera device fails current scan</td>
1466     * <td align="center">PASSIVE_UNFOCUSED</td>
1467     * <td align="center">End AF scan, Lens now locked</td>
1468     * </tr>
1469     * <tr>
1470     * <td align="center">PASSIVE_SCAN</td>
1471     * <td align="center">AF_TRIGGER</td>
1472     * <td align="center">FOCUSED_LOCKED</td>
1473     * <td align="center">Eventual transition once the focus is good. Lens now locked</td>
1474     * </tr>
1475     * <tr>
1476     * <td align="center">PASSIVE_SCAN</td>
1477     * <td align="center">AF_TRIGGER</td>
1478     * <td align="center">NOT_FOCUSED_LOCKED</td>
1479     * <td align="center">Eventual transition if cannot find focus. Lens now locked</td>
1480     * </tr>
1481     * <tr>
1482     * <td align="center">PASSIVE_SCAN</td>
1483     * <td align="center">AF_CANCEL</td>
1484     * <td align="center">INACTIVE</td>
1485     * <td align="center">Reset lens position, Lens now locked</td>
1486     * </tr>
1487     * <tr>
1488     * <td align="center">PASSIVE_FOCUSED</td>
1489     * <td align="center">Camera device initiates new scan</td>
1490     * <td align="center">PASSIVE_SCAN</td>
1491     * <td align="center">Start AF scan, Lens now moving</td>
1492     * </tr>
1493     * <tr>
1494     * <td align="center">PASSIVE_UNFOCUSED</td>
1495     * <td align="center">Camera device initiates new scan</td>
1496     * <td align="center">PASSIVE_SCAN</td>
1497     * <td align="center">Start AF scan, Lens now moving</td>
1498     * </tr>
1499     * <tr>
1500     * <td align="center">PASSIVE_FOCUSED</td>
1501     * <td align="center">AF_TRIGGER</td>
1502     * <td align="center">FOCUSED_LOCKED</td>
1503     * <td align="center">Immediate trans. Lens now locked</td>
1504     * </tr>
1505     * <tr>
1506     * <td align="center">PASSIVE_UNFOCUSED</td>
1507     * <td align="center">AF_TRIGGER</td>
1508     * <td align="center">NOT_FOCUSED_LOCKED</td>
1509     * <td align="center">Immediate trans. Lens now locked</td>
1510     * </tr>
1511     * <tr>
1512     * <td align="center">FOCUSED_LOCKED</td>
1513     * <td align="center">AF_TRIGGER</td>
1514     * <td align="center">FOCUSED_LOCKED</td>
1515     * <td align="center">No effect</td>
1516     * </tr>
1517     * <tr>
1518     * <td align="center">FOCUSED_LOCKED</td>
1519     * <td align="center">AF_CANCEL</td>
1520     * <td align="center">INACTIVE</td>
1521     * <td align="center">Restart AF scan</td>
1522     * </tr>
1523     * <tr>
1524     * <td align="center">NOT_FOCUSED_LOCKED</td>
1525     * <td align="center">AF_TRIGGER</td>
1526     * <td align="center">NOT_FOCUSED_LOCKED</td>
1527     * <td align="center">No effect</td>
1528     * </tr>
1529     * <tr>
1530     * <td align="center">NOT_FOCUSED_LOCKED</td>
1531     * <td align="center">AF_CANCEL</td>
1532     * <td align="center">INACTIVE</td>
1533     * <td align="center">Restart AF scan</td>
1534     * </tr>
1535     * </tbody>
1536     * </table>
1537     * <p>When switch between AF_MODE_CONTINUOUS_* (CAF modes) and AF_MODE_AUTO/AF_MODE_MACRO
1538     * (AUTO modes), the initial INACTIVE or PASSIVE_SCAN states may be skipped by the
1539     * camera device. When a trigger is included in a mode switch request, the trigger
1540     * will be evaluated in the context of the new mode in the request.
1541     * See below table for examples:</p>
1542     * <table>
1543     * <thead>
1544     * <tr>
1545     * <th align="center">State</th>
1546     * <th align="center">Transition Cause</th>
1547     * <th align="center">New State</th>
1548     * <th align="center">Notes</th>
1549     * </tr>
1550     * </thead>
1551     * <tbody>
1552     * <tr>
1553     * <td align="center">any state</td>
1554     * <td align="center">CAF--&gt;AUTO mode switch</td>
1555     * <td align="center">INACTIVE</td>
1556     * <td align="center">Mode switch without trigger, initial state must be INACTIVE</td>
1557     * </tr>
1558     * <tr>
1559     * <td align="center">any state</td>
1560     * <td align="center">CAF--&gt;AUTO mode switch with AF_TRIGGER</td>
1561     * <td align="center">trigger-reachable states from INACTIVE</td>
1562     * <td align="center">Mode switch with trigger, INACTIVE is skipped</td>
1563     * </tr>
1564     * <tr>
1565     * <td align="center">any state</td>
1566     * <td align="center">AUTO--&gt;CAF mode switch</td>
1567     * <td align="center">passively reachable states from INACTIVE</td>
1568     * <td align="center">Mode switch without trigger, passive transient state is skipped</td>
1569     * </tr>
1570     * </tbody>
1571     * </table>
1572     * <p><b>Possible values:</b>
1573     * <ul>
1574     *   <li>{@link #CONTROL_AF_STATE_INACTIVE INACTIVE}</li>
1575     *   <li>{@link #CONTROL_AF_STATE_PASSIVE_SCAN PASSIVE_SCAN}</li>
1576     *   <li>{@link #CONTROL_AF_STATE_PASSIVE_FOCUSED PASSIVE_FOCUSED}</li>
1577     *   <li>{@link #CONTROL_AF_STATE_ACTIVE_SCAN ACTIVE_SCAN}</li>
1578     *   <li>{@link #CONTROL_AF_STATE_FOCUSED_LOCKED FOCUSED_LOCKED}</li>
1579     *   <li>{@link #CONTROL_AF_STATE_NOT_FOCUSED_LOCKED NOT_FOCUSED_LOCKED}</li>
1580     *   <li>{@link #CONTROL_AF_STATE_PASSIVE_UNFOCUSED PASSIVE_UNFOCUSED}</li>
1581     * </ul></p>
1582     * <p>This key is available on all devices.</p>
1583     *
1584     * @see CaptureRequest#CONTROL_AF_MODE
1585     * @see CaptureRequest#CONTROL_MODE
1586     * @see CaptureRequest#CONTROL_SCENE_MODE
1587     * @see #CONTROL_AF_STATE_INACTIVE
1588     * @see #CONTROL_AF_STATE_PASSIVE_SCAN
1589     * @see #CONTROL_AF_STATE_PASSIVE_FOCUSED
1590     * @see #CONTROL_AF_STATE_ACTIVE_SCAN
1591     * @see #CONTROL_AF_STATE_FOCUSED_LOCKED
1592     * @see #CONTROL_AF_STATE_NOT_FOCUSED_LOCKED
1593     * @see #CONTROL_AF_STATE_PASSIVE_UNFOCUSED
1594     */
1595    @PublicKey
1596    public static final Key<Integer> CONTROL_AF_STATE =
1597            new Key<Integer>("android.control.afState", int.class);
1598
1599    /**
1600     * <p>Whether auto-white balance (AWB) is currently locked to its
1601     * latest calculated values.</p>
1602     * <p>When set to <code>true</code> (ON), the AWB algorithm is locked to its latest parameters,
1603     * and will not change color balance settings until the lock is set to <code>false</code> (OFF).</p>
1604     * <p>Since the camera device has a pipeline of in-flight requests, the settings that
1605     * get locked do not necessarily correspond to the settings that were present in the
1606     * latest capture result received from the camera device, since additional captures
1607     * and AWB updates may have occurred even before the result was sent out. If an
1608     * application is switching between automatic and manual control and wishes to eliminate
1609     * any flicker during the switch, the following procedure is recommended:</p>
1610     * <ol>
1611     * <li>Starting in auto-AWB mode:</li>
1612     * <li>Lock AWB</li>
1613     * <li>Wait for the first result to be output that has the AWB locked</li>
1614     * <li>Copy AWB settings from that result into a request, set the request to manual AWB</li>
1615     * <li>Submit the capture request, proceed to run manual AWB as desired.</li>
1616     * </ol>
1617     * <p>Note that AWB lock is only meaningful when
1618     * {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode} is in the AUTO mode; in other modes,
1619     * AWB is already fixed to a specific setting.</p>
1620     * <p>Some LEGACY devices may not support ON; the value is then overridden to OFF.</p>
1621     * <p>This key is available on all devices.</p>
1622     *
1623     * @see CaptureRequest#CONTROL_AWB_MODE
1624     */
1625    @PublicKey
1626    public static final Key<Boolean> CONTROL_AWB_LOCK =
1627            new Key<Boolean>("android.control.awbLock", boolean.class);
1628
1629    /**
1630     * <p>Whether auto-white balance (AWB) is currently setting the color
1631     * transform fields, and what its illumination target
1632     * is.</p>
1633     * <p>This control is only effective if {@link CaptureRequest#CONTROL_MODE android.control.mode} is AUTO.</p>
1634     * <p>When set to the ON mode, the camera device's auto-white balance
1635     * routine is enabled, overriding the application's selected
1636     * {@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform}, {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} and
1637     * {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode}. Note that when {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode}
1638     * is OFF, the behavior of AWB is device dependent. It is recommened to
1639     * also set AWB mode to OFF or lock AWB by using {@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} before
1640     * setting AE mode to OFF.</p>
1641     * <p>When set to the OFF mode, the camera device's auto-white balance
1642     * routine is disabled. The application manually controls the white
1643     * balance by {@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform}, {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains}
1644     * and {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode}.</p>
1645     * <p>When set to any other modes, the camera device's auto-white
1646     * balance routine is disabled. The camera device uses each
1647     * particular illumination target for white balance
1648     * adjustment. The application's values for
1649     * {@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform},
1650     * {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} and
1651     * {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} are ignored.</p>
1652     * <p><b>Possible values:</b>
1653     * <ul>
1654     *   <li>{@link #CONTROL_AWB_MODE_OFF OFF}</li>
1655     *   <li>{@link #CONTROL_AWB_MODE_AUTO AUTO}</li>
1656     *   <li>{@link #CONTROL_AWB_MODE_INCANDESCENT INCANDESCENT}</li>
1657     *   <li>{@link #CONTROL_AWB_MODE_FLUORESCENT FLUORESCENT}</li>
1658     *   <li>{@link #CONTROL_AWB_MODE_WARM_FLUORESCENT WARM_FLUORESCENT}</li>
1659     *   <li>{@link #CONTROL_AWB_MODE_DAYLIGHT DAYLIGHT}</li>
1660     *   <li>{@link #CONTROL_AWB_MODE_CLOUDY_DAYLIGHT CLOUDY_DAYLIGHT}</li>
1661     *   <li>{@link #CONTROL_AWB_MODE_TWILIGHT TWILIGHT}</li>
1662     *   <li>{@link #CONTROL_AWB_MODE_SHADE SHADE}</li>
1663     * </ul></p>
1664     * <p><b>Available values for this device:</b><br>
1665     * {@link CameraCharacteristics#CONTROL_AWB_AVAILABLE_MODES android.control.awbAvailableModes}</p>
1666     * <p>This key is available on all devices.</p>
1667     *
1668     * @see CaptureRequest#COLOR_CORRECTION_GAINS
1669     * @see CaptureRequest#COLOR_CORRECTION_MODE
1670     * @see CaptureRequest#COLOR_CORRECTION_TRANSFORM
1671     * @see CaptureRequest#CONTROL_AE_MODE
1672     * @see CameraCharacteristics#CONTROL_AWB_AVAILABLE_MODES
1673     * @see CaptureRequest#CONTROL_AWB_LOCK
1674     * @see CaptureRequest#CONTROL_MODE
1675     * @see #CONTROL_AWB_MODE_OFF
1676     * @see #CONTROL_AWB_MODE_AUTO
1677     * @see #CONTROL_AWB_MODE_INCANDESCENT
1678     * @see #CONTROL_AWB_MODE_FLUORESCENT
1679     * @see #CONTROL_AWB_MODE_WARM_FLUORESCENT
1680     * @see #CONTROL_AWB_MODE_DAYLIGHT
1681     * @see #CONTROL_AWB_MODE_CLOUDY_DAYLIGHT
1682     * @see #CONTROL_AWB_MODE_TWILIGHT
1683     * @see #CONTROL_AWB_MODE_SHADE
1684     */
1685    @PublicKey
1686    public static final Key<Integer> CONTROL_AWB_MODE =
1687            new Key<Integer>("android.control.awbMode", int.class);
1688
1689    /**
1690     * <p>List of metering areas to use for auto-white-balance illuminant
1691     * estimation.</p>
1692     * <p>Not available if {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AWB android.control.maxRegionsAwb} is 0.
1693     * Otherwise will always be present.</p>
1694     * <p>The maximum number of regions supported by the device is determined by the value
1695     * of {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AWB android.control.maxRegionsAwb}.</p>
1696     * <p>The coordinate system is based on the active pixel array,
1697     * with (0,0) being the top-left pixel in the active pixel array, and
1698     * ({@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.width - 1,
1699     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.height - 1) being the
1700     * bottom-right pixel in the active pixel array.</p>
1701     * <p>The weight must range from 0 to 1000, and represents a weight
1702     * for every pixel in the area. This means that a large metering area
1703     * with the same weight as a smaller area will have more effect in
1704     * the metering result. Metering areas can partially overlap and the
1705     * camera device will add the weights in the overlap region.</p>
1706     * <p>The weights are relative to weights of other white balance metering regions, so if
1707     * only one region is used, all non-zero weights will have the same effect. A region with
1708     * 0 weight is ignored.</p>
1709     * <p>If all regions have 0 weight, then no specific metering area needs to be used by the
1710     * camera device.</p>
1711     * <p>If the metering region is outside the used {@link CaptureRequest#SCALER_CROP_REGION android.scaler.cropRegion} returned in
1712     * capture result metadata, the camera device will ignore the sections outside the crop
1713     * region and output only the intersection rectangle as the metering region in the result
1714     * metadata.  If the region is entirely outside the crop region, it will be ignored and
1715     * not reported in the result metadata.</p>
1716     * <p><b>Units</b>: Pixel coordinates within {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
1717     * <p><b>Range of valid values:</b><br>
1718     * Coordinates must be between <code>[(0,0), (width, height))</code> of
1719     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
1720     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
1721     *
1722     * @see CameraCharacteristics#CONTROL_MAX_REGIONS_AWB
1723     * @see CaptureRequest#SCALER_CROP_REGION
1724     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
1725     */
1726    @PublicKey
1727    public static final Key<android.hardware.camera2.params.MeteringRectangle[]> CONTROL_AWB_REGIONS =
1728            new Key<android.hardware.camera2.params.MeteringRectangle[]>("android.control.awbRegions", android.hardware.camera2.params.MeteringRectangle[].class);
1729
1730    /**
1731     * <p>Information to the camera device 3A (auto-exposure,
1732     * auto-focus, auto-white balance) routines about the purpose
1733     * of this capture, to help the camera device to decide optimal 3A
1734     * strategy.</p>
1735     * <p>This control (except for MANUAL) is only effective if
1736     * <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} != OFF</code> and any 3A routine is active.</p>
1737     * <p>ZERO_SHUTTER_LAG will be supported if {@link CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES android.request.availableCapabilities}
1738     * contains PRIVATE_REPROCESSING or YUV_REPROCESSING. MANUAL will be supported if
1739     * {@link CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES android.request.availableCapabilities} contains MANUAL_SENSOR. Other intent values are
1740     * always supported.</p>
1741     * <p><b>Possible values:</b>
1742     * <ul>
1743     *   <li>{@link #CONTROL_CAPTURE_INTENT_CUSTOM CUSTOM}</li>
1744     *   <li>{@link #CONTROL_CAPTURE_INTENT_PREVIEW PREVIEW}</li>
1745     *   <li>{@link #CONTROL_CAPTURE_INTENT_STILL_CAPTURE STILL_CAPTURE}</li>
1746     *   <li>{@link #CONTROL_CAPTURE_INTENT_VIDEO_RECORD VIDEO_RECORD}</li>
1747     *   <li>{@link #CONTROL_CAPTURE_INTENT_VIDEO_SNAPSHOT VIDEO_SNAPSHOT}</li>
1748     *   <li>{@link #CONTROL_CAPTURE_INTENT_ZERO_SHUTTER_LAG ZERO_SHUTTER_LAG}</li>
1749     *   <li>{@link #CONTROL_CAPTURE_INTENT_MANUAL MANUAL}</li>
1750     * </ul></p>
1751     * <p>This key is available on all devices.</p>
1752     *
1753     * @see CaptureRequest#CONTROL_MODE
1754     * @see CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES
1755     * @see #CONTROL_CAPTURE_INTENT_CUSTOM
1756     * @see #CONTROL_CAPTURE_INTENT_PREVIEW
1757     * @see #CONTROL_CAPTURE_INTENT_STILL_CAPTURE
1758     * @see #CONTROL_CAPTURE_INTENT_VIDEO_RECORD
1759     * @see #CONTROL_CAPTURE_INTENT_VIDEO_SNAPSHOT
1760     * @see #CONTROL_CAPTURE_INTENT_ZERO_SHUTTER_LAG
1761     * @see #CONTROL_CAPTURE_INTENT_MANUAL
1762     */
1763    @PublicKey
1764    public static final Key<Integer> CONTROL_CAPTURE_INTENT =
1765            new Key<Integer>("android.control.captureIntent", int.class);
1766
1767    /**
1768     * <p>Current state of auto-white balance (AWB) algorithm.</p>
1769     * <p>Switching between or enabling AWB modes ({@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode}) always
1770     * resets the AWB state to INACTIVE. Similarly, switching between {@link CaptureRequest#CONTROL_MODE android.control.mode},
1771     * or {@link CaptureRequest#CONTROL_SCENE_MODE android.control.sceneMode} if <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} == USE_SCENE_MODE</code> resets all
1772     * the algorithm states to INACTIVE.</p>
1773     * <p>The camera device can do several state transitions between two results, if it is
1774     * allowed by the state transition table. So INACTIVE may never actually be seen in
1775     * a result.</p>
1776     * <p>The state in the result is the state for this image (in sync with this image): if
1777     * AWB state becomes CONVERGED, then the image data associated with this result should
1778     * be good to use.</p>
1779     * <p>Below are state transition tables for different AWB modes.</p>
1780     * <p>When <code>{@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode} != AWB_MODE_AUTO</code>:</p>
1781     * <table>
1782     * <thead>
1783     * <tr>
1784     * <th align="center">State</th>
1785     * <th align="center">Transition Cause</th>
1786     * <th align="center">New State</th>
1787     * <th align="center">Notes</th>
1788     * </tr>
1789     * </thead>
1790     * <tbody>
1791     * <tr>
1792     * <td align="center">INACTIVE</td>
1793     * <td align="center"></td>
1794     * <td align="center">INACTIVE</td>
1795     * <td align="center">Camera device auto white balance algorithm is disabled</td>
1796     * </tr>
1797     * </tbody>
1798     * </table>
1799     * <p>When {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode} is AWB_MODE_AUTO:</p>
1800     * <table>
1801     * <thead>
1802     * <tr>
1803     * <th align="center">State</th>
1804     * <th align="center">Transition Cause</th>
1805     * <th align="center">New State</th>
1806     * <th align="center">Notes</th>
1807     * </tr>
1808     * </thead>
1809     * <tbody>
1810     * <tr>
1811     * <td align="center">INACTIVE</td>
1812     * <td align="center">Camera device initiates AWB scan</td>
1813     * <td align="center">SEARCHING</td>
1814     * <td align="center">Values changing</td>
1815     * </tr>
1816     * <tr>
1817     * <td align="center">INACTIVE</td>
1818     * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is ON</td>
1819     * <td align="center">LOCKED</td>
1820     * <td align="center">Values locked</td>
1821     * </tr>
1822     * <tr>
1823     * <td align="center">SEARCHING</td>
1824     * <td align="center">Camera device finishes AWB scan</td>
1825     * <td align="center">CONVERGED</td>
1826     * <td align="center">Good values, not changing</td>
1827     * </tr>
1828     * <tr>
1829     * <td align="center">SEARCHING</td>
1830     * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is ON</td>
1831     * <td align="center">LOCKED</td>
1832     * <td align="center">Values locked</td>
1833     * </tr>
1834     * <tr>
1835     * <td align="center">CONVERGED</td>
1836     * <td align="center">Camera device initiates AWB scan</td>
1837     * <td align="center">SEARCHING</td>
1838     * <td align="center">Values changing</td>
1839     * </tr>
1840     * <tr>
1841     * <td align="center">CONVERGED</td>
1842     * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is ON</td>
1843     * <td align="center">LOCKED</td>
1844     * <td align="center">Values locked</td>
1845     * </tr>
1846     * <tr>
1847     * <td align="center">LOCKED</td>
1848     * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is OFF</td>
1849     * <td align="center">SEARCHING</td>
1850     * <td align="center">Values not good after unlock</td>
1851     * </tr>
1852     * </tbody>
1853     * </table>
1854     * <p>For the above table, the camera device may skip reporting any state changes that happen
1855     * without application intervention (i.e. mode switch, trigger, locking). Any state that
1856     * can be skipped in that manner is called a transient state.</p>
1857     * <p>For example, for this AWB mode (AWB_MODE_AUTO), in addition to the state transitions
1858     * listed in above table, it is also legal for the camera device to skip one or more
1859     * transient states between two results. See below table for examples:</p>
1860     * <table>
1861     * <thead>
1862     * <tr>
1863     * <th align="center">State</th>
1864     * <th align="center">Transition Cause</th>
1865     * <th align="center">New State</th>
1866     * <th align="center">Notes</th>
1867     * </tr>
1868     * </thead>
1869     * <tbody>
1870     * <tr>
1871     * <td align="center">INACTIVE</td>
1872     * <td align="center">Camera device finished AWB scan</td>
1873     * <td align="center">CONVERGED</td>
1874     * <td align="center">Values are already good, transient states are skipped by camera device.</td>
1875     * </tr>
1876     * <tr>
1877     * <td align="center">LOCKED</td>
1878     * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is OFF</td>
1879     * <td align="center">CONVERGED</td>
1880     * <td align="center">Values good after unlock, transient states are skipped by camera device.</td>
1881     * </tr>
1882     * </tbody>
1883     * </table>
1884     * <p><b>Possible values:</b>
1885     * <ul>
1886     *   <li>{@link #CONTROL_AWB_STATE_INACTIVE INACTIVE}</li>
1887     *   <li>{@link #CONTROL_AWB_STATE_SEARCHING SEARCHING}</li>
1888     *   <li>{@link #CONTROL_AWB_STATE_CONVERGED CONVERGED}</li>
1889     *   <li>{@link #CONTROL_AWB_STATE_LOCKED LOCKED}</li>
1890     * </ul></p>
1891     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
1892     * <p><b>Limited capability</b> -
1893     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
1894     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
1895     *
1896     * @see CaptureRequest#CONTROL_AWB_LOCK
1897     * @see CaptureRequest#CONTROL_AWB_MODE
1898     * @see CaptureRequest#CONTROL_MODE
1899     * @see CaptureRequest#CONTROL_SCENE_MODE
1900     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
1901     * @see #CONTROL_AWB_STATE_INACTIVE
1902     * @see #CONTROL_AWB_STATE_SEARCHING
1903     * @see #CONTROL_AWB_STATE_CONVERGED
1904     * @see #CONTROL_AWB_STATE_LOCKED
1905     */
1906    @PublicKey
1907    public static final Key<Integer> CONTROL_AWB_STATE =
1908            new Key<Integer>("android.control.awbState", int.class);
1909
1910    /**
1911     * <p>A special color effect to apply.</p>
1912     * <p>When this mode is set, a color effect will be applied
1913     * to images produced by the camera device. The interpretation
1914     * and implementation of these color effects is left to the
1915     * implementor of the camera device, and should not be
1916     * depended on to be consistent (or present) across all
1917     * devices.</p>
1918     * <p><b>Possible values:</b>
1919     * <ul>
1920     *   <li>{@link #CONTROL_EFFECT_MODE_OFF OFF}</li>
1921     *   <li>{@link #CONTROL_EFFECT_MODE_MONO MONO}</li>
1922     *   <li>{@link #CONTROL_EFFECT_MODE_NEGATIVE NEGATIVE}</li>
1923     *   <li>{@link #CONTROL_EFFECT_MODE_SOLARIZE SOLARIZE}</li>
1924     *   <li>{@link #CONTROL_EFFECT_MODE_SEPIA SEPIA}</li>
1925     *   <li>{@link #CONTROL_EFFECT_MODE_POSTERIZE POSTERIZE}</li>
1926     *   <li>{@link #CONTROL_EFFECT_MODE_WHITEBOARD WHITEBOARD}</li>
1927     *   <li>{@link #CONTROL_EFFECT_MODE_BLACKBOARD BLACKBOARD}</li>
1928     *   <li>{@link #CONTROL_EFFECT_MODE_AQUA AQUA}</li>
1929     * </ul></p>
1930     * <p><b>Available values for this device:</b><br>
1931     * {@link CameraCharacteristics#CONTROL_AVAILABLE_EFFECTS android.control.availableEffects}</p>
1932     * <p>This key is available on all devices.</p>
1933     *
1934     * @see CameraCharacteristics#CONTROL_AVAILABLE_EFFECTS
1935     * @see #CONTROL_EFFECT_MODE_OFF
1936     * @see #CONTROL_EFFECT_MODE_MONO
1937     * @see #CONTROL_EFFECT_MODE_NEGATIVE
1938     * @see #CONTROL_EFFECT_MODE_SOLARIZE
1939     * @see #CONTROL_EFFECT_MODE_SEPIA
1940     * @see #CONTROL_EFFECT_MODE_POSTERIZE
1941     * @see #CONTROL_EFFECT_MODE_WHITEBOARD
1942     * @see #CONTROL_EFFECT_MODE_BLACKBOARD
1943     * @see #CONTROL_EFFECT_MODE_AQUA
1944     */
1945    @PublicKey
1946    public static final Key<Integer> CONTROL_EFFECT_MODE =
1947            new Key<Integer>("android.control.effectMode", int.class);
1948
1949    /**
1950     * <p>Overall mode of 3A (auto-exposure, auto-white-balance, auto-focus) control
1951     * routines.</p>
1952     * <p>This is a top-level 3A control switch. When set to OFF, all 3A control
1953     * by the camera device is disabled. The application must set the fields for
1954     * capture parameters itself.</p>
1955     * <p>When set to AUTO, the individual algorithm controls in
1956     * android.control.* are in effect, such as {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode}.</p>
1957     * <p>When set to USE_SCENE_MODE, the individual controls in
1958     * android.control.* are mostly disabled, and the camera device implements
1959     * one of the scene mode settings (such as ACTION, SUNSET, or PARTY)
1960     * as it wishes. The camera device scene mode 3A settings are provided by
1961     * {@link android.hardware.camera2.CaptureResult capture results}.</p>
1962     * <p>When set to OFF_KEEP_STATE, it is similar to OFF mode, the only difference
1963     * is that this frame will not be used by camera device background 3A statistics
1964     * update, as if this frame is never captured. This mode can be used in the scenario
1965     * where the application doesn't want a 3A manual control capture to affect
1966     * the subsequent auto 3A capture results.</p>
1967     * <p><b>Possible values:</b>
1968     * <ul>
1969     *   <li>{@link #CONTROL_MODE_OFF OFF}</li>
1970     *   <li>{@link #CONTROL_MODE_AUTO AUTO}</li>
1971     *   <li>{@link #CONTROL_MODE_USE_SCENE_MODE USE_SCENE_MODE}</li>
1972     *   <li>{@link #CONTROL_MODE_OFF_KEEP_STATE OFF_KEEP_STATE}</li>
1973     * </ul></p>
1974     * <p><b>Available values for this device:</b><br>
1975     * {@link CameraCharacteristics#CONTROL_AVAILABLE_MODES android.control.availableModes}</p>
1976     * <p>This key is available on all devices.</p>
1977     *
1978     * @see CaptureRequest#CONTROL_AF_MODE
1979     * @see CameraCharacteristics#CONTROL_AVAILABLE_MODES
1980     * @see #CONTROL_MODE_OFF
1981     * @see #CONTROL_MODE_AUTO
1982     * @see #CONTROL_MODE_USE_SCENE_MODE
1983     * @see #CONTROL_MODE_OFF_KEEP_STATE
1984     */
1985    @PublicKey
1986    public static final Key<Integer> CONTROL_MODE =
1987            new Key<Integer>("android.control.mode", int.class);
1988
1989    /**
1990     * <p>Control for which scene mode is currently active.</p>
1991     * <p>Scene modes are custom camera modes optimized for a certain set of conditions and
1992     * capture settings.</p>
1993     * <p>This is the mode that that is active when
1994     * <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} == USE_SCENE_MODE</code>. Aside from FACE_PRIORITY, these modes will
1995     * disable {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode}, {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode}, and {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode}
1996     * while in use.</p>
1997     * <p>The interpretation and implementation of these scene modes is left
1998     * to the implementor of the camera device. Their behavior will not be
1999     * consistent across all devices, and any given device may only implement
2000     * a subset of these modes.</p>
2001     * <p><b>Possible values:</b>
2002     * <ul>
2003     *   <li>{@link #CONTROL_SCENE_MODE_DISABLED DISABLED}</li>
2004     *   <li>{@link #CONTROL_SCENE_MODE_FACE_PRIORITY FACE_PRIORITY}</li>
2005     *   <li>{@link #CONTROL_SCENE_MODE_ACTION ACTION}</li>
2006     *   <li>{@link #CONTROL_SCENE_MODE_PORTRAIT PORTRAIT}</li>
2007     *   <li>{@link #CONTROL_SCENE_MODE_LANDSCAPE LANDSCAPE}</li>
2008     *   <li>{@link #CONTROL_SCENE_MODE_NIGHT NIGHT}</li>
2009     *   <li>{@link #CONTROL_SCENE_MODE_NIGHT_PORTRAIT NIGHT_PORTRAIT}</li>
2010     *   <li>{@link #CONTROL_SCENE_MODE_THEATRE THEATRE}</li>
2011     *   <li>{@link #CONTROL_SCENE_MODE_BEACH BEACH}</li>
2012     *   <li>{@link #CONTROL_SCENE_MODE_SNOW SNOW}</li>
2013     *   <li>{@link #CONTROL_SCENE_MODE_SUNSET SUNSET}</li>
2014     *   <li>{@link #CONTROL_SCENE_MODE_STEADYPHOTO STEADYPHOTO}</li>
2015     *   <li>{@link #CONTROL_SCENE_MODE_FIREWORKS FIREWORKS}</li>
2016     *   <li>{@link #CONTROL_SCENE_MODE_SPORTS SPORTS}</li>
2017     *   <li>{@link #CONTROL_SCENE_MODE_PARTY PARTY}</li>
2018     *   <li>{@link #CONTROL_SCENE_MODE_CANDLELIGHT CANDLELIGHT}</li>
2019     *   <li>{@link #CONTROL_SCENE_MODE_BARCODE BARCODE}</li>
2020     *   <li>{@link #CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO HIGH_SPEED_VIDEO}</li>
2021     *   <li>{@link #CONTROL_SCENE_MODE_HDR HDR}</li>
2022     * </ul></p>
2023     * <p><b>Available values for this device:</b><br>
2024     * {@link CameraCharacteristics#CONTROL_AVAILABLE_SCENE_MODES android.control.availableSceneModes}</p>
2025     * <p>This key is available on all devices.</p>
2026     *
2027     * @see CaptureRequest#CONTROL_AE_MODE
2028     * @see CaptureRequest#CONTROL_AF_MODE
2029     * @see CameraCharacteristics#CONTROL_AVAILABLE_SCENE_MODES
2030     * @see CaptureRequest#CONTROL_AWB_MODE
2031     * @see CaptureRequest#CONTROL_MODE
2032     * @see #CONTROL_SCENE_MODE_DISABLED
2033     * @see #CONTROL_SCENE_MODE_FACE_PRIORITY
2034     * @see #CONTROL_SCENE_MODE_ACTION
2035     * @see #CONTROL_SCENE_MODE_PORTRAIT
2036     * @see #CONTROL_SCENE_MODE_LANDSCAPE
2037     * @see #CONTROL_SCENE_MODE_NIGHT
2038     * @see #CONTROL_SCENE_MODE_NIGHT_PORTRAIT
2039     * @see #CONTROL_SCENE_MODE_THEATRE
2040     * @see #CONTROL_SCENE_MODE_BEACH
2041     * @see #CONTROL_SCENE_MODE_SNOW
2042     * @see #CONTROL_SCENE_MODE_SUNSET
2043     * @see #CONTROL_SCENE_MODE_STEADYPHOTO
2044     * @see #CONTROL_SCENE_MODE_FIREWORKS
2045     * @see #CONTROL_SCENE_MODE_SPORTS
2046     * @see #CONTROL_SCENE_MODE_PARTY
2047     * @see #CONTROL_SCENE_MODE_CANDLELIGHT
2048     * @see #CONTROL_SCENE_MODE_BARCODE
2049     * @see #CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO
2050     * @see #CONTROL_SCENE_MODE_HDR
2051     */
2052    @PublicKey
2053    public static final Key<Integer> CONTROL_SCENE_MODE =
2054            new Key<Integer>("android.control.sceneMode", int.class);
2055
2056    /**
2057     * <p>Whether video stabilization is
2058     * active.</p>
2059     * <p>Video stabilization automatically warps images from
2060     * the camera in order to stabilize motion between consecutive frames.</p>
2061     * <p>If enabled, video stabilization can modify the
2062     * {@link CaptureRequest#SCALER_CROP_REGION android.scaler.cropRegion} to keep the video stream stabilized.</p>
2063     * <p>Switching between different video stabilization modes may take several
2064     * frames to initialize, the camera device will report the current mode
2065     * in capture result metadata. For example, When "ON" mode is requested,
2066     * the video stabilization modes in the first several capture results may
2067     * still be "OFF", and it will become "ON" when the initialization is
2068     * done.</p>
2069     * <p>In addition, not all recording sizes or frame rates may be supported for
2070     * stabilization by a device that reports stabilization support. It is guaranteed
2071     * that an output targeting a MediaRecorder or MediaCodec will be stabilized if
2072     * the recording resolution is less than or equal to 1920 x 1080 (width less than
2073     * or equal to 1920, height less than or equal to 1080), and the recording
2074     * frame rate is less than or equal to 30fps.  At other sizes, the CaptureResult
2075     * {@link CaptureRequest#CONTROL_VIDEO_STABILIZATION_MODE android.control.videoStabilizationMode} field will return
2076     * OFF if the recording output is not stabilized, or if there are no output
2077     * Surface types that can be stabilized.</p>
2078     * <p>If a camera device supports both this mode and OIS
2079     * ({@link CaptureRequest#LENS_OPTICAL_STABILIZATION_MODE android.lens.opticalStabilizationMode}), turning both modes on may
2080     * produce undesirable interaction, so it is recommended not to enable
2081     * both at the same time.</p>
2082     * <p><b>Possible values:</b>
2083     * <ul>
2084     *   <li>{@link #CONTROL_VIDEO_STABILIZATION_MODE_OFF OFF}</li>
2085     *   <li>{@link #CONTROL_VIDEO_STABILIZATION_MODE_ON ON}</li>
2086     * </ul></p>
2087     * <p>This key is available on all devices.</p>
2088     *
2089     * @see CaptureRequest#CONTROL_VIDEO_STABILIZATION_MODE
2090     * @see CaptureRequest#LENS_OPTICAL_STABILIZATION_MODE
2091     * @see CaptureRequest#SCALER_CROP_REGION
2092     * @see #CONTROL_VIDEO_STABILIZATION_MODE_OFF
2093     * @see #CONTROL_VIDEO_STABILIZATION_MODE_ON
2094     */
2095    @PublicKey
2096    public static final Key<Integer> CONTROL_VIDEO_STABILIZATION_MODE =
2097            new Key<Integer>("android.control.videoStabilizationMode", int.class);
2098
2099    /**
2100     * <p>Operation mode for edge
2101     * enhancement.</p>
2102     * <p>Edge enhancement improves sharpness and details in the captured image. OFF means
2103     * no enhancement will be applied by the camera device.</p>
2104     * <p>FAST/HIGH_QUALITY both mean camera device determined enhancement
2105     * will be applied. HIGH_QUALITY mode indicates that the
2106     * camera device will use the highest-quality enhancement algorithms,
2107     * even if it slows down capture rate. FAST means the camera device will
2108     * not slow down capture rate when applying edge enhancement. FAST may be the same as OFF if
2109     * edge enhancement will slow down capture rate. Every output stream will have a similar
2110     * amount of enhancement applied.</p>
2111     * <p>ZERO_SHUTTER_LAG is meant to be used by applications that maintain a continuous circular
2112     * buffer of high-resolution images during preview and reprocess image(s) from that buffer
2113     * into a final capture when triggered by the user. In this mode, the camera device applies
2114     * edge enhancement to low-resolution streams (below maximum recording resolution) to
2115     * maximize preview quality, but does not apply edge enhancement to high-resolution streams,
2116     * since those will be reprocessed later if necessary.</p>
2117     * <p>For YUV_REPROCESSING, these FAST/HIGH_QUALITY modes both mean that the camera
2118     * device will apply FAST/HIGH_QUALITY YUV-domain edge enhancement, respectively.
2119     * The camera device may adjust its internal edge enhancement parameters for best
2120     * image quality based on the {@link CaptureRequest#REPROCESS_EFFECTIVE_EXPOSURE_FACTOR android.reprocess.effectiveExposureFactor}, if it is set.</p>
2121     * <p><b>Possible values:</b>
2122     * <ul>
2123     *   <li>{@link #EDGE_MODE_OFF OFF}</li>
2124     *   <li>{@link #EDGE_MODE_FAST FAST}</li>
2125     *   <li>{@link #EDGE_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
2126     *   <li>{@link #EDGE_MODE_ZERO_SHUTTER_LAG ZERO_SHUTTER_LAG}</li>
2127     * </ul></p>
2128     * <p><b>Available values for this device:</b><br>
2129     * {@link CameraCharacteristics#EDGE_AVAILABLE_EDGE_MODES android.edge.availableEdgeModes}</p>
2130     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2131     * <p><b>Full capability</b> -
2132     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2133     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2134     *
2135     * @see CameraCharacteristics#EDGE_AVAILABLE_EDGE_MODES
2136     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2137     * @see CaptureRequest#REPROCESS_EFFECTIVE_EXPOSURE_FACTOR
2138     * @see #EDGE_MODE_OFF
2139     * @see #EDGE_MODE_FAST
2140     * @see #EDGE_MODE_HIGH_QUALITY
2141     * @see #EDGE_MODE_ZERO_SHUTTER_LAG
2142     */
2143    @PublicKey
2144    public static final Key<Integer> EDGE_MODE =
2145            new Key<Integer>("android.edge.mode", int.class);
2146
2147    /**
2148     * <p>The desired mode for for the camera device's flash control.</p>
2149     * <p>This control is only effective when flash unit is available
2150     * (<code>{@link CameraCharacteristics#FLASH_INFO_AVAILABLE android.flash.info.available} == true</code>).</p>
2151     * <p>When this control is used, the {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} must be set to ON or OFF.
2152     * Otherwise, the camera device auto-exposure related flash control (ON_AUTO_FLASH,
2153     * ON_ALWAYS_FLASH, or ON_AUTO_FLASH_REDEYE) will override this control.</p>
2154     * <p>When set to OFF, the camera device will not fire flash for this capture.</p>
2155     * <p>When set to SINGLE, the camera device will fire flash regardless of the camera
2156     * device's auto-exposure routine's result. When used in still capture case, this
2157     * control should be used along with auto-exposure (AE) precapture metering sequence
2158     * ({@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger}), otherwise, the image may be incorrectly exposed.</p>
2159     * <p>When set to TORCH, the flash will be on continuously. This mode can be used
2160     * for use cases such as preview, auto-focus assist, still capture, or video recording.</p>
2161     * <p>The flash status will be reported by {@link CaptureResult#FLASH_STATE android.flash.state} in the capture result metadata.</p>
2162     * <p><b>Possible values:</b>
2163     * <ul>
2164     *   <li>{@link #FLASH_MODE_OFF OFF}</li>
2165     *   <li>{@link #FLASH_MODE_SINGLE SINGLE}</li>
2166     *   <li>{@link #FLASH_MODE_TORCH TORCH}</li>
2167     * </ul></p>
2168     * <p>This key is available on all devices.</p>
2169     *
2170     * @see CaptureRequest#CONTROL_AE_MODE
2171     * @see CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER
2172     * @see CameraCharacteristics#FLASH_INFO_AVAILABLE
2173     * @see CaptureResult#FLASH_STATE
2174     * @see #FLASH_MODE_OFF
2175     * @see #FLASH_MODE_SINGLE
2176     * @see #FLASH_MODE_TORCH
2177     */
2178    @PublicKey
2179    public static final Key<Integer> FLASH_MODE =
2180            new Key<Integer>("android.flash.mode", int.class);
2181
2182    /**
2183     * <p>Current state of the flash
2184     * unit.</p>
2185     * <p>When the camera device doesn't have flash unit
2186     * (i.e. <code>{@link CameraCharacteristics#FLASH_INFO_AVAILABLE android.flash.info.available} == false</code>), this state will always be UNAVAILABLE.
2187     * Other states indicate the current flash status.</p>
2188     * <p>In certain conditions, this will be available on LEGACY devices:</p>
2189     * <ul>
2190     * <li>Flash-less cameras always return UNAVAILABLE.</li>
2191     * <li>Using {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} <code>==</code> ON_ALWAYS_FLASH
2192     *    will always return FIRED.</li>
2193     * <li>Using {@link CaptureRequest#FLASH_MODE android.flash.mode} <code>==</code> TORCH
2194     *    will always return FIRED.</li>
2195     * </ul>
2196     * <p>In all other conditions the state will not be available on
2197     * LEGACY devices (i.e. it will be <code>null</code>).</p>
2198     * <p><b>Possible values:</b>
2199     * <ul>
2200     *   <li>{@link #FLASH_STATE_UNAVAILABLE UNAVAILABLE}</li>
2201     *   <li>{@link #FLASH_STATE_CHARGING CHARGING}</li>
2202     *   <li>{@link #FLASH_STATE_READY READY}</li>
2203     *   <li>{@link #FLASH_STATE_FIRED FIRED}</li>
2204     *   <li>{@link #FLASH_STATE_PARTIAL PARTIAL}</li>
2205     * </ul></p>
2206     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2207     * <p><b>Limited capability</b> -
2208     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
2209     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2210     *
2211     * @see CaptureRequest#CONTROL_AE_MODE
2212     * @see CameraCharacteristics#FLASH_INFO_AVAILABLE
2213     * @see CaptureRequest#FLASH_MODE
2214     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2215     * @see #FLASH_STATE_UNAVAILABLE
2216     * @see #FLASH_STATE_CHARGING
2217     * @see #FLASH_STATE_READY
2218     * @see #FLASH_STATE_FIRED
2219     * @see #FLASH_STATE_PARTIAL
2220     */
2221    @PublicKey
2222    public static final Key<Integer> FLASH_STATE =
2223            new Key<Integer>("android.flash.state", int.class);
2224
2225    /**
2226     * <p>Operational mode for hot pixel correction.</p>
2227     * <p>Hotpixel correction interpolates out, or otherwise removes, pixels
2228     * that do not accurately measure the incoming light (i.e. pixels that
2229     * are stuck at an arbitrary value or are oversensitive).</p>
2230     * <p><b>Possible values:</b>
2231     * <ul>
2232     *   <li>{@link #HOT_PIXEL_MODE_OFF OFF}</li>
2233     *   <li>{@link #HOT_PIXEL_MODE_FAST FAST}</li>
2234     *   <li>{@link #HOT_PIXEL_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
2235     * </ul></p>
2236     * <p><b>Available values for this device:</b><br>
2237     * {@link CameraCharacteristics#HOT_PIXEL_AVAILABLE_HOT_PIXEL_MODES android.hotPixel.availableHotPixelModes}</p>
2238     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2239     *
2240     * @see CameraCharacteristics#HOT_PIXEL_AVAILABLE_HOT_PIXEL_MODES
2241     * @see #HOT_PIXEL_MODE_OFF
2242     * @see #HOT_PIXEL_MODE_FAST
2243     * @see #HOT_PIXEL_MODE_HIGH_QUALITY
2244     */
2245    @PublicKey
2246    public static final Key<Integer> HOT_PIXEL_MODE =
2247            new Key<Integer>("android.hotPixel.mode", int.class);
2248
2249    /**
2250     * <p>A location object to use when generating image GPS metadata.</p>
2251     * <p>Setting a location object in a request will include the GPS coordinates of the location
2252     * into any JPEG images captured based on the request. These coordinates can then be
2253     * viewed by anyone who receives the JPEG image.</p>
2254     * <p>This key is available on all devices.</p>
2255     */
2256    @PublicKey
2257    @SyntheticKey
2258    public static final Key<android.location.Location> JPEG_GPS_LOCATION =
2259            new Key<android.location.Location>("android.jpeg.gpsLocation", android.location.Location.class);
2260
2261    /**
2262     * <p>GPS coordinates to include in output JPEG
2263     * EXIF.</p>
2264     * <p><b>Range of valid values:</b><br>
2265     * (-180 - 180], [-90,90], [-inf, inf]</p>
2266     * <p>This key is available on all devices.</p>
2267     * @hide
2268     */
2269    public static final Key<double[]> JPEG_GPS_COORDINATES =
2270            new Key<double[]>("android.jpeg.gpsCoordinates", double[].class);
2271
2272    /**
2273     * <p>32 characters describing GPS algorithm to
2274     * include in EXIF.</p>
2275     * <p><b>Units</b>: UTF-8 null-terminated string</p>
2276     * <p>This key is available on all devices.</p>
2277     * @hide
2278     */
2279    public static final Key<String> JPEG_GPS_PROCESSING_METHOD =
2280            new Key<String>("android.jpeg.gpsProcessingMethod", String.class);
2281
2282    /**
2283     * <p>Time GPS fix was made to include in
2284     * EXIF.</p>
2285     * <p><b>Units</b>: UTC in seconds since January 1, 1970</p>
2286     * <p>This key is available on all devices.</p>
2287     * @hide
2288     */
2289    public static final Key<Long> JPEG_GPS_TIMESTAMP =
2290            new Key<Long>("android.jpeg.gpsTimestamp", long.class);
2291
2292    /**
2293     * <p>The orientation for a JPEG image.</p>
2294     * <p>The clockwise rotation angle in degrees, relative to the orientation
2295     * to the camera, that the JPEG picture needs to be rotated by, to be viewed
2296     * upright.</p>
2297     * <p>Camera devices may either encode this value into the JPEG EXIF header, or
2298     * rotate the image data to match this orientation. When the image data is rotated,
2299     * the thumbnail data will also be rotated.</p>
2300     * <p>Note that this orientation is relative to the orientation of the camera sensor, given
2301     * by {@link CameraCharacteristics#SENSOR_ORIENTATION android.sensor.orientation}.</p>
2302     * <p>To translate from the device orientation given by the Android sensor APIs, the following
2303     * sample code may be used:</p>
2304     * <pre><code>private int getJpegOrientation(CameraCharacteristics c, int deviceOrientation) {
2305     *     if (deviceOrientation == android.view.OrientationEventListener.ORIENTATION_UNKNOWN) return 0;
2306     *     int sensorOrientation = c.get(CameraCharacteristics.SENSOR_ORIENTATION);
2307     *
2308     *     // Round device orientation to a multiple of 90
2309     *     deviceOrientation = (deviceOrientation + 45) / 90 * 90;
2310     *
2311     *     // Reverse device orientation for front-facing cameras
2312     *     boolean facingFront = c.get(CameraCharacteristics.LENS_FACING) == CameraCharacteristics.LENS_FACING_FRONT;
2313     *     if (facingFront) deviceOrientation = -deviceOrientation;
2314     *
2315     *     // Calculate desired JPEG orientation relative to camera orientation to make
2316     *     // the image upright relative to the device orientation
2317     *     int jpegOrientation = (sensorOrientation + deviceOrientation + 360) % 360;
2318     *
2319     *     return jpegOrientation;
2320     * }
2321     * </code></pre>
2322     * <p><b>Units</b>: Degrees in multiples of 90</p>
2323     * <p><b>Range of valid values:</b><br>
2324     * 0, 90, 180, 270</p>
2325     * <p>This key is available on all devices.</p>
2326     *
2327     * @see CameraCharacteristics#SENSOR_ORIENTATION
2328     */
2329    @PublicKey
2330    public static final Key<Integer> JPEG_ORIENTATION =
2331            new Key<Integer>("android.jpeg.orientation", int.class);
2332
2333    /**
2334     * <p>Compression quality of the final JPEG
2335     * image.</p>
2336     * <p>85-95 is typical usage range.</p>
2337     * <p><b>Range of valid values:</b><br>
2338     * 1-100; larger is higher quality</p>
2339     * <p>This key is available on all devices.</p>
2340     */
2341    @PublicKey
2342    public static final Key<Byte> JPEG_QUALITY =
2343            new Key<Byte>("android.jpeg.quality", byte.class);
2344
2345    /**
2346     * <p>Compression quality of JPEG
2347     * thumbnail.</p>
2348     * <p><b>Range of valid values:</b><br>
2349     * 1-100; larger is higher quality</p>
2350     * <p>This key is available on all devices.</p>
2351     */
2352    @PublicKey
2353    public static final Key<Byte> JPEG_THUMBNAIL_QUALITY =
2354            new Key<Byte>("android.jpeg.thumbnailQuality", byte.class);
2355
2356    /**
2357     * <p>Resolution of embedded JPEG thumbnail.</p>
2358     * <p>When set to (0, 0) value, the JPEG EXIF will not contain thumbnail,
2359     * but the captured JPEG will still be a valid image.</p>
2360     * <p>For best results, when issuing a request for a JPEG image, the thumbnail size selected
2361     * should have the same aspect ratio as the main JPEG output.</p>
2362     * <p>If the thumbnail image aspect ratio differs from the JPEG primary image aspect
2363     * ratio, the camera device creates the thumbnail by cropping it from the primary image.
2364     * For example, if the primary image has 4:3 aspect ratio, the thumbnail image has
2365     * 16:9 aspect ratio, the primary image will be cropped vertically (letterbox) to
2366     * generate the thumbnail image. The thumbnail image will always have a smaller Field
2367     * Of View (FOV) than the primary image when aspect ratios differ.</p>
2368     * <p>When an {@link CaptureRequest#JPEG_ORIENTATION android.jpeg.orientation} of non-zero degree is requested,
2369     * the camera device will handle thumbnail rotation in one of the following ways:</p>
2370     * <ul>
2371     * <li>Set the {@link android.media.ExifInterface#TAG_ORIENTATION EXIF orientation flag}
2372     *   and keep jpeg and thumbnail image data unrotated.</li>
2373     * <li>Rotate the jpeg and thumbnail image data and not set
2374     *   {@link android.media.ExifInterface#TAG_ORIENTATION EXIF orientation flag}. In this
2375     *   case, LIMITED or FULL hardware level devices will report rotated thumnail size in
2376     *   capture result, so the width and height will be interchanged if 90 or 270 degree
2377     *   orientation is requested. LEGACY device will always report unrotated thumbnail
2378     *   size.</li>
2379     * </ul>
2380     * <p><b>Range of valid values:</b><br>
2381     * {@link CameraCharacteristics#JPEG_AVAILABLE_THUMBNAIL_SIZES android.jpeg.availableThumbnailSizes}</p>
2382     * <p>This key is available on all devices.</p>
2383     *
2384     * @see CameraCharacteristics#JPEG_AVAILABLE_THUMBNAIL_SIZES
2385     * @see CaptureRequest#JPEG_ORIENTATION
2386     */
2387    @PublicKey
2388    public static final Key<android.util.Size> JPEG_THUMBNAIL_SIZE =
2389            new Key<android.util.Size>("android.jpeg.thumbnailSize", android.util.Size.class);
2390
2391    /**
2392     * <p>The desired lens aperture size, as a ratio of lens focal length to the
2393     * effective aperture diameter.</p>
2394     * <p>Setting this value is only supported on the camera devices that have a variable
2395     * aperture lens.</p>
2396     * <p>When this is supported and {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is OFF,
2397     * this can be set along with {@link CaptureRequest#SENSOR_EXPOSURE_TIME android.sensor.exposureTime},
2398     * {@link CaptureRequest#SENSOR_SENSITIVITY android.sensor.sensitivity}, and {@link CaptureRequest#SENSOR_FRAME_DURATION android.sensor.frameDuration}
2399     * to achieve manual exposure control.</p>
2400     * <p>The requested aperture value may take several frames to reach the
2401     * requested value; the camera device will report the current (intermediate)
2402     * aperture size in capture result metadata while the aperture is changing.
2403     * While the aperture is still changing, {@link CaptureResult#LENS_STATE android.lens.state} will be set to MOVING.</p>
2404     * <p>When this is supported and {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is one of
2405     * the ON modes, this will be overridden by the camera device
2406     * auto-exposure algorithm, the overridden values are then provided
2407     * back to the user in the corresponding result.</p>
2408     * <p><b>Units</b>: The f-number (f/N)</p>
2409     * <p><b>Range of valid values:</b><br>
2410     * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_APERTURES android.lens.info.availableApertures}</p>
2411     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2412     * <p><b>Full capability</b> -
2413     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2414     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2415     *
2416     * @see CaptureRequest#CONTROL_AE_MODE
2417     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2418     * @see CameraCharacteristics#LENS_INFO_AVAILABLE_APERTURES
2419     * @see CaptureResult#LENS_STATE
2420     * @see CaptureRequest#SENSOR_EXPOSURE_TIME
2421     * @see CaptureRequest#SENSOR_FRAME_DURATION
2422     * @see CaptureRequest#SENSOR_SENSITIVITY
2423     */
2424    @PublicKey
2425    public static final Key<Float> LENS_APERTURE =
2426            new Key<Float>("android.lens.aperture", float.class);
2427
2428    /**
2429     * <p>The desired setting for the lens neutral density filter(s).</p>
2430     * <p>This control will not be supported on most camera devices.</p>
2431     * <p>Lens filters are typically used to lower the amount of light the
2432     * sensor is exposed to (measured in steps of EV). As used here, an EV
2433     * step is the standard logarithmic representation, which are
2434     * non-negative, and inversely proportional to the amount of light
2435     * hitting the sensor.  For example, setting this to 0 would result
2436     * in no reduction of the incoming light, and setting this to 2 would
2437     * mean that the filter is set to reduce incoming light by two stops
2438     * (allowing 1/4 of the prior amount of light to the sensor).</p>
2439     * <p>It may take several frames before the lens filter density changes
2440     * to the requested value. While the filter density is still changing,
2441     * {@link CaptureResult#LENS_STATE android.lens.state} will be set to MOVING.</p>
2442     * <p><b>Units</b>: Exposure Value (EV)</p>
2443     * <p><b>Range of valid values:</b><br>
2444     * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_FILTER_DENSITIES android.lens.info.availableFilterDensities}</p>
2445     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2446     * <p><b>Full capability</b> -
2447     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2448     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2449     *
2450     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2451     * @see CameraCharacteristics#LENS_INFO_AVAILABLE_FILTER_DENSITIES
2452     * @see CaptureResult#LENS_STATE
2453     */
2454    @PublicKey
2455    public static final Key<Float> LENS_FILTER_DENSITY =
2456            new Key<Float>("android.lens.filterDensity", float.class);
2457
2458    /**
2459     * <p>The desired lens focal length; used for optical zoom.</p>
2460     * <p>This setting controls the physical focal length of the camera
2461     * device's lens. Changing the focal length changes the field of
2462     * view of the camera device, and is usually used for optical zoom.</p>
2463     * <p>Like {@link CaptureRequest#LENS_FOCUS_DISTANCE android.lens.focusDistance} and {@link CaptureRequest#LENS_APERTURE android.lens.aperture}, this
2464     * setting won't be applied instantaneously, and it may take several
2465     * frames before the lens can change to the requested focal length.
2466     * While the focal length is still changing, {@link CaptureResult#LENS_STATE android.lens.state} will
2467     * be set to MOVING.</p>
2468     * <p>Optical zoom will not be supported on most devices.</p>
2469     * <p><b>Units</b>: Millimeters</p>
2470     * <p><b>Range of valid values:</b><br>
2471     * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_FOCAL_LENGTHS android.lens.info.availableFocalLengths}</p>
2472     * <p>This key is available on all devices.</p>
2473     *
2474     * @see CaptureRequest#LENS_APERTURE
2475     * @see CaptureRequest#LENS_FOCUS_DISTANCE
2476     * @see CameraCharacteristics#LENS_INFO_AVAILABLE_FOCAL_LENGTHS
2477     * @see CaptureResult#LENS_STATE
2478     */
2479    @PublicKey
2480    public static final Key<Float> LENS_FOCAL_LENGTH =
2481            new Key<Float>("android.lens.focalLength", float.class);
2482
2483    /**
2484     * <p>Desired distance to plane of sharpest focus,
2485     * measured from frontmost surface of the lens.</p>
2486     * <p>Should be zero for fixed-focus cameras</p>
2487     * <p><b>Units</b>: See {@link CameraCharacteristics#LENS_INFO_FOCUS_DISTANCE_CALIBRATION android.lens.info.focusDistanceCalibration} for details</p>
2488     * <p><b>Range of valid values:</b><br>
2489     * &gt;= 0</p>
2490     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2491     * <p><b>Full capability</b> -
2492     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2493     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2494     *
2495     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2496     * @see CameraCharacteristics#LENS_INFO_FOCUS_DISTANCE_CALIBRATION
2497     */
2498    @PublicKey
2499    public static final Key<Float> LENS_FOCUS_DISTANCE =
2500            new Key<Float>("android.lens.focusDistance", float.class);
2501
2502    /**
2503     * <p>The range of scene distances that are in
2504     * sharp focus (depth of field).</p>
2505     * <p>If variable focus not supported, can still report
2506     * fixed depth of field range</p>
2507     * <p><b>Units</b>: A pair of focus distances in diopters: (near,
2508     * far); see {@link CameraCharacteristics#LENS_INFO_FOCUS_DISTANCE_CALIBRATION android.lens.info.focusDistanceCalibration} for details.</p>
2509     * <p><b>Range of valid values:</b><br>
2510     * &gt;=0</p>
2511     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2512     * <p><b>Limited capability</b> -
2513     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
2514     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2515     *
2516     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2517     * @see CameraCharacteristics#LENS_INFO_FOCUS_DISTANCE_CALIBRATION
2518     */
2519    @PublicKey
2520    public static final Key<android.util.Pair<Float,Float>> LENS_FOCUS_RANGE =
2521            new Key<android.util.Pair<Float,Float>>("android.lens.focusRange", new TypeReference<android.util.Pair<Float,Float>>() {{ }});
2522
2523    /**
2524     * <p>Sets whether the camera device uses optical image stabilization (OIS)
2525     * when capturing images.</p>
2526     * <p>OIS is used to compensate for motion blur due to small
2527     * movements of the camera during capture. Unlike digital image
2528     * stabilization ({@link CaptureRequest#CONTROL_VIDEO_STABILIZATION_MODE android.control.videoStabilizationMode}), OIS
2529     * makes use of mechanical elements to stabilize the camera
2530     * sensor, and thus allows for longer exposure times before
2531     * camera shake becomes apparent.</p>
2532     * <p>Switching between different optical stabilization modes may take several
2533     * frames to initialize, the camera device will report the current mode in
2534     * capture result metadata. For example, When "ON" mode is requested, the
2535     * optical stabilization modes in the first several capture results may still
2536     * be "OFF", and it will become "ON" when the initialization is done.</p>
2537     * <p>If a camera device supports both OIS and digital image stabilization
2538     * ({@link CaptureRequest#CONTROL_VIDEO_STABILIZATION_MODE android.control.videoStabilizationMode}), turning both modes on may produce undesirable
2539     * interaction, so it is recommended not to enable both at the same time.</p>
2540     * <p>Not all devices will support OIS; see
2541     * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_OPTICAL_STABILIZATION android.lens.info.availableOpticalStabilization} for
2542     * available controls.</p>
2543     * <p><b>Possible values:</b>
2544     * <ul>
2545     *   <li>{@link #LENS_OPTICAL_STABILIZATION_MODE_OFF OFF}</li>
2546     *   <li>{@link #LENS_OPTICAL_STABILIZATION_MODE_ON ON}</li>
2547     * </ul></p>
2548     * <p><b>Available values for this device:</b><br>
2549     * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_OPTICAL_STABILIZATION android.lens.info.availableOpticalStabilization}</p>
2550     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2551     * <p><b>Limited capability</b> -
2552     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
2553     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2554     *
2555     * @see CaptureRequest#CONTROL_VIDEO_STABILIZATION_MODE
2556     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2557     * @see CameraCharacteristics#LENS_INFO_AVAILABLE_OPTICAL_STABILIZATION
2558     * @see #LENS_OPTICAL_STABILIZATION_MODE_OFF
2559     * @see #LENS_OPTICAL_STABILIZATION_MODE_ON
2560     */
2561    @PublicKey
2562    public static final Key<Integer> LENS_OPTICAL_STABILIZATION_MODE =
2563            new Key<Integer>("android.lens.opticalStabilizationMode", int.class);
2564
2565    /**
2566     * <p>Current lens status.</p>
2567     * <p>For lens parameters {@link CaptureRequest#LENS_FOCAL_LENGTH android.lens.focalLength}, {@link CaptureRequest#LENS_FOCUS_DISTANCE android.lens.focusDistance},
2568     * {@link CaptureRequest#LENS_FILTER_DENSITY android.lens.filterDensity} and {@link CaptureRequest#LENS_APERTURE android.lens.aperture}, when changes are requested,
2569     * they may take several frames to reach the requested values. This state indicates
2570     * the current status of the lens parameters.</p>
2571     * <p>When the state is STATIONARY, the lens parameters are not changing. This could be
2572     * either because the parameters are all fixed, or because the lens has had enough
2573     * time to reach the most recently-requested values.
2574     * If all these lens parameters are not changable for a camera device, as listed below:</p>
2575     * <ul>
2576     * <li>Fixed focus (<code>{@link CameraCharacteristics#LENS_INFO_MINIMUM_FOCUS_DISTANCE android.lens.info.minimumFocusDistance} == 0</code>), which means
2577     * {@link CaptureRequest#LENS_FOCUS_DISTANCE android.lens.focusDistance} parameter will always be 0.</li>
2578     * <li>Fixed focal length ({@link CameraCharacteristics#LENS_INFO_AVAILABLE_FOCAL_LENGTHS android.lens.info.availableFocalLengths} contains single value),
2579     * which means the optical zoom is not supported.</li>
2580     * <li>No ND filter ({@link CameraCharacteristics#LENS_INFO_AVAILABLE_FILTER_DENSITIES android.lens.info.availableFilterDensities} contains only 0).</li>
2581     * <li>Fixed aperture ({@link CameraCharacteristics#LENS_INFO_AVAILABLE_APERTURES android.lens.info.availableApertures} contains single value).</li>
2582     * </ul>
2583     * <p>Then this state will always be STATIONARY.</p>
2584     * <p>When the state is MOVING, it indicates that at least one of the lens parameters
2585     * is changing.</p>
2586     * <p><b>Possible values:</b>
2587     * <ul>
2588     *   <li>{@link #LENS_STATE_STATIONARY STATIONARY}</li>
2589     *   <li>{@link #LENS_STATE_MOVING MOVING}</li>
2590     * </ul></p>
2591     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2592     * <p><b>Limited capability</b> -
2593     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
2594     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2595     *
2596     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2597     * @see CaptureRequest#LENS_APERTURE
2598     * @see CaptureRequest#LENS_FILTER_DENSITY
2599     * @see CaptureRequest#LENS_FOCAL_LENGTH
2600     * @see CaptureRequest#LENS_FOCUS_DISTANCE
2601     * @see CameraCharacteristics#LENS_INFO_AVAILABLE_APERTURES
2602     * @see CameraCharacteristics#LENS_INFO_AVAILABLE_FILTER_DENSITIES
2603     * @see CameraCharacteristics#LENS_INFO_AVAILABLE_FOCAL_LENGTHS
2604     * @see CameraCharacteristics#LENS_INFO_MINIMUM_FOCUS_DISTANCE
2605     * @see #LENS_STATE_STATIONARY
2606     * @see #LENS_STATE_MOVING
2607     */
2608    @PublicKey
2609    public static final Key<Integer> LENS_STATE =
2610            new Key<Integer>("android.lens.state", int.class);
2611
2612    /**
2613     * <p>The orientation of the camera relative to the sensor
2614     * coordinate system.</p>
2615     * <p>The four coefficients that describe the quaternion
2616     * rotation from the Android sensor coordinate system to a
2617     * camera-aligned coordinate system where the X-axis is
2618     * aligned with the long side of the image sensor, the Y-axis
2619     * is aligned with the short side of the image sensor, and
2620     * the Z-axis is aligned with the optical axis of the sensor.</p>
2621     * <p>To convert from the quaternion coefficients <code>(x,y,z,w)</code>
2622     * to the axis of rotation <code>(a_x, a_y, a_z)</code> and rotation
2623     * amount <code>theta</code>, the following formulas can be used:</p>
2624     * <pre><code> theta = 2 * acos(w)
2625     * a_x = x / sin(theta/2)
2626     * a_y = y / sin(theta/2)
2627     * a_z = z / sin(theta/2)
2628     * </code></pre>
2629     * <p>To create a 3x3 rotation matrix that applies the rotation
2630     * defined by this quaternion, the following matrix can be
2631     * used:</p>
2632     * <pre><code>R = [ 1 - 2y^2 - 2z^2,       2xy - 2zw,       2xz + 2yw,
2633     *            2xy + 2zw, 1 - 2x^2 - 2z^2,       2yz - 2xw,
2634     *            2xz - 2yw,       2yz + 2xw, 1 - 2x^2 - 2y^2 ]
2635     * </code></pre>
2636     * <p>This matrix can then be used to apply the rotation to a
2637     *  column vector point with</p>
2638     * <p><code>p' = Rp</code></p>
2639     * <p>where <code>p</code> is in the device sensor coordinate system, and
2640     *  <code>p'</code> is in the camera-oriented coordinate system.</p>
2641     * <p><b>Units</b>:
2642     * Quaternion coefficients</p>
2643     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2644     */
2645    @PublicKey
2646    public static final Key<float[]> LENS_POSE_ROTATION =
2647            new Key<float[]>("android.lens.poseRotation", float[].class);
2648
2649    /**
2650     * <p>Position of the camera optical center.</p>
2651     * <p>The position of the camera device's lens optical center,
2652     * as a three-dimensional vector <code>(x,y,z)</code>, relative to the
2653     * optical center of the largest camera device facing in the
2654     * same direction as this camera, in the {@link android.hardware.SensorEvent Android sensor coordinate
2655     * axes}. Note that only the axis definitions are shared with
2656     * the sensor coordinate system, but not the origin.</p>
2657     * <p>If this device is the largest or only camera device with a
2658     * given facing, then this position will be <code>(0, 0, 0)</code>; a
2659     * camera device with a lens optical center located 3 cm from
2660     * the main sensor along the +X axis (to the right from the
2661     * user's perspective) will report <code>(0.03, 0, 0)</code>.</p>
2662     * <p>To transform a pixel coordinates between two cameras
2663     * facing the same direction, first the source camera
2664     * {@link CameraCharacteristics#LENS_RADIAL_DISTORTION android.lens.radialDistortion} must be corrected for.  Then
2665     * the source camera {@link CameraCharacteristics#LENS_INTRINSIC_CALIBRATION android.lens.intrinsicCalibration} needs
2666     * to be applied, followed by the {@link CameraCharacteristics#LENS_POSE_ROTATION android.lens.poseRotation}
2667     * of the source camera, the translation of the source camera
2668     * relative to the destination camera, the
2669     * {@link CameraCharacteristics#LENS_POSE_ROTATION android.lens.poseRotation} of the destination camera, and
2670     * finally the inverse of {@link CameraCharacteristics#LENS_INTRINSIC_CALIBRATION android.lens.intrinsicCalibration}
2671     * of the destination camera. This obtains a
2672     * radial-distortion-free coordinate in the destination
2673     * camera pixel coordinates.</p>
2674     * <p>To compare this against a real image from the destination
2675     * camera, the destination camera image then needs to be
2676     * corrected for radial distortion before comparison or
2677     * sampling.</p>
2678     * <p><b>Units</b>: Meters</p>
2679     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2680     *
2681     * @see CameraCharacteristics#LENS_INTRINSIC_CALIBRATION
2682     * @see CameraCharacteristics#LENS_POSE_ROTATION
2683     * @see CameraCharacteristics#LENS_RADIAL_DISTORTION
2684     */
2685    @PublicKey
2686    public static final Key<float[]> LENS_POSE_TRANSLATION =
2687            new Key<float[]>("android.lens.poseTranslation", float[].class);
2688
2689    /**
2690     * <p>The parameters for this camera device's intrinsic
2691     * calibration.</p>
2692     * <p>The five calibration parameters that describe the
2693     * transform from camera-centric 3D coordinates to sensor
2694     * pixel coordinates:</p>
2695     * <pre><code>[f_x, f_y, c_x, c_y, s]
2696     * </code></pre>
2697     * <p>Where <code>f_x</code> and <code>f_y</code> are the horizontal and vertical
2698     * focal lengths, <code>[c_x, c_y]</code> is the position of the optical
2699     * axis, and <code>s</code> is a skew parameter for the sensor plane not
2700     * being aligned with the lens plane.</p>
2701     * <p>These are typically used within a transformation matrix K:</p>
2702     * <pre><code>K = [ f_x,   s, c_x,
2703     *        0, f_y, c_y,
2704     *        0    0,   1 ]
2705     * </code></pre>
2706     * <p>which can then be combined with the camera pose rotation
2707     * <code>R</code> and translation <code>t</code> ({@link CameraCharacteristics#LENS_POSE_ROTATION android.lens.poseRotation} and
2708     * {@link CameraCharacteristics#LENS_POSE_TRANSLATION android.lens.poseTranslation}, respective) to calculate the
2709     * complete transform from world coordinates to pixel
2710     * coordinates:</p>
2711     * <pre><code>P = [ K 0   * [ R t
2712     *      0 1 ]     0 1 ]
2713     * </code></pre>
2714     * <p>and with <code>p_w</code> being a point in the world coordinate system
2715     * and <code>p_s</code> being a point in the camera active pixel array
2716     * coordinate system, and with the mapping including the
2717     * homogeneous division by z:</p>
2718     * <pre><code> p_h = (x_h, y_h, z_h) = P p_w
2719     * p_s = p_h / z_h
2720     * </code></pre>
2721     * <p>so <code>[x_s, y_s]</code> is the pixel coordinates of the world
2722     * point, <code>z_s = 1</code>, and <code>w_s</code> is a measurement of disparity
2723     * (depth) in pixel coordinates.</p>
2724     * <p>Note that the coordinate system for this transform is the
2725     * {@link CameraCharacteristics#SENSOR_INFO_PRE_CORRECTION_ACTIVE_ARRAY_SIZE android.sensor.info.preCorrectionActiveArraySize} system,
2726     * where <code>(0,0)</code> is the top-left of the
2727     * preCorrectionActiveArraySize rectangle. Once the pose and
2728     * intrinsic calibration transforms have been applied to a
2729     * world point, then the {@link CameraCharacteristics#LENS_RADIAL_DISTORTION android.lens.radialDistortion}
2730     * transform needs to be applied, and the result adjusted to
2731     * be in the {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize} coordinate
2732     * system (where <code>(0, 0)</code> is the top-left of the
2733     * activeArraySize rectangle), to determine the final pixel
2734     * coordinate of the world point for processed (non-RAW)
2735     * output buffers.</p>
2736     * <p><b>Units</b>:
2737     * Pixels in the
2738     * {@link CameraCharacteristics#SENSOR_INFO_PRE_CORRECTION_ACTIVE_ARRAY_SIZE android.sensor.info.preCorrectionActiveArraySize}
2739     * coordinate system.</p>
2740     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2741     *
2742     * @see CameraCharacteristics#LENS_POSE_ROTATION
2743     * @see CameraCharacteristics#LENS_POSE_TRANSLATION
2744     * @see CameraCharacteristics#LENS_RADIAL_DISTORTION
2745     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
2746     * @see CameraCharacteristics#SENSOR_INFO_PRE_CORRECTION_ACTIVE_ARRAY_SIZE
2747     */
2748    @PublicKey
2749    public static final Key<float[]> LENS_INTRINSIC_CALIBRATION =
2750            new Key<float[]>("android.lens.intrinsicCalibration", float[].class);
2751
2752    /**
2753     * <p>The correction coefficients to correct for this camera device's
2754     * radial and tangential lens distortion.</p>
2755     * <p>Four radial distortion coefficients <code>[kappa_0, kappa_1, kappa_2,
2756     * kappa_3]</code> and two tangential distortion coefficients
2757     * <code>[kappa_4, kappa_5]</code> that can be used to correct the
2758     * lens's geometric distortion with the mapping equations:</p>
2759     * <pre><code> x_c = x_i * ( kappa_0 + kappa_1 * r^2 + kappa_2 * r^4 + kappa_3 * r^6 ) +
2760     *        kappa_4 * (2 * x_i * y_i) + kappa_5 * ( r^2 + 2 * x_i^2 )
2761     *  y_c = y_i * ( kappa_0 + kappa_1 * r^2 + kappa_2 * r^4 + kappa_3 * r^6 ) +
2762     *        kappa_5 * (2 * x_i * y_i) + kappa_4 * ( r^2 + 2 * y_i^2 )
2763     * </code></pre>
2764     * <p>Here, <code>[x_c, y_c]</code> are the coordinates to sample in the
2765     * input image that correspond to the pixel values in the
2766     * corrected image at the coordinate <code>[x_i, y_i]</code>:</p>
2767     * <pre><code> correctedImage(x_i, y_i) = sample_at(x_c, y_c, inputImage)
2768     * </code></pre>
2769     * <p>The pixel coordinates are defined in a normalized
2770     * coordinate system related to the
2771     * {@link CameraCharacteristics#LENS_INTRINSIC_CALIBRATION android.lens.intrinsicCalibration} calibration fields.
2772     * Both <code>[x_i, y_i]</code> and <code>[x_c, y_c]</code> have <code>(0,0)</code> at the
2773     * lens optical center <code>[c_x, c_y]</code>. The maximum magnitudes
2774     * of both x and y coordinates are normalized to be 1 at the
2775     * edge further from the optical center, so the range
2776     * for both dimensions is <code>-1 &lt;= x &lt;= 1</code>.</p>
2777     * <p>Finally, <code>r</code> represents the radial distance from the
2778     * optical center, <code>r^2 = x_i^2 + y_i^2</code>, and its magnitude
2779     * is therefore no larger than <code>|r| &lt;= sqrt(2)</code>.</p>
2780     * <p>The distortion model used is the Brown-Conrady model.</p>
2781     * <p><b>Units</b>:
2782     * Unitless coefficients.</p>
2783     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2784     *
2785     * @see CameraCharacteristics#LENS_INTRINSIC_CALIBRATION
2786     */
2787    @PublicKey
2788    public static final Key<float[]> LENS_RADIAL_DISTORTION =
2789            new Key<float[]>("android.lens.radialDistortion", float[].class);
2790
2791    /**
2792     * <p>Mode of operation for the noise reduction algorithm.</p>
2793     * <p>The noise reduction algorithm attempts to improve image quality by removing
2794     * excessive noise added by the capture process, especially in dark conditions.</p>
2795     * <p>OFF means no noise reduction will be applied by the camera device, for both raw and
2796     * YUV domain.</p>
2797     * <p>MINIMAL means that only sensor raw domain basic noise reduction is enabled ,to remove
2798     * demosaicing or other processing artifacts. For YUV_REPROCESSING, MINIMAL is same as OFF.
2799     * This mode is optional, may not be support by all devices. The application should check
2800     * {@link CameraCharacteristics#NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES android.noiseReduction.availableNoiseReductionModes} before using it.</p>
2801     * <p>FAST/HIGH_QUALITY both mean camera device determined noise filtering
2802     * will be applied. HIGH_QUALITY mode indicates that the camera device
2803     * will use the highest-quality noise filtering algorithms,
2804     * even if it slows down capture rate. FAST means the camera device will not
2805     * slow down capture rate when applying noise filtering. FAST may be the same as MINIMAL if
2806     * MINIMAL is listed, or the same as OFF if any noise filtering will slow down capture rate.
2807     * Every output stream will have a similar amount of enhancement applied.</p>
2808     * <p>ZERO_SHUTTER_LAG is meant to be used by applications that maintain a continuous circular
2809     * buffer of high-resolution images during preview and reprocess image(s) from that buffer
2810     * into a final capture when triggered by the user. In this mode, the camera device applies
2811     * noise reduction to low-resolution streams (below maximum recording resolution) to maximize
2812     * preview quality, but does not apply noise reduction to high-resolution streams, since
2813     * those will be reprocessed later if necessary.</p>
2814     * <p>For YUV_REPROCESSING, these FAST/HIGH_QUALITY modes both mean that the camera device
2815     * will apply FAST/HIGH_QUALITY YUV domain noise reduction, respectively. The camera device
2816     * may adjust the noise reduction parameters for best image quality based on the
2817     * {@link CaptureRequest#REPROCESS_EFFECTIVE_EXPOSURE_FACTOR android.reprocess.effectiveExposureFactor} if it is set.</p>
2818     * <p><b>Possible values:</b>
2819     * <ul>
2820     *   <li>{@link #NOISE_REDUCTION_MODE_OFF OFF}</li>
2821     *   <li>{@link #NOISE_REDUCTION_MODE_FAST FAST}</li>
2822     *   <li>{@link #NOISE_REDUCTION_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
2823     *   <li>{@link #NOISE_REDUCTION_MODE_MINIMAL MINIMAL}</li>
2824     *   <li>{@link #NOISE_REDUCTION_MODE_ZERO_SHUTTER_LAG ZERO_SHUTTER_LAG}</li>
2825     * </ul></p>
2826     * <p><b>Available values for this device:</b><br>
2827     * {@link CameraCharacteristics#NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES android.noiseReduction.availableNoiseReductionModes}</p>
2828     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2829     * <p><b>Full capability</b> -
2830     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2831     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2832     *
2833     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2834     * @see CameraCharacteristics#NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES
2835     * @see CaptureRequest#REPROCESS_EFFECTIVE_EXPOSURE_FACTOR
2836     * @see #NOISE_REDUCTION_MODE_OFF
2837     * @see #NOISE_REDUCTION_MODE_FAST
2838     * @see #NOISE_REDUCTION_MODE_HIGH_QUALITY
2839     * @see #NOISE_REDUCTION_MODE_MINIMAL
2840     * @see #NOISE_REDUCTION_MODE_ZERO_SHUTTER_LAG
2841     */
2842    @PublicKey
2843    public static final Key<Integer> NOISE_REDUCTION_MODE =
2844            new Key<Integer>("android.noiseReduction.mode", int.class);
2845
2846    /**
2847     * <p>Whether a result given to the framework is the
2848     * final one for the capture, or only a partial that contains a
2849     * subset of the full set of dynamic metadata
2850     * values.</p>
2851     * <p>The entries in the result metadata buffers for a
2852     * single capture may not overlap, except for this entry. The
2853     * FINAL buffers must retain FIFO ordering relative to the
2854     * requests that generate them, so the FINAL buffer for frame 3 must
2855     * always be sent to the framework after the FINAL buffer for frame 2, and
2856     * before the FINAL buffer for frame 4. PARTIAL buffers may be returned
2857     * in any order relative to other frames, but all PARTIAL buffers for a given
2858     * capture must arrive before the FINAL buffer for that capture. This entry may
2859     * only be used by the camera device if quirks.usePartialResult is set to 1.</p>
2860     * <p><b>Range of valid values:</b><br>
2861     * Optional. Default value is FINAL.</p>
2862     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2863     * @deprecated
2864     * @hide
2865     */
2866    @Deprecated
2867    public static final Key<Boolean> QUIRKS_PARTIAL_RESULT =
2868            new Key<Boolean>("android.quirks.partialResult", boolean.class);
2869
2870    /**
2871     * <p>A frame counter set by the framework. This value monotonically
2872     * increases with every new result (that is, each new result has a unique
2873     * frameCount value).</p>
2874     * <p>Reset on release()</p>
2875     * <p><b>Units</b>: count of frames</p>
2876     * <p><b>Range of valid values:</b><br>
2877     * &gt; 0</p>
2878     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2879     * @deprecated
2880     * @hide
2881     */
2882    @Deprecated
2883    public static final Key<Integer> REQUEST_FRAME_COUNT =
2884            new Key<Integer>("android.request.frameCount", int.class);
2885
2886    /**
2887     * <p>An application-specified ID for the current
2888     * request. Must be maintained unchanged in output
2889     * frame</p>
2890     * <p><b>Units</b>: arbitrary integer assigned by application</p>
2891     * <p><b>Range of valid values:</b><br>
2892     * Any int</p>
2893     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2894     * @hide
2895     */
2896    public static final Key<Integer> REQUEST_ID =
2897            new Key<Integer>("android.request.id", int.class);
2898
2899    /**
2900     * <p>Specifies the number of pipeline stages the frame went
2901     * through from when it was exposed to when the final completed result
2902     * was available to the framework.</p>
2903     * <p>Depending on what settings are used in the request, and
2904     * what streams are configured, the data may undergo less processing,
2905     * and some pipeline stages skipped.</p>
2906     * <p>See {@link CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH android.request.pipelineMaxDepth} for more details.</p>
2907     * <p><b>Range of valid values:</b><br>
2908     * &lt;= {@link CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH android.request.pipelineMaxDepth}</p>
2909     * <p>This key is available on all devices.</p>
2910     *
2911     * @see CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH
2912     */
2913    @PublicKey
2914    public static final Key<Byte> REQUEST_PIPELINE_DEPTH =
2915            new Key<Byte>("android.request.pipelineDepth", byte.class);
2916
2917    /**
2918     * <p>The desired region of the sensor to read out for this capture.</p>
2919     * <p>This control can be used to implement digital zoom.</p>
2920     * <p>The crop region coordinate system is based off
2921     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}, with <code>(0, 0)</code> being the
2922     * top-left corner of the sensor active array.</p>
2923     * <p>Output streams use this rectangle to produce their output,
2924     * cropping to a smaller region if necessary to maintain the
2925     * stream's aspect ratio, then scaling the sensor input to
2926     * match the output's configured resolution.</p>
2927     * <p>The crop region is applied after the RAW to other color
2928     * space (e.g. YUV) conversion. Since raw streams
2929     * (e.g. RAW16) don't have the conversion stage, they are not
2930     * croppable. The crop region will be ignored by raw streams.</p>
2931     * <p>For non-raw streams, any additional per-stream cropping will
2932     * be done to maximize the final pixel area of the stream.</p>
2933     * <p>For example, if the crop region is set to a 4:3 aspect
2934     * ratio, then 4:3 streams will use the exact crop
2935     * region. 16:9 streams will further crop vertically
2936     * (letterbox).</p>
2937     * <p>Conversely, if the crop region is set to a 16:9, then 4:3
2938     * outputs will crop horizontally (pillarbox), and 16:9
2939     * streams will match exactly. These additional crops will
2940     * be centered within the crop region.</p>
2941     * <p>The width and height of the crop region cannot
2942     * be set to be smaller than
2943     * <code>floor( activeArraySize.width / {@link CameraCharacteristics#SCALER_AVAILABLE_MAX_DIGITAL_ZOOM android.scaler.availableMaxDigitalZoom} )</code> and
2944     * <code>floor( activeArraySize.height / {@link CameraCharacteristics#SCALER_AVAILABLE_MAX_DIGITAL_ZOOM android.scaler.availableMaxDigitalZoom} )</code>, respectively.</p>
2945     * <p>The camera device may adjust the crop region to account
2946     * for rounding and other hardware requirements; the final
2947     * crop region used will be included in the output capture
2948     * result.</p>
2949     * <p><b>Units</b>: Pixel coordinates relative to
2950     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
2951     * <p>This key is available on all devices.</p>
2952     *
2953     * @see CameraCharacteristics#SCALER_AVAILABLE_MAX_DIGITAL_ZOOM
2954     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
2955     */
2956    @PublicKey
2957    public static final Key<android.graphics.Rect> SCALER_CROP_REGION =
2958            new Key<android.graphics.Rect>("android.scaler.cropRegion", android.graphics.Rect.class);
2959
2960    /**
2961     * <p>Duration each pixel is exposed to
2962     * light.</p>
2963     * <p>If the sensor can't expose this exact duration, it will shorten the
2964     * duration exposed to the nearest possible value (rather than expose longer).
2965     * The final exposure time used will be available in the output capture result.</p>
2966     * <p>This control is only effective if {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} or {@link CaptureRequest#CONTROL_MODE android.control.mode} is set to
2967     * OFF; otherwise the auto-exposure algorithm will override this value.</p>
2968     * <p><b>Units</b>: Nanoseconds</p>
2969     * <p><b>Range of valid values:</b><br>
2970     * {@link CameraCharacteristics#SENSOR_INFO_EXPOSURE_TIME_RANGE android.sensor.info.exposureTimeRange}</p>
2971     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2972     * <p><b>Full capability</b> -
2973     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2974     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2975     *
2976     * @see CaptureRequest#CONTROL_AE_MODE
2977     * @see CaptureRequest#CONTROL_MODE
2978     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
2979     * @see CameraCharacteristics#SENSOR_INFO_EXPOSURE_TIME_RANGE
2980     */
2981    @PublicKey
2982    public static final Key<Long> SENSOR_EXPOSURE_TIME =
2983            new Key<Long>("android.sensor.exposureTime", long.class);
2984
2985    /**
2986     * <p>Duration from start of frame exposure to
2987     * start of next frame exposure.</p>
2988     * <p>The maximum frame rate that can be supported by a camera subsystem is
2989     * a function of many factors:</p>
2990     * <ul>
2991     * <li>Requested resolutions of output image streams</li>
2992     * <li>Availability of binning / skipping modes on the imager</li>
2993     * <li>The bandwidth of the imager interface</li>
2994     * <li>The bandwidth of the various ISP processing blocks</li>
2995     * </ul>
2996     * <p>Since these factors can vary greatly between different ISPs and
2997     * sensors, the camera abstraction tries to represent the bandwidth
2998     * restrictions with as simple a model as possible.</p>
2999     * <p>The model presented has the following characteristics:</p>
3000     * <ul>
3001     * <li>The image sensor is always configured to output the smallest
3002     * resolution possible given the application's requested output stream
3003     * sizes.  The smallest resolution is defined as being at least as large
3004     * as the largest requested output stream size; the camera pipeline must
3005     * never digitally upsample sensor data when the crop region covers the
3006     * whole sensor. In general, this means that if only small output stream
3007     * resolutions are configured, the sensor can provide a higher frame
3008     * rate.</li>
3009     * <li>Since any request may use any or all the currently configured
3010     * output streams, the sensor and ISP must be configured to support
3011     * scaling a single capture to all the streams at the same time.  This
3012     * means the camera pipeline must be ready to produce the largest
3013     * requested output size without any delay.  Therefore, the overall
3014     * frame rate of a given configured stream set is governed only by the
3015     * largest requested stream resolution.</li>
3016     * <li>Using more than one output stream in a request does not affect the
3017     * frame duration.</li>
3018     * <li>Certain format-streams may need to do additional background processing
3019     * before data is consumed/produced by that stream. These processors
3020     * can run concurrently to the rest of the camera pipeline, but
3021     * cannot process more than 1 capture at a time.</li>
3022     * </ul>
3023     * <p>The necessary information for the application, given the model above,
3024     * is provided via the {@link CameraCharacteristics#SCALER_STREAM_CONFIGURATION_MAP android.scaler.streamConfigurationMap} field using
3025     * {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputMinFrameDuration }.
3026     * These are used to determine the maximum frame rate / minimum frame
3027     * duration that is possible for a given stream configuration.</p>
3028     * <p>Specifically, the application can use the following rules to
3029     * determine the minimum frame duration it can request from the camera
3030     * device:</p>
3031     * <ol>
3032     * <li>Let the set of currently configured input/output streams
3033     * be called <code>S</code>.</li>
3034     * <li>Find the minimum frame durations for each stream in <code>S</code>, by looking
3035     * it up in {@link CameraCharacteristics#SCALER_STREAM_CONFIGURATION_MAP android.scaler.streamConfigurationMap} using {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputMinFrameDuration }
3036     * (with its respective size/format). Let this set of frame durations be
3037     * called <code>F</code>.</li>
3038     * <li>For any given request <code>R</code>, the minimum frame duration allowed
3039     * for <code>R</code> is the maximum out of all values in <code>F</code>. Let the streams
3040     * used in <code>R</code> be called <code>S_r</code>.</li>
3041     * </ol>
3042     * <p>If none of the streams in <code>S_r</code> have a stall time (listed in {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputStallDuration }
3043     * using its respective size/format), then the frame duration in <code>F</code>
3044     * determines the steady state frame rate that the application will get
3045     * if it uses <code>R</code> as a repeating request. Let this special kind of
3046     * request be called <code>Rsimple</code>.</p>
3047     * <p>A repeating request <code>Rsimple</code> can be <em>occasionally</em> interleaved
3048     * by a single capture of a new request <code>Rstall</code> (which has at least
3049     * one in-use stream with a non-0 stall time) and if <code>Rstall</code> has the
3050     * same minimum frame duration this will not cause a frame rate loss
3051     * if all buffers from the previous <code>Rstall</code> have already been
3052     * delivered.</p>
3053     * <p>For more details about stalling, see
3054     * {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputStallDuration }.</p>
3055     * <p>This control is only effective if {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} or {@link CaptureRequest#CONTROL_MODE android.control.mode} is set to
3056     * OFF; otherwise the auto-exposure algorithm will override this value.</p>
3057     * <p><b>Units</b>: Nanoseconds</p>
3058     * <p><b>Range of valid values:</b><br>
3059     * See {@link CameraCharacteristics#SENSOR_INFO_MAX_FRAME_DURATION android.sensor.info.maxFrameDuration},
3060     * {@link CameraCharacteristics#SCALER_STREAM_CONFIGURATION_MAP android.scaler.streamConfigurationMap}. The duration
3061     * is capped to <code>max(duration, exposureTime + overhead)</code>.</p>
3062     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3063     * <p><b>Full capability</b> -
3064     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3065     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3066     *
3067     * @see CaptureRequest#CONTROL_AE_MODE
3068     * @see CaptureRequest#CONTROL_MODE
3069     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3070     * @see CameraCharacteristics#SCALER_STREAM_CONFIGURATION_MAP
3071     * @see CameraCharacteristics#SENSOR_INFO_MAX_FRAME_DURATION
3072     */
3073    @PublicKey
3074    public static final Key<Long> SENSOR_FRAME_DURATION =
3075            new Key<Long>("android.sensor.frameDuration", long.class);
3076
3077    /**
3078     * <p>The amount of gain applied to sensor data
3079     * before processing.</p>
3080     * <p>The sensitivity is the standard ISO sensitivity value,
3081     * as defined in ISO 12232:2006.</p>
3082     * <p>The sensitivity must be within {@link CameraCharacteristics#SENSOR_INFO_SENSITIVITY_RANGE android.sensor.info.sensitivityRange}, and
3083     * if if it less than {@link CameraCharacteristics#SENSOR_MAX_ANALOG_SENSITIVITY android.sensor.maxAnalogSensitivity}, the camera device
3084     * is guaranteed to use only analog amplification for applying the gain.</p>
3085     * <p>If the camera device cannot apply the exact sensitivity
3086     * requested, it will reduce the gain to the nearest supported
3087     * value. The final sensitivity used will be available in the
3088     * output capture result.</p>
3089     * <p><b>Units</b>: ISO arithmetic units</p>
3090     * <p><b>Range of valid values:</b><br>
3091     * {@link CameraCharacteristics#SENSOR_INFO_SENSITIVITY_RANGE android.sensor.info.sensitivityRange}</p>
3092     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3093     * <p><b>Full capability</b> -
3094     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3095     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3096     *
3097     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3098     * @see CameraCharacteristics#SENSOR_INFO_SENSITIVITY_RANGE
3099     * @see CameraCharacteristics#SENSOR_MAX_ANALOG_SENSITIVITY
3100     */
3101    @PublicKey
3102    public static final Key<Integer> SENSOR_SENSITIVITY =
3103            new Key<Integer>("android.sensor.sensitivity", int.class);
3104
3105    /**
3106     * <p>Time at start of exposure of first
3107     * row of the image sensor active array, in nanoseconds.</p>
3108     * <p>The timestamps are also included in all image
3109     * buffers produced for the same capture, and will be identical
3110     * on all the outputs.</p>
3111     * <p>When {@link CameraCharacteristics#SENSOR_INFO_TIMESTAMP_SOURCE android.sensor.info.timestampSource} <code>==</code> UNKNOWN,
3112     * the timestamps measure time since an unspecified starting point,
3113     * and are monotonically increasing. They can be compared with the
3114     * timestamps for other captures from the same camera device, but are
3115     * not guaranteed to be comparable to any other time source.</p>
3116     * <p>When {@link CameraCharacteristics#SENSOR_INFO_TIMESTAMP_SOURCE android.sensor.info.timestampSource} <code>==</code> REALTIME, the
3117     * timestamps measure time in the same timebase as {@link android.os.SystemClock#elapsedRealtimeNanos }, and they can
3118     * be compared to other timestamps from other subsystems that
3119     * are using that base.</p>
3120     * <p>For reprocessing, the timestamp will match the start of exposure of
3121     * the input image, i.e. {@link CaptureResult#SENSOR_TIMESTAMP the
3122     * timestamp} in the TotalCaptureResult that was used to create the
3123     * reprocess capture request.</p>
3124     * <p><b>Units</b>: Nanoseconds</p>
3125     * <p><b>Range of valid values:</b><br>
3126     * &gt; 0</p>
3127     * <p>This key is available on all devices.</p>
3128     *
3129     * @see CameraCharacteristics#SENSOR_INFO_TIMESTAMP_SOURCE
3130     */
3131    @PublicKey
3132    public static final Key<Long> SENSOR_TIMESTAMP =
3133            new Key<Long>("android.sensor.timestamp", long.class);
3134
3135    /**
3136     * <p>The estimated camera neutral color in the native sensor colorspace at
3137     * the time of capture.</p>
3138     * <p>This value gives the neutral color point encoded as an RGB value in the
3139     * native sensor color space.  The neutral color point indicates the
3140     * currently estimated white point of the scene illumination.  It can be
3141     * used to interpolate between the provided color transforms when
3142     * processing raw sensor data.</p>
3143     * <p>The order of the values is R, G, B; where R is in the lowest index.</p>
3144     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3145     */
3146    @PublicKey
3147    public static final Key<Rational[]> SENSOR_NEUTRAL_COLOR_POINT =
3148            new Key<Rational[]>("android.sensor.neutralColorPoint", Rational[].class);
3149
3150    /**
3151     * <p>Noise model coefficients for each CFA mosaic channel.</p>
3152     * <p>This key contains two noise model coefficients for each CFA channel
3153     * corresponding to the sensor amplification (S) and sensor readout
3154     * noise (O).  These are given as pairs of coefficients for each channel
3155     * in the same order as channels listed for the CFA layout key
3156     * (see {@link CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT android.sensor.info.colorFilterArrangement}).  This is
3157     * represented as an array of Pair&lt;Double, Double&gt;, where
3158     * the first member of the Pair at index n is the S coefficient and the
3159     * second member is the O coefficient for the nth color channel in the CFA.</p>
3160     * <p>These coefficients are used in a two parameter noise model to describe
3161     * the amount of noise present in the image for each CFA channel.  The
3162     * noise model used here is:</p>
3163     * <p>N(x) = sqrt(Sx + O)</p>
3164     * <p>Where x represents the recorded signal of a CFA channel normalized to
3165     * the range [0, 1], and S and O are the noise model coeffiecients for
3166     * that channel.</p>
3167     * <p>A more detailed description of the noise model can be found in the
3168     * Adobe DNG specification for the NoiseProfile tag.</p>
3169     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3170     *
3171     * @see CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT
3172     */
3173    @PublicKey
3174    public static final Key<android.util.Pair<Double,Double>[]> SENSOR_NOISE_PROFILE =
3175            new Key<android.util.Pair<Double,Double>[]>("android.sensor.noiseProfile", new TypeReference<android.util.Pair<Double,Double>[]>() {{ }});
3176
3177    /**
3178     * <p>The worst-case divergence between Bayer green channels.</p>
3179     * <p>This value is an estimate of the worst case split between the
3180     * Bayer green channels in the red and blue rows in the sensor color
3181     * filter array.</p>
3182     * <p>The green split is calculated as follows:</p>
3183     * <ol>
3184     * <li>A 5x5 pixel (or larger) window W within the active sensor array is
3185     * chosen. The term 'pixel' here is taken to mean a group of 4 Bayer
3186     * mosaic channels (R, Gr, Gb, B).  The location and size of the window
3187     * chosen is implementation defined, and should be chosen to provide a
3188     * green split estimate that is both representative of the entire image
3189     * for this camera sensor, and can be calculated quickly.</li>
3190     * <li>The arithmetic mean of the green channels from the red
3191     * rows (mean_Gr) within W is computed.</li>
3192     * <li>The arithmetic mean of the green channels from the blue
3193     * rows (mean_Gb) within W is computed.</li>
3194     * <li>The maximum ratio R of the two means is computed as follows:
3195     * <code>R = max((mean_Gr + 1)/(mean_Gb + 1), (mean_Gb + 1)/(mean_Gr + 1))</code></li>
3196     * </ol>
3197     * <p>The ratio R is the green split divergence reported for this property,
3198     * which represents how much the green channels differ in the mosaic
3199     * pattern.  This value is typically used to determine the treatment of
3200     * the green mosaic channels when demosaicing.</p>
3201     * <p>The green split value can be roughly interpreted as follows:</p>
3202     * <ul>
3203     * <li>R &lt; 1.03 is a negligible split (&lt;3% divergence).</li>
3204     * <li>1.20 &lt;= R &gt;= 1.03 will require some software
3205     * correction to avoid demosaic errors (3-20% divergence).</li>
3206     * <li>R &gt; 1.20 will require strong software correction to produce
3207     * a usuable image (&gt;20% divergence).</li>
3208     * </ul>
3209     * <p><b>Range of valid values:</b><br></p>
3210     * <p>&gt;= 0</p>
3211     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3212     */
3213    @PublicKey
3214    public static final Key<Float> SENSOR_GREEN_SPLIT =
3215            new Key<Float>("android.sensor.greenSplit", float.class);
3216
3217    /**
3218     * <p>A pixel <code>[R, G_even, G_odd, B]</code> that supplies the test pattern
3219     * when {@link CaptureRequest#SENSOR_TEST_PATTERN_MODE android.sensor.testPatternMode} is SOLID_COLOR.</p>
3220     * <p>Each color channel is treated as an unsigned 32-bit integer.
3221     * The camera device then uses the most significant X bits
3222     * that correspond to how many bits are in its Bayer raw sensor
3223     * output.</p>
3224     * <p>For example, a sensor with RAW10 Bayer output would use the
3225     * 10 most significant bits from each color channel.</p>
3226     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3227     *
3228     * @see CaptureRequest#SENSOR_TEST_PATTERN_MODE
3229     */
3230    @PublicKey
3231    public static final Key<int[]> SENSOR_TEST_PATTERN_DATA =
3232            new Key<int[]>("android.sensor.testPatternData", int[].class);
3233
3234    /**
3235     * <p>When enabled, the sensor sends a test pattern instead of
3236     * doing a real exposure from the camera.</p>
3237     * <p>When a test pattern is enabled, all manual sensor controls specified
3238     * by android.sensor.* will be ignored. All other controls should
3239     * work as normal.</p>
3240     * <p>For example, if manual flash is enabled, flash firing should still
3241     * occur (and that the test pattern remain unmodified, since the flash
3242     * would not actually affect it).</p>
3243     * <p>Defaults to OFF.</p>
3244     * <p><b>Possible values:</b>
3245     * <ul>
3246     *   <li>{@link #SENSOR_TEST_PATTERN_MODE_OFF OFF}</li>
3247     *   <li>{@link #SENSOR_TEST_PATTERN_MODE_SOLID_COLOR SOLID_COLOR}</li>
3248     *   <li>{@link #SENSOR_TEST_PATTERN_MODE_COLOR_BARS COLOR_BARS}</li>
3249     *   <li>{@link #SENSOR_TEST_PATTERN_MODE_COLOR_BARS_FADE_TO_GRAY COLOR_BARS_FADE_TO_GRAY}</li>
3250     *   <li>{@link #SENSOR_TEST_PATTERN_MODE_PN9 PN9}</li>
3251     *   <li>{@link #SENSOR_TEST_PATTERN_MODE_CUSTOM1 CUSTOM1}</li>
3252     * </ul></p>
3253     * <p><b>Available values for this device:</b><br>
3254     * {@link CameraCharacteristics#SENSOR_AVAILABLE_TEST_PATTERN_MODES android.sensor.availableTestPatternModes}</p>
3255     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3256     *
3257     * @see CameraCharacteristics#SENSOR_AVAILABLE_TEST_PATTERN_MODES
3258     * @see #SENSOR_TEST_PATTERN_MODE_OFF
3259     * @see #SENSOR_TEST_PATTERN_MODE_SOLID_COLOR
3260     * @see #SENSOR_TEST_PATTERN_MODE_COLOR_BARS
3261     * @see #SENSOR_TEST_PATTERN_MODE_COLOR_BARS_FADE_TO_GRAY
3262     * @see #SENSOR_TEST_PATTERN_MODE_PN9
3263     * @see #SENSOR_TEST_PATTERN_MODE_CUSTOM1
3264     */
3265    @PublicKey
3266    public static final Key<Integer> SENSOR_TEST_PATTERN_MODE =
3267            new Key<Integer>("android.sensor.testPatternMode", int.class);
3268
3269    /**
3270     * <p>Duration between the start of first row exposure
3271     * and the start of last row exposure.</p>
3272     * <p>This is the exposure time skew between the first and last
3273     * row exposure start times. The first row and the last row are
3274     * the first and last rows inside of the
3275     * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.</p>
3276     * <p>For typical camera sensors that use rolling shutters, this is also equivalent
3277     * to the frame readout time.</p>
3278     * <p><b>Units</b>: Nanoseconds</p>
3279     * <p><b>Range of valid values:</b><br>
3280     * &gt;= 0 and &lt;
3281     * {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputMinFrameDuration }.</p>
3282     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3283     * <p><b>Limited capability</b> -
3284     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
3285     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3286     *
3287     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3288     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
3289     */
3290    @PublicKey
3291    public static final Key<Long> SENSOR_ROLLING_SHUTTER_SKEW =
3292            new Key<Long>("android.sensor.rollingShutterSkew", long.class);
3293
3294    /**
3295     * <p>Quality of lens shading correction applied
3296     * to the image data.</p>
3297     * <p>When set to OFF mode, no lens shading correction will be applied by the
3298     * camera device, and an identity lens shading map data will be provided
3299     * if <code>{@link CaptureRequest#STATISTICS_LENS_SHADING_MAP_MODE android.statistics.lensShadingMapMode} == ON</code>. For example, for lens
3300     * shading map with size of <code>[ 4, 3 ]</code>,
3301     * the output {@link CaptureResult#STATISTICS_LENS_SHADING_CORRECTION_MAP android.statistics.lensShadingCorrectionMap} for this case will be an identity
3302     * map shown below:</p>
3303     * <pre><code>[ 1.0, 1.0, 1.0, 1.0,  1.0, 1.0, 1.0, 1.0,
3304     *  1.0, 1.0, 1.0, 1.0,  1.0, 1.0, 1.0, 1.0,
3305     *  1.0, 1.0, 1.0, 1.0,  1.0, 1.0, 1.0, 1.0,
3306     *  1.0, 1.0, 1.0, 1.0,  1.0, 1.0, 1.0, 1.0,
3307     *  1.0, 1.0, 1.0, 1.0,  1.0, 1.0, 1.0, 1.0,
3308     *  1.0, 1.0, 1.0, 1.0,  1.0, 1.0, 1.0, 1.0 ]
3309     * </code></pre>
3310     * <p>When set to other modes, lens shading correction will be applied by the camera
3311     * device. Applications can request lens shading map data by setting
3312     * {@link CaptureRequest#STATISTICS_LENS_SHADING_MAP_MODE android.statistics.lensShadingMapMode} to ON, and then the camera device will provide lens
3313     * shading map data in {@link CaptureResult#STATISTICS_LENS_SHADING_CORRECTION_MAP android.statistics.lensShadingCorrectionMap}; the returned shading map
3314     * data will be the one applied by the camera device for this capture request.</p>
3315     * <p>The shading map data may depend on the auto-exposure (AE) and AWB statistics, therefore
3316     * the reliability of the map data may be affected by the AE and AWB algorithms. When AE and
3317     * AWB are in AUTO modes({@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} <code>!=</code> OFF and {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode} <code>!=</code>
3318     * OFF), to get best results, it is recommended that the applications wait for the AE and AWB
3319     * to be converged before using the returned shading map data.</p>
3320     * <p><b>Possible values:</b>
3321     * <ul>
3322     *   <li>{@link #SHADING_MODE_OFF OFF}</li>
3323     *   <li>{@link #SHADING_MODE_FAST FAST}</li>
3324     *   <li>{@link #SHADING_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
3325     * </ul></p>
3326     * <p><b>Available values for this device:</b><br>
3327     * {@link CameraCharacteristics#SHADING_AVAILABLE_MODES android.shading.availableModes}</p>
3328     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3329     * <p><b>Full capability</b> -
3330     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3331     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3332     *
3333     * @see CaptureRequest#CONTROL_AE_MODE
3334     * @see CaptureRequest#CONTROL_AWB_MODE
3335     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3336     * @see CameraCharacteristics#SHADING_AVAILABLE_MODES
3337     * @see CaptureResult#STATISTICS_LENS_SHADING_CORRECTION_MAP
3338     * @see CaptureRequest#STATISTICS_LENS_SHADING_MAP_MODE
3339     * @see #SHADING_MODE_OFF
3340     * @see #SHADING_MODE_FAST
3341     * @see #SHADING_MODE_HIGH_QUALITY
3342     */
3343    @PublicKey
3344    public static final Key<Integer> SHADING_MODE =
3345            new Key<Integer>("android.shading.mode", int.class);
3346
3347    /**
3348     * <p>Operating mode for the face detector
3349     * unit.</p>
3350     * <p>Whether face detection is enabled, and whether it
3351     * should output just the basic fields or the full set of
3352     * fields.</p>
3353     * <p><b>Possible values:</b>
3354     * <ul>
3355     *   <li>{@link #STATISTICS_FACE_DETECT_MODE_OFF OFF}</li>
3356     *   <li>{@link #STATISTICS_FACE_DETECT_MODE_SIMPLE SIMPLE}</li>
3357     *   <li>{@link #STATISTICS_FACE_DETECT_MODE_FULL FULL}</li>
3358     * </ul></p>
3359     * <p><b>Available values for this device:</b><br>
3360     * {@link CameraCharacteristics#STATISTICS_INFO_AVAILABLE_FACE_DETECT_MODES android.statistics.info.availableFaceDetectModes}</p>
3361     * <p>This key is available on all devices.</p>
3362     *
3363     * @see CameraCharacteristics#STATISTICS_INFO_AVAILABLE_FACE_DETECT_MODES
3364     * @see #STATISTICS_FACE_DETECT_MODE_OFF
3365     * @see #STATISTICS_FACE_DETECT_MODE_SIMPLE
3366     * @see #STATISTICS_FACE_DETECT_MODE_FULL
3367     */
3368    @PublicKey
3369    public static final Key<Integer> STATISTICS_FACE_DETECT_MODE =
3370            new Key<Integer>("android.statistics.faceDetectMode", int.class);
3371
3372    /**
3373     * <p>List of unique IDs for detected faces.</p>
3374     * <p>Each detected face is given a unique ID that is valid for as long as the face is visible
3375     * to the camera device.  A face that leaves the field of view and later returns may be
3376     * assigned a new ID.</p>
3377     * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} == FULL
3378     * This key is available on all devices.</p>
3379     *
3380     * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
3381     * @hide
3382     */
3383    public static final Key<int[]> STATISTICS_FACE_IDS =
3384            new Key<int[]>("android.statistics.faceIds", int[].class);
3385
3386    /**
3387     * <p>List of landmarks for detected
3388     * faces.</p>
3389     * <p>The coordinate system is that of {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}, with
3390     * <code>(0, 0)</code> being the top-left pixel of the active array.</p>
3391     * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} == FULL
3392     * This key is available on all devices.</p>
3393     *
3394     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
3395     * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
3396     * @hide
3397     */
3398    public static final Key<int[]> STATISTICS_FACE_LANDMARKS =
3399            new Key<int[]>("android.statistics.faceLandmarks", int[].class);
3400
3401    /**
3402     * <p>List of the bounding rectangles for detected
3403     * faces.</p>
3404     * <p>The coordinate system is that of {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}, with
3405     * <code>(0, 0)</code> being the top-left pixel of the active array.</p>
3406     * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} != OFF
3407     * This key is available on all devices.</p>
3408     *
3409     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
3410     * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
3411     * @hide
3412     */
3413    public static final Key<android.graphics.Rect[]> STATISTICS_FACE_RECTANGLES =
3414            new Key<android.graphics.Rect[]>("android.statistics.faceRectangles", android.graphics.Rect[].class);
3415
3416    /**
3417     * <p>List of the face confidence scores for
3418     * detected faces</p>
3419     * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} != OFF.</p>
3420     * <p><b>Range of valid values:</b><br>
3421     * 1-100</p>
3422     * <p>This key is available on all devices.</p>
3423     *
3424     * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
3425     * @hide
3426     */
3427    public static final Key<byte[]> STATISTICS_FACE_SCORES =
3428            new Key<byte[]>("android.statistics.faceScores", byte[].class);
3429
3430    /**
3431     * <p>List of the faces detected through camera face detection
3432     * in this capture.</p>
3433     * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} <code>!=</code> OFF.</p>
3434     * <p>This key is available on all devices.</p>
3435     *
3436     * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
3437     */
3438    @PublicKey
3439    @SyntheticKey
3440    public static final Key<android.hardware.camera2.params.Face[]> STATISTICS_FACES =
3441            new Key<android.hardware.camera2.params.Face[]>("android.statistics.faces", android.hardware.camera2.params.Face[].class);
3442
3443    /**
3444     * <p>The shading map is a low-resolution floating-point map
3445     * that lists the coefficients used to correct for vignetting, for each
3446     * Bayer color channel.</p>
3447     * <p>The least shaded section of the image should have a gain factor
3448     * of 1; all other sections should have gains above 1.</p>
3449     * <p>When {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} = TRANSFORM_MATRIX, the map
3450     * must take into account the colorCorrection settings.</p>
3451     * <p>The shading map is for the entire active pixel array, and is not
3452     * affected by the crop region specified in the request. Each shading map
3453     * entry is the value of the shading compensation map over a specific
3454     * pixel on the sensor.  Specifically, with a (N x M) resolution shading
3455     * map, and an active pixel array size (W x H), shading map entry
3456     * (x,y) ϵ (0 ... N-1, 0 ... M-1) is the value of the shading map at
3457     * pixel ( ((W-1)/(N-1)) * x, ((H-1)/(M-1)) * y) for the four color channels.
3458     * The map is assumed to be bilinearly interpolated between the sample points.</p>
3459     * <p>The channel order is [R, Geven, Godd, B], where Geven is the green
3460     * channel for the even rows of a Bayer pattern, and Godd is the odd rows.
3461     * The shading map is stored in a fully interleaved format.</p>
3462     * <p>The shading map should have on the order of 30-40 rows and columns,
3463     * and must be smaller than 64x64.</p>
3464     * <p>As an example, given a very small map defined as:</p>
3465     * <pre><code>width,height = [ 4, 3 ]
3466     * values =
3467     * [ 1.3, 1.2, 1.15, 1.2,  1.2, 1.2, 1.15, 1.2,
3468     *     1.1, 1.2, 1.2, 1.2,  1.3, 1.2, 1.3, 1.3,
3469     *   1.2, 1.2, 1.25, 1.1,  1.1, 1.1, 1.1, 1.0,
3470     *     1.0, 1.0, 1.0, 1.0,  1.2, 1.3, 1.25, 1.2,
3471     *   1.3, 1.2, 1.2, 1.3,   1.2, 1.15, 1.1, 1.2,
3472     *     1.2, 1.1, 1.0, 1.2,  1.3, 1.15, 1.2, 1.3 ]
3473     * </code></pre>
3474     * <p>The low-resolution scaling map images for each channel are
3475     * (displayed using nearest-neighbor interpolation):</p>
3476     * <p><img alt="Red lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/red_shading.png" />
3477     * <img alt="Green (even rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_e_shading.png" />
3478     * <img alt="Green (odd rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_o_shading.png" />
3479     * <img alt="Blue lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/blue_shading.png" /></p>
3480     * <p>As a visualization only, inverting the full-color map to recover an
3481     * image of a gray wall (using bicubic interpolation for visual quality) as captured by the sensor gives:</p>
3482     * <p><img alt="Image of a uniform white wall (inverse shading map)" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/inv_shading.png" /></p>
3483     * <p><b>Range of valid values:</b><br>
3484     * Each gain factor is &gt;= 1</p>
3485     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3486     * <p><b>Full capability</b> -
3487     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3488     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3489     *
3490     * @see CaptureRequest#COLOR_CORRECTION_MODE
3491     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3492     */
3493    @PublicKey
3494    public static final Key<android.hardware.camera2.params.LensShadingMap> STATISTICS_LENS_SHADING_CORRECTION_MAP =
3495            new Key<android.hardware.camera2.params.LensShadingMap>("android.statistics.lensShadingCorrectionMap", android.hardware.camera2.params.LensShadingMap.class);
3496
3497    /**
3498     * <p>The shading map is a low-resolution floating-point map
3499     * that lists the coefficients used to correct for vignetting, for each
3500     * Bayer color channel of RAW image data.</p>
3501     * <p>The least shaded section of the image should have a gain factor
3502     * of 1; all other sections should have gains above 1.</p>
3503     * <p>When {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} = TRANSFORM_MATRIX, the map
3504     * must take into account the colorCorrection settings.</p>
3505     * <p>The shading map is for the entire active pixel array, and is not
3506     * affected by the crop region specified in the request. Each shading map
3507     * entry is the value of the shading compensation map over a specific
3508     * pixel on the sensor.  Specifically, with a (N x M) resolution shading
3509     * map, and an active pixel array size (W x H), shading map entry
3510     * (x,y) ϵ (0 ... N-1, 0 ... M-1) is the value of the shading map at
3511     * pixel ( ((W-1)/(N-1)) * x, ((H-1)/(M-1)) * y) for the four color channels.
3512     * The map is assumed to be bilinearly interpolated between the sample points.</p>
3513     * <p>The channel order is [R, Geven, Godd, B], where Geven is the green
3514     * channel for the even rows of a Bayer pattern, and Godd is the odd rows.
3515     * The shading map is stored in a fully interleaved format, and its size
3516     * is provided in the camera static metadata by android.lens.info.shadingMapSize.</p>
3517     * <p>The shading map should have on the order of 30-40 rows and columns,
3518     * and must be smaller than 64x64.</p>
3519     * <p>As an example, given a very small map defined as:</p>
3520     * <pre><code>android.lens.info.shadingMapSize = [ 4, 3 ]
3521     * android.statistics.lensShadingMap =
3522     * [ 1.3, 1.2, 1.15, 1.2,  1.2, 1.2, 1.15, 1.2,
3523     *     1.1, 1.2, 1.2, 1.2,  1.3, 1.2, 1.3, 1.3,
3524     *   1.2, 1.2, 1.25, 1.1,  1.1, 1.1, 1.1, 1.0,
3525     *     1.0, 1.0, 1.0, 1.0,  1.2, 1.3, 1.25, 1.2,
3526     *   1.3, 1.2, 1.2, 1.3,   1.2, 1.15, 1.1, 1.2,
3527     *     1.2, 1.1, 1.0, 1.2,  1.3, 1.15, 1.2, 1.3 ]
3528     * </code></pre>
3529     * <p>The low-resolution scaling map images for each channel are
3530     * (displayed using nearest-neighbor interpolation):</p>
3531     * <p><img alt="Red lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/red_shading.png" />
3532     * <img alt="Green (even rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_e_shading.png" />
3533     * <img alt="Green (odd rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_o_shading.png" />
3534     * <img alt="Blue lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/blue_shading.png" /></p>
3535     * <p>As a visualization only, inverting the full-color map to recover an
3536     * image of a gray wall (using bicubic interpolation for visual quality)
3537     * as captured by the sensor gives:</p>
3538     * <p><img alt="Image of a uniform white wall (inverse shading map)" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/inv_shading.png" /></p>
3539     * <p>Note that the RAW image data might be subject to lens shading
3540     * correction not reported on this map. Query
3541     * {@link CameraCharacteristics#SENSOR_INFO_LENS_SHADING_APPLIED android.sensor.info.lensShadingApplied} to see if RAW image data has subject
3542     * to lens shading correction. If {@link CameraCharacteristics#SENSOR_INFO_LENS_SHADING_APPLIED android.sensor.info.lensShadingApplied}
3543     * is TRUE, the RAW image data is subject to partial or full lens shading
3544     * correction. In the case full lens shading correction is applied to RAW
3545     * images, the gain factor map reported in this key will contain all 1.0 gains.
3546     * In other words, the map reported in this key is the remaining lens shading
3547     * that needs to be applied on the RAW image to get images without lens shading
3548     * artifacts. See {@link CameraCharacteristics#REQUEST_MAX_NUM_OUTPUT_RAW android.request.maxNumOutputRaw} for a list of RAW image
3549     * formats.</p>
3550     * <p><b>Range of valid values:</b><br>
3551     * Each gain factor is &gt;= 1</p>
3552     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3553     * <p><b>Full capability</b> -
3554     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3555     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3556     *
3557     * @see CaptureRequest#COLOR_CORRECTION_MODE
3558     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3559     * @see CameraCharacteristics#REQUEST_MAX_NUM_OUTPUT_RAW
3560     * @see CameraCharacteristics#SENSOR_INFO_LENS_SHADING_APPLIED
3561     * @hide
3562     */
3563    public static final Key<float[]> STATISTICS_LENS_SHADING_MAP =
3564            new Key<float[]>("android.statistics.lensShadingMap", float[].class);
3565
3566    /**
3567     * <p>The best-fit color channel gains calculated
3568     * by the camera device's statistics units for the current output frame.</p>
3569     * <p>This may be different than the gains used for this frame,
3570     * since statistics processing on data from a new frame
3571     * typically completes after the transform has already been
3572     * applied to that frame.</p>
3573     * <p>The 4 channel gains are defined in Bayer domain,
3574     * see {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} for details.</p>
3575     * <p>This value should always be calculated by the auto-white balance (AWB) block,
3576     * regardless of the android.control.* current values.</p>
3577     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3578     *
3579     * @see CaptureRequest#COLOR_CORRECTION_GAINS
3580     * @deprecated
3581     * @hide
3582     */
3583    @Deprecated
3584    public static final Key<float[]> STATISTICS_PREDICTED_COLOR_GAINS =
3585            new Key<float[]>("android.statistics.predictedColorGains", float[].class);
3586
3587    /**
3588     * <p>The best-fit color transform matrix estimate
3589     * calculated by the camera device's statistics units for the current
3590     * output frame.</p>
3591     * <p>The camera device will provide the estimate from its
3592     * statistics unit on the white balance transforms to use
3593     * for the next frame. These are the values the camera device believes
3594     * are the best fit for the current output frame. This may
3595     * be different than the transform used for this frame, since
3596     * statistics processing on data from a new frame typically
3597     * completes after the transform has already been applied to
3598     * that frame.</p>
3599     * <p>These estimates must be provided for all frames, even if
3600     * capture settings and color transforms are set by the application.</p>
3601     * <p>This value should always be calculated by the auto-white balance (AWB) block,
3602     * regardless of the android.control.* current values.</p>
3603     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3604     * @deprecated
3605     * @hide
3606     */
3607    @Deprecated
3608    public static final Key<Rational[]> STATISTICS_PREDICTED_COLOR_TRANSFORM =
3609            new Key<Rational[]>("android.statistics.predictedColorTransform", Rational[].class);
3610
3611    /**
3612     * <p>The camera device estimated scene illumination lighting
3613     * frequency.</p>
3614     * <p>Many light sources, such as most fluorescent lights, flicker at a rate
3615     * that depends on the local utility power standards. This flicker must be
3616     * accounted for by auto-exposure routines to avoid artifacts in captured images.
3617     * The camera device uses this entry to tell the application what the scene
3618     * illuminant frequency is.</p>
3619     * <p>When manual exposure control is enabled
3620     * (<code>{@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} == OFF</code> or <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} ==
3621     * OFF</code>), the {@link CaptureRequest#CONTROL_AE_ANTIBANDING_MODE android.control.aeAntibandingMode} doesn't perform
3622     * antibanding, and the application can ensure it selects
3623     * exposure times that do not cause banding issues by looking
3624     * into this metadata field. See
3625     * {@link CaptureRequest#CONTROL_AE_ANTIBANDING_MODE android.control.aeAntibandingMode} for more details.</p>
3626     * <p>Reports NONE if there doesn't appear to be flickering illumination.</p>
3627     * <p><b>Possible values:</b>
3628     * <ul>
3629     *   <li>{@link #STATISTICS_SCENE_FLICKER_NONE NONE}</li>
3630     *   <li>{@link #STATISTICS_SCENE_FLICKER_50HZ 50HZ}</li>
3631     *   <li>{@link #STATISTICS_SCENE_FLICKER_60HZ 60HZ}</li>
3632     * </ul></p>
3633     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3634     * <p><b>Full capability</b> -
3635     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3636     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3637     *
3638     * @see CaptureRequest#CONTROL_AE_ANTIBANDING_MODE
3639     * @see CaptureRequest#CONTROL_AE_MODE
3640     * @see CaptureRequest#CONTROL_MODE
3641     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3642     * @see #STATISTICS_SCENE_FLICKER_NONE
3643     * @see #STATISTICS_SCENE_FLICKER_50HZ
3644     * @see #STATISTICS_SCENE_FLICKER_60HZ
3645     */
3646    @PublicKey
3647    public static final Key<Integer> STATISTICS_SCENE_FLICKER =
3648            new Key<Integer>("android.statistics.sceneFlicker", int.class);
3649
3650    /**
3651     * <p>Operating mode for hot pixel map generation.</p>
3652     * <p>If set to <code>true</code>, a hot pixel map is returned in {@link CaptureResult#STATISTICS_HOT_PIXEL_MAP android.statistics.hotPixelMap}.
3653     * If set to <code>false</code>, no hot pixel map will be returned.</p>
3654     * <p><b>Range of valid values:</b><br>
3655     * {@link CameraCharacteristics#STATISTICS_INFO_AVAILABLE_HOT_PIXEL_MAP_MODES android.statistics.info.availableHotPixelMapModes}</p>
3656     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3657     *
3658     * @see CaptureResult#STATISTICS_HOT_PIXEL_MAP
3659     * @see CameraCharacteristics#STATISTICS_INFO_AVAILABLE_HOT_PIXEL_MAP_MODES
3660     */
3661    @PublicKey
3662    public static final Key<Boolean> STATISTICS_HOT_PIXEL_MAP_MODE =
3663            new Key<Boolean>("android.statistics.hotPixelMapMode", boolean.class);
3664
3665    /**
3666     * <p>List of <code>(x, y)</code> coordinates of hot/defective pixels on the sensor.</p>
3667     * <p>A coordinate <code>(x, y)</code> must lie between <code>(0, 0)</code>, and
3668     * <code>(width - 1, height - 1)</code> (inclusive), which are the top-left and
3669     * bottom-right of the pixel array, respectively. The width and
3670     * height dimensions are given in {@link CameraCharacteristics#SENSOR_INFO_PIXEL_ARRAY_SIZE android.sensor.info.pixelArraySize}.
3671     * This may include hot pixels that lie outside of the active array
3672     * bounds given by {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.</p>
3673     * <p><b>Range of valid values:</b><br></p>
3674     * <p>n &lt;= number of pixels on the sensor.
3675     * The <code>(x, y)</code> coordinates must be bounded by
3676     * {@link CameraCharacteristics#SENSOR_INFO_PIXEL_ARRAY_SIZE android.sensor.info.pixelArraySize}.</p>
3677     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3678     *
3679     * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
3680     * @see CameraCharacteristics#SENSOR_INFO_PIXEL_ARRAY_SIZE
3681     */
3682    @PublicKey
3683    public static final Key<android.graphics.Point[]> STATISTICS_HOT_PIXEL_MAP =
3684            new Key<android.graphics.Point[]>("android.statistics.hotPixelMap", android.graphics.Point[].class);
3685
3686    /**
3687     * <p>Whether the camera device will output the lens
3688     * shading map in output result metadata.</p>
3689     * <p>When set to ON,
3690     * android.statistics.lensShadingMap will be provided in
3691     * the output result metadata.</p>
3692     * <p>ON is always supported on devices with the RAW capability.</p>
3693     * <p><b>Possible values:</b>
3694     * <ul>
3695     *   <li>{@link #STATISTICS_LENS_SHADING_MAP_MODE_OFF OFF}</li>
3696     *   <li>{@link #STATISTICS_LENS_SHADING_MAP_MODE_ON ON}</li>
3697     * </ul></p>
3698     * <p><b>Available values for this device:</b><br>
3699     * {@link CameraCharacteristics#STATISTICS_INFO_AVAILABLE_LENS_SHADING_MAP_MODES android.statistics.info.availableLensShadingMapModes}</p>
3700     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3701     * <p><b>Full capability</b> -
3702     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3703     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3704     *
3705     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3706     * @see CameraCharacteristics#STATISTICS_INFO_AVAILABLE_LENS_SHADING_MAP_MODES
3707     * @see #STATISTICS_LENS_SHADING_MAP_MODE_OFF
3708     * @see #STATISTICS_LENS_SHADING_MAP_MODE_ON
3709     */
3710    @PublicKey
3711    public static final Key<Integer> STATISTICS_LENS_SHADING_MAP_MODE =
3712            new Key<Integer>("android.statistics.lensShadingMapMode", int.class);
3713
3714    /**
3715     * <p>Tonemapping / contrast / gamma curve for the blue
3716     * channel, to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3717     * CONTRAST_CURVE.</p>
3718     * <p>See android.tonemap.curveRed for more details.</p>
3719     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3720     * <p><b>Full capability</b> -
3721     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3722     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3723     *
3724     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3725     * @see CaptureRequest#TONEMAP_MODE
3726     * @hide
3727     */
3728    public static final Key<float[]> TONEMAP_CURVE_BLUE =
3729            new Key<float[]>("android.tonemap.curveBlue", float[].class);
3730
3731    /**
3732     * <p>Tonemapping / contrast / gamma curve for the green
3733     * channel, to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3734     * CONTRAST_CURVE.</p>
3735     * <p>See android.tonemap.curveRed for more details.</p>
3736     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3737     * <p><b>Full capability</b> -
3738     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3739     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3740     *
3741     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3742     * @see CaptureRequest#TONEMAP_MODE
3743     * @hide
3744     */
3745    public static final Key<float[]> TONEMAP_CURVE_GREEN =
3746            new Key<float[]>("android.tonemap.curveGreen", float[].class);
3747
3748    /**
3749     * <p>Tonemapping / contrast / gamma curve for the red
3750     * channel, to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3751     * CONTRAST_CURVE.</p>
3752     * <p>Each channel's curve is defined by an array of control points:</p>
3753     * <pre><code>android.tonemap.curveRed =
3754     *   [ P0in, P0out, P1in, P1out, P2in, P2out, P3in, P3out, ..., PNin, PNout ]
3755     * 2 &lt;= N &lt;= {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS android.tonemap.maxCurvePoints}</code></pre>
3756     * <p>These are sorted in order of increasing <code>Pin</code>; it is
3757     * required that input values 0.0 and 1.0 are included in the list to
3758     * define a complete mapping. For input values between control points,
3759     * the camera device must linearly interpolate between the control
3760     * points.</p>
3761     * <p>Each curve can have an independent number of points, and the number
3762     * of points can be less than max (that is, the request doesn't have to
3763     * always provide a curve with number of points equivalent to
3764     * {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS android.tonemap.maxCurvePoints}).</p>
3765     * <p>A few examples, and their corresponding graphical mappings; these
3766     * only specify the red channel and the precision is limited to 4
3767     * digits, for conciseness.</p>
3768     * <p>Linear mapping:</p>
3769     * <pre><code>android.tonemap.curveRed = [ 0, 0, 1.0, 1.0 ]
3770     * </code></pre>
3771     * <p><img alt="Linear mapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/linear_tonemap.png" /></p>
3772     * <p>Invert mapping:</p>
3773     * <pre><code>android.tonemap.curveRed = [ 0, 1.0, 1.0, 0 ]
3774     * </code></pre>
3775     * <p><img alt="Inverting mapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/inverse_tonemap.png" /></p>
3776     * <p>Gamma 1/2.2 mapping, with 16 control points:</p>
3777     * <pre><code>android.tonemap.curveRed = [
3778     *   0.0000, 0.0000, 0.0667, 0.2920, 0.1333, 0.4002, 0.2000, 0.4812,
3779     *   0.2667, 0.5484, 0.3333, 0.6069, 0.4000, 0.6594, 0.4667, 0.7072,
3780     *   0.5333, 0.7515, 0.6000, 0.7928, 0.6667, 0.8317, 0.7333, 0.8685,
3781     *   0.8000, 0.9035, 0.8667, 0.9370, 0.9333, 0.9691, 1.0000, 1.0000 ]
3782     * </code></pre>
3783     * <p><img alt="Gamma = 1/2.2 tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/gamma_tonemap.png" /></p>
3784     * <p>Standard sRGB gamma mapping, per IEC 61966-2-1:1999, with 16 control points:</p>
3785     * <pre><code>android.tonemap.curveRed = [
3786     *   0.0000, 0.0000, 0.0667, 0.2864, 0.1333, 0.4007, 0.2000, 0.4845,
3787     *   0.2667, 0.5532, 0.3333, 0.6125, 0.4000, 0.6652, 0.4667, 0.7130,
3788     *   0.5333, 0.7569, 0.6000, 0.7977, 0.6667, 0.8360, 0.7333, 0.8721,
3789     *   0.8000, 0.9063, 0.8667, 0.9389, 0.9333, 0.9701, 1.0000, 1.0000 ]
3790     * </code></pre>
3791     * <p><img alt="sRGB tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/srgb_tonemap.png" /></p>
3792     * <p><b>Range of valid values:</b><br>
3793     * 0-1 on both input and output coordinates, normalized
3794     * as a floating-point value such that 0 == black and 1 == white.</p>
3795     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3796     * <p><b>Full capability</b> -
3797     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3798     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3799     *
3800     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3801     * @see CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS
3802     * @see CaptureRequest#TONEMAP_MODE
3803     * @hide
3804     */
3805    public static final Key<float[]> TONEMAP_CURVE_RED =
3806            new Key<float[]>("android.tonemap.curveRed", float[].class);
3807
3808    /**
3809     * <p>Tonemapping / contrast / gamma curve to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode}
3810     * is CONTRAST_CURVE.</p>
3811     * <p>The tonemapCurve consist of three curves for each of red, green, and blue
3812     * channels respectively. The following example uses the red channel as an
3813     * example. The same logic applies to green and blue channel.
3814     * Each channel's curve is defined by an array of control points:</p>
3815     * <pre><code>curveRed =
3816     *   [ P0(in, out), P1(in, out), P2(in, out), P3(in, out), ..., PN(in, out) ]
3817     * 2 &lt;= N &lt;= {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS android.tonemap.maxCurvePoints}</code></pre>
3818     * <p>These are sorted in order of increasing <code>Pin</code>; it is always
3819     * guaranteed that input values 0.0 and 1.0 are included in the list to
3820     * define a complete mapping. For input values between control points,
3821     * the camera device must linearly interpolate between the control
3822     * points.</p>
3823     * <p>Each curve can have an independent number of points, and the number
3824     * of points can be less than max (that is, the request doesn't have to
3825     * always provide a curve with number of points equivalent to
3826     * {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS android.tonemap.maxCurvePoints}).</p>
3827     * <p>A few examples, and their corresponding graphical mappings; these
3828     * only specify the red channel and the precision is limited to 4
3829     * digits, for conciseness.</p>
3830     * <p>Linear mapping:</p>
3831     * <pre><code>curveRed = [ (0, 0), (1.0, 1.0) ]
3832     * </code></pre>
3833     * <p><img alt="Linear mapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/linear_tonemap.png" /></p>
3834     * <p>Invert mapping:</p>
3835     * <pre><code>curveRed = [ (0, 1.0), (1.0, 0) ]
3836     * </code></pre>
3837     * <p><img alt="Inverting mapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/inverse_tonemap.png" /></p>
3838     * <p>Gamma 1/2.2 mapping, with 16 control points:</p>
3839     * <pre><code>curveRed = [
3840     *   (0.0000, 0.0000), (0.0667, 0.2920), (0.1333, 0.4002), (0.2000, 0.4812),
3841     *   (0.2667, 0.5484), (0.3333, 0.6069), (0.4000, 0.6594), (0.4667, 0.7072),
3842     *   (0.5333, 0.7515), (0.6000, 0.7928), (0.6667, 0.8317), (0.7333, 0.8685),
3843     *   (0.8000, 0.9035), (0.8667, 0.9370), (0.9333, 0.9691), (1.0000, 1.0000) ]
3844     * </code></pre>
3845     * <p><img alt="Gamma = 1/2.2 tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/gamma_tonemap.png" /></p>
3846     * <p>Standard sRGB gamma mapping, per IEC 61966-2-1:1999, with 16 control points:</p>
3847     * <pre><code>curveRed = [
3848     *   (0.0000, 0.0000), (0.0667, 0.2864), (0.1333, 0.4007), (0.2000, 0.4845),
3849     *   (0.2667, 0.5532), (0.3333, 0.6125), (0.4000, 0.6652), (0.4667, 0.7130),
3850     *   (0.5333, 0.7569), (0.6000, 0.7977), (0.6667, 0.8360), (0.7333, 0.8721),
3851     *   (0.8000, 0.9063), (0.8667, 0.9389), (0.9333, 0.9701), (1.0000, 1.0000) ]
3852     * </code></pre>
3853     * <p><img alt="sRGB tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/srgb_tonemap.png" /></p>
3854     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3855     * <p><b>Full capability</b> -
3856     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3857     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3858     *
3859     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3860     * @see CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS
3861     * @see CaptureRequest#TONEMAP_MODE
3862     */
3863    @PublicKey
3864    @SyntheticKey
3865    public static final Key<android.hardware.camera2.params.TonemapCurve> TONEMAP_CURVE =
3866            new Key<android.hardware.camera2.params.TonemapCurve>("android.tonemap.curve", android.hardware.camera2.params.TonemapCurve.class);
3867
3868    /**
3869     * <p>High-level global contrast/gamma/tonemapping control.</p>
3870     * <p>When switching to an application-defined contrast curve by setting
3871     * {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} to CONTRAST_CURVE, the curve is defined
3872     * per-channel with a set of <code>(in, out)</code> points that specify the
3873     * mapping from input high-bit-depth pixel value to the output
3874     * low-bit-depth value.  Since the actual pixel ranges of both input
3875     * and output may change depending on the camera pipeline, the values
3876     * are specified by normalized floating-point numbers.</p>
3877     * <p>More-complex color mapping operations such as 3D color look-up
3878     * tables, selective chroma enhancement, or other non-linear color
3879     * transforms will be disabled when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3880     * CONTRAST_CURVE.</p>
3881     * <p>When using either FAST or HIGH_QUALITY, the camera device will
3882     * emit its own tonemap curve in {@link CaptureRequest#TONEMAP_CURVE android.tonemap.curve}.
3883     * These values are always available, and as close as possible to the
3884     * actually used nonlinear/nonglobal transforms.</p>
3885     * <p>If a request is sent with CONTRAST_CURVE with the camera device's
3886     * provided curve in FAST or HIGH_QUALITY, the image's tonemap will be
3887     * roughly the same.</p>
3888     * <p><b>Possible values:</b>
3889     * <ul>
3890     *   <li>{@link #TONEMAP_MODE_CONTRAST_CURVE CONTRAST_CURVE}</li>
3891     *   <li>{@link #TONEMAP_MODE_FAST FAST}</li>
3892     *   <li>{@link #TONEMAP_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
3893     *   <li>{@link #TONEMAP_MODE_GAMMA_VALUE GAMMA_VALUE}</li>
3894     *   <li>{@link #TONEMAP_MODE_PRESET_CURVE PRESET_CURVE}</li>
3895     * </ul></p>
3896     * <p><b>Available values for this device:</b><br>
3897     * {@link CameraCharacteristics#TONEMAP_AVAILABLE_TONE_MAP_MODES android.tonemap.availableToneMapModes}</p>
3898     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3899     * <p><b>Full capability</b> -
3900     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3901     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3902     *
3903     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3904     * @see CameraCharacteristics#TONEMAP_AVAILABLE_TONE_MAP_MODES
3905     * @see CaptureRequest#TONEMAP_CURVE
3906     * @see CaptureRequest#TONEMAP_MODE
3907     * @see #TONEMAP_MODE_CONTRAST_CURVE
3908     * @see #TONEMAP_MODE_FAST
3909     * @see #TONEMAP_MODE_HIGH_QUALITY
3910     * @see #TONEMAP_MODE_GAMMA_VALUE
3911     * @see #TONEMAP_MODE_PRESET_CURVE
3912     */
3913    @PublicKey
3914    public static final Key<Integer> TONEMAP_MODE =
3915            new Key<Integer>("android.tonemap.mode", int.class);
3916
3917    /**
3918     * <p>Tonemapping curve to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3919     * GAMMA_VALUE</p>
3920     * <p>The tonemap curve will be defined the following formula:
3921     * * OUT = pow(IN, 1.0 / gamma)
3922     * where IN and OUT is the input pixel value scaled to range [0.0, 1.0],
3923     * pow is the power function and gamma is the gamma value specified by this
3924     * key.</p>
3925     * <p>The same curve will be applied to all color channels. The camera device
3926     * may clip the input gamma value to its supported range. The actual applied
3927     * value will be returned in capture result.</p>
3928     * <p>The valid range of gamma value varies on different devices, but values
3929     * within [1.0, 5.0] are guaranteed not to be clipped.</p>
3930     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3931     *
3932     * @see CaptureRequest#TONEMAP_MODE
3933     */
3934    @PublicKey
3935    public static final Key<Float> TONEMAP_GAMMA =
3936            new Key<Float>("android.tonemap.gamma", float.class);
3937
3938    /**
3939     * <p>Tonemapping curve to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3940     * PRESET_CURVE</p>
3941     * <p>The tonemap curve will be defined by specified standard.</p>
3942     * <p>sRGB (approximated by 16 control points):</p>
3943     * <p><img alt="sRGB tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/srgb_tonemap.png" /></p>
3944     * <p>Rec. 709 (approximated by 16 control points):</p>
3945     * <p><img alt="Rec. 709 tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/rec709_tonemap.png" /></p>
3946     * <p>Note that above figures show a 16 control points approximation of preset
3947     * curves. Camera devices may apply a different approximation to the curve.</p>
3948     * <p><b>Possible values:</b>
3949     * <ul>
3950     *   <li>{@link #TONEMAP_PRESET_CURVE_SRGB SRGB}</li>
3951     *   <li>{@link #TONEMAP_PRESET_CURVE_REC709 REC709}</li>
3952     * </ul></p>
3953     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3954     *
3955     * @see CaptureRequest#TONEMAP_MODE
3956     * @see #TONEMAP_PRESET_CURVE_SRGB
3957     * @see #TONEMAP_PRESET_CURVE_REC709
3958     */
3959    @PublicKey
3960    public static final Key<Integer> TONEMAP_PRESET_CURVE =
3961            new Key<Integer>("android.tonemap.presetCurve", int.class);
3962
3963    /**
3964     * <p>This LED is nominally used to indicate to the user
3965     * that the camera is powered on and may be streaming images back to the
3966     * Application Processor. In certain rare circumstances, the OS may
3967     * disable this when video is processed locally and not transmitted to
3968     * any untrusted applications.</p>
3969     * <p>In particular, the LED <em>must</em> always be on when the data could be
3970     * transmitted off the device. The LED <em>should</em> always be on whenever
3971     * data is stored locally on the device.</p>
3972     * <p>The LED <em>may</em> be off if a trusted application is using the data that
3973     * doesn't violate the above rules.</p>
3974     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3975     * @hide
3976     */
3977    public static final Key<Boolean> LED_TRANSMIT =
3978            new Key<Boolean>("android.led.transmit", boolean.class);
3979
3980    /**
3981     * <p>Whether black-level compensation is locked
3982     * to its current values, or is free to vary.</p>
3983     * <p>Whether the black level offset was locked for this frame.  Should be
3984     * ON if {@link CaptureRequest#BLACK_LEVEL_LOCK android.blackLevel.lock} was ON in the capture request, unless
3985     * a change in other capture settings forced the camera device to
3986     * perform a black level reset.</p>
3987     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3988     * <p><b>Full capability</b> -
3989     * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3990     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3991     *
3992     * @see CaptureRequest#BLACK_LEVEL_LOCK
3993     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
3994     */
3995    @PublicKey
3996    public static final Key<Boolean> BLACK_LEVEL_LOCK =
3997            new Key<Boolean>("android.blackLevel.lock", boolean.class);
3998
3999    /**
4000     * <p>The frame number corresponding to the last request
4001     * with which the output result (metadata + buffers) has been fully
4002     * synchronized.</p>
4003     * <p>When a request is submitted to the camera device, there is usually a
4004     * delay of several frames before the controls get applied. A camera
4005     * device may either choose to account for this delay by implementing a
4006     * pipeline and carefully submit well-timed atomic control updates, or
4007     * it may start streaming control changes that span over several frame
4008     * boundaries.</p>
4009     * <p>In the latter case, whenever a request's settings change relative to
4010     * the previous submitted request, the full set of changes may take
4011     * multiple frame durations to fully take effect. Some settings may
4012     * take effect sooner (in less frame durations) than others.</p>
4013     * <p>While a set of control changes are being propagated, this value
4014     * will be CONVERGING.</p>
4015     * <p>Once it is fully known that a set of control changes have been
4016     * finished propagating, and the resulting updated control settings
4017     * have been read back by the camera device, this value will be set
4018     * to a non-negative frame number (corresponding to the request to
4019     * which the results have synchronized to).</p>
4020     * <p>Older camera device implementations may not have a way to detect
4021     * when all camera controls have been applied, and will always set this
4022     * value to UNKNOWN.</p>
4023     * <p>FULL capability devices will always have this value set to the
4024     * frame number of the request corresponding to this result.</p>
4025     * <p><em>Further details</em>:</p>
4026     * <ul>
4027     * <li>Whenever a request differs from the last request, any future
4028     * results not yet returned may have this value set to CONVERGING (this
4029     * could include any in-progress captures not yet returned by the camera
4030     * device, for more details see pipeline considerations below).</li>
4031     * <li>Submitting a series of multiple requests that differ from the
4032     * previous request (e.g. r1, r2, r3 s.t. r1 != r2 != r3)
4033     * moves the new synchronization frame to the last non-repeating
4034     * request (using the smallest frame number from the contiguous list of
4035     * repeating requests).</li>
4036     * <li>Submitting the same request repeatedly will not change this value
4037     * to CONVERGING, if it was already a non-negative value.</li>
4038     * <li>When this value changes to non-negative, that means that all of the
4039     * metadata controls from the request have been applied, all of the
4040     * metadata controls from the camera device have been read to the
4041     * updated values (into the result), and all of the graphics buffers
4042     * corresponding to this result are also synchronized to the request.</li>
4043     * </ul>
4044     * <p><em>Pipeline considerations</em>:</p>
4045     * <p>Submitting a request with updated controls relative to the previously
4046     * submitted requests may also invalidate the synchronization state
4047     * of all the results corresponding to currently in-flight requests.</p>
4048     * <p>In other words, results for this current request and up to
4049     * {@link CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH android.request.pipelineMaxDepth} prior requests may have their
4050     * android.sync.frameNumber change to CONVERGING.</p>
4051     * <p><b>Possible values:</b>
4052     * <ul>
4053     *   <li>{@link #SYNC_FRAME_NUMBER_CONVERGING CONVERGING}</li>
4054     *   <li>{@link #SYNC_FRAME_NUMBER_UNKNOWN UNKNOWN}</li>
4055     * </ul></p>
4056     * <p><b>Available values for this device:</b><br>
4057     * Either a non-negative value corresponding to a
4058     * <code>frame_number</code>, or one of the two enums (CONVERGING / UNKNOWN).</p>
4059     * <p>This key is available on all devices.</p>
4060     *
4061     * @see CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH
4062     * @see #SYNC_FRAME_NUMBER_CONVERGING
4063     * @see #SYNC_FRAME_NUMBER_UNKNOWN
4064     * @hide
4065     */
4066    public static final Key<Long> SYNC_FRAME_NUMBER =
4067            new Key<Long>("android.sync.frameNumber", long.class);
4068
4069    /**
4070     * <p>The amount of exposure time increase factor applied to the original output
4071     * frame by the application processing before sending for reprocessing.</p>
4072     * <p>This is optional, and will be supported if the camera device supports YUV_REPROCESSING
4073     * capability ({@link CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES android.request.availableCapabilities} contains YUV_REPROCESSING).</p>
4074     * <p>For some YUV reprocessing use cases, the application may choose to filter the original
4075     * output frames to effectively reduce the noise to the same level as a frame that was
4076     * captured with longer exposure time. To be more specific, assuming the original captured
4077     * images were captured with a sensitivity of S and an exposure time of T, the model in
4078     * the camera device is that the amount of noise in the image would be approximately what
4079     * would be expected if the original capture parameters had been a sensitivity of
4080     * S/effectiveExposureFactor and an exposure time of T*effectiveExposureFactor, rather
4081     * than S and T respectively. If the captured images were processed by the application
4082     * before being sent for reprocessing, then the application may have used image processing
4083     * algorithms and/or multi-frame image fusion to reduce the noise in the
4084     * application-processed images (input images). By using the effectiveExposureFactor
4085     * control, the application can communicate to the camera device the actual noise level
4086     * improvement in the application-processed image. With this information, the camera
4087     * device can select appropriate noise reduction and edge enhancement parameters to avoid
4088     * excessive noise reduction ({@link CaptureRequest#NOISE_REDUCTION_MODE android.noiseReduction.mode}) and insufficient edge
4089     * enhancement ({@link CaptureRequest#EDGE_MODE android.edge.mode}) being applied to the reprocessed frames.</p>
4090     * <p>For example, for multi-frame image fusion use case, the application may fuse
4091     * multiple output frames together to a final frame for reprocessing. When N image are
4092     * fused into 1 image for reprocessing, the exposure time increase factor could be up to
4093     * square root of N (based on a simple photon shot noise model). The camera device will
4094     * adjust the reprocessing noise reduction and edge enhancement parameters accordingly to
4095     * produce the best quality images.</p>
4096     * <p>This is relative factor, 1.0 indicates the application hasn't processed the input
4097     * buffer in a way that affects its effective exposure time.</p>
4098     * <p>This control is only effective for YUV reprocessing capture request. For noise
4099     * reduction reprocessing, it is only effective when <code>{@link CaptureRequest#NOISE_REDUCTION_MODE android.noiseReduction.mode} != OFF</code>.
4100     * Similarly, for edge enhancement reprocessing, it is only effective when
4101     * <code>{@link CaptureRequest#EDGE_MODE android.edge.mode} != OFF</code>.</p>
4102     * <p><b>Units</b>: Relative exposure time increase factor.</p>
4103     * <p><b>Range of valid values:</b><br>
4104     * &gt;= 1.0</p>
4105     * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
4106     * <p><b>Limited capability</b> -
4107     * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
4108     * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
4109     *
4110     * @see CaptureRequest#EDGE_MODE
4111     * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
4112     * @see CaptureRequest#NOISE_REDUCTION_MODE
4113     * @see CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES
4114     */
4115    @PublicKey
4116    public static final Key<Float> REPROCESS_EFFECTIVE_EXPOSURE_FACTOR =
4117            new Key<Float>("android.reprocess.effectiveExposureFactor", float.class);
4118
4119    /*~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~
4120     * End generated code
4121     *~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~O@*/
4122
4123
4124
4125}
4126