blob: b91e78c47e2aafb0dbe30271a34e6dcd069a45d2 [file] [log] [blame]
Eino-Ville Talvalab2675542012-12-12 13:29:45 -08001/*
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
Eino-Ville Talvala2f1a2e42013-07-25 17:12:05 -070017package android.hardware.camera2;
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080018
Eino-Ville Talvala70c22072013-08-27 12:09:04 -070019import android.hardware.camera2.impl.CameraMetadataNative;
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080020
21/**
22 * <p>The results of a single image capture from the image sensor.</p>
23 *
24 * <p>Contains the final configuration for the capture hardware (sensor, lens,
25 * flash), the processing pipeline, the control algorithms, and the output
26 * buffers.</p>
27 *
28 * <p>CaptureResults are produced by a {@link CameraDevice} after processing a
29 * {@link CaptureRequest}. All properties listed for capture requests can also
30 * be queried on the capture result, to determine the final values used for
31 * capture. The result also includes additional metadata about the state of the
32 * camera device during the capture.</p>
33 *
34 */
35public final class CaptureResult extends CameraMetadata {
Eino-Ville Talvala70c22072013-08-27 12:09:04 -070036
37 private final CameraMetadataNative mResults;
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -070038 private final CaptureRequest mRequest;
39 private final int mSequenceId;
Eino-Ville Talvala70c22072013-08-27 12:09:04 -070040
Igor Murashkin70725502013-06-25 20:27:06 +000041 /**
Eino-Ville Talvala70c22072013-08-27 12:09:04 -070042 * Takes ownership of the passed-in properties object
Igor Murashkin70725502013-06-25 20:27:06 +000043 * @hide
44 */
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -070045 public CaptureResult(CameraMetadataNative results, CaptureRequest parent, int sequenceId) {
46 if (results == null) {
47 throw new IllegalArgumentException("results was null");
48 }
49
50 if (parent == null) {
51 throw new IllegalArgumentException("parent was null");
52 }
53
Eino-Ville Talvala70c22072013-08-27 12:09:04 -070054 mResults = results;
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -070055 mRequest = parent;
56 mSequenceId = sequenceId;
Eino-Ville Talvala70c22072013-08-27 12:09:04 -070057 }
58
59 @Override
60 public <T> T get(Key<T> key) {
61 return mResults.get(key);
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080062 }
63
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -070064 /**
65 * Get the request associated with this result.
66 *
67 * <p>Whenever a request is successfully captured, with
68 * {@link CameraDevice.CaptureListener#onCaptureCompleted},
69 * the {@code result}'s {@code getRequest()} will return that {@code request}.
70 * </p>
71 *
72 * <p>In particular,
73 * <code><pre>cameraDevice.capture(someRequest, new CaptureListener() {
74 * {@literal @}Override
75 * void onCaptureCompleted(CaptureRequest myRequest, CaptureResult myResult) {
76 * assert(myResult.getRequest.equals(myRequest) == true);
77 * }
78 * };
79 * </code></pre>
80 * </p>
81 *
82 * @return The request associated with this result. Never {@code null}.
83 */
84 public CaptureRequest getRequest() {
85 return mRequest;
86 }
87
88 /**
89 * Get the frame number associated with this result.
90 *
91 * <p>Whenever a request has been processed, regardless of failure or success,
92 * it gets a unique frame number assigned to its future result/failure.</p>
93 *
94 * <p>This value monotonically increments, starting with 0,
95 * for every new result or failure; and the scope is the lifetime of the
96 * {@link CameraDevice}.</p>
97 *
98 * @return int frame number
99 */
100 public int getFrameNumber() {
101 return get(REQUEST_FRAME_COUNT);
102 }
103
104 /**
105 * The sequence ID for this failure that was returned by the
106 * {@link CameraDevice#capture} family of functions.
107 *
108 * <p>The sequence ID is a unique monotonically increasing value starting from 0,
109 * incremented every time a new group of requests is submitted to the CameraDevice.</p>
110 *
111 * @return int The ID for the sequence of requests that this capture result is a part of
112 *
113 * @see CameraDevice.CaptureListener#onCaptureSequenceCompleted
114 */
115 public int getSequenceId() {
116 return mSequenceId;
117 }
118
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700119 /*@O~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~
120 * The key entries below this point are generated from metadata
121 * definitions in /system/media/camera/docs. Do not modify by hand or
122 * modify the comment blocks at the start or end.
123 *~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~*/
124
125 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800126 * <p>A color transform matrix to use to transform
127 * from sensor RGB color space to output linear sRGB color space</p>
128 * <p>This matrix is either set by HAL when the request
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700129 * android.colorCorrection.mode is not TRANSFORM_MATRIX, or
130 * directly by the application in the request when the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800131 * android.colorCorrection.mode is TRANSFORM_MATRIX.</p>
132 * <p>In the latter case, the HAL may round the matrix to account
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700133 * for precision issues; the final rounded matrix should be
Igor Murashkinace5bf02013-12-10 17:36:40 -0800134 * reported back in this matrix result metadata.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700135 */
136 public static final Key<Rational[]> COLOR_CORRECTION_TRANSFORM =
137 new Key<Rational[]>("android.colorCorrection.transform", Rational[].class);
138
139 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800140 * <p>Gains applying to Bayer color channels for
141 * white-balance</p>
142 * <p>The 4-channel white-balance gains are defined in
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700143 * the order of [R G_even G_odd B], where G_even is the gain
144 * for green pixels on even rows of the output, and G_odd
145 * is the gain for greenpixels on the odd rows. if a HAL
146 * does not support a separate gain for even/odd green channels,
147 * it should use the G_even value,and write G_odd equal to
Igor Murashkinace5bf02013-12-10 17:36:40 -0800148 * G_even in the output result metadata.</p>
149 * <p>This array is either set by HAL when the request
Igor Murashkind5ff06a2013-08-20 15:15:06 -0700150 * android.colorCorrection.mode is not TRANSFORM_MATRIX, or
151 * directly by the application in the request when the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800152 * android.colorCorrection.mode is TRANSFORM_MATRIX.</p>
153 * <p>The ouput should be the gains actually applied by the HAL to
154 * the current frame.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700155 */
156 public static final Key<float[]> COLOR_CORRECTION_GAINS =
157 new Key<float[]>("android.colorCorrection.gains", float[].class);
158
159 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800160 * <p>The ID sent with the latest
161 * CAMERA2_TRIGGER_PRECAPTURE_METERING call</p>
162 * <p>Must be 0 if no
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700163 * CAMERA2_TRIGGER_PRECAPTURE_METERING trigger received yet
164 * by HAL. Always updated even if AE algorithm ignores the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800165 * trigger</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700166 *
167 * @hide
168 */
169 public static final Key<Integer> CONTROL_AE_PRECAPTURE_ID =
170 new Key<Integer>("android.control.aePrecaptureId", int.class);
171
172 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800173 * <p>List of areas to use for
174 * metering</p>
175 * <p>Each area is a rectangle plus weight: xmin, ymin,
Timothy Knight2629f272013-09-03 17:23:23 -0700176 * xmax, ymax, weight. The rectangle is defined inclusive of the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800177 * specified coordinates.</p>
178 * <p>The coordinate system is based on the active pixel array,
Timothy Knight2629f272013-09-03 17:23:23 -0700179 * with (0,0) being the top-left pixel in the active pixel array, and
180 * (android.sensor.info.activeArraySize.width - 1,
181 * android.sensor.info.activeArraySize.height - 1) being the
182 * bottom-right pixel in the active pixel array. The weight
Igor Murashkinace5bf02013-12-10 17:36:40 -0800183 * should be nonnegative.</p>
184 * <p>If all regions have 0 weight, then no specific metering area
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700185 * needs to be used by the HAL. If the metering region is
186 * outside the current android.scaler.cropRegion, the HAL
187 * should ignore the sections outside the region and output the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800188 * used sections in the frame metadata</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700189 */
190 public static final Key<int[]> CONTROL_AE_REGIONS =
191 new Key<int[]>("android.control.aeRegions", int[].class);
192
193 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800194 * <p>Current state of AE algorithm</p>
195 * <p>Whenever the AE algorithm state changes, a
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700196 * MSG_AUTOEXPOSURE notification must be send if a
Igor Murashkinace5bf02013-12-10 17:36:40 -0800197 * notification callback is registered.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700198 * @see #CONTROL_AE_STATE_INACTIVE
199 * @see #CONTROL_AE_STATE_SEARCHING
200 * @see #CONTROL_AE_STATE_CONVERGED
201 * @see #CONTROL_AE_STATE_LOCKED
202 * @see #CONTROL_AE_STATE_FLASH_REQUIRED
203 * @see #CONTROL_AE_STATE_PRECAPTURE
204 */
205 public static final Key<Integer> CONTROL_AE_STATE =
206 new Key<Integer>("android.control.aeState", int.class);
207
208 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800209 * <p>Whether AF is currently enabled, and what
210 * mode it is set to</p>
Zhijun Hef3537422013-12-16 16:56:35 -0800211 * <p>Only effective if android.control.mode = AUTO.</p>
212 * <p>If lens is controlled by HAL auto-focus algorithm, the HAL should
213 * report the current AF status in android.control.afState in
214 * result metadata.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700215 * @see #CONTROL_AF_MODE_OFF
216 * @see #CONTROL_AF_MODE_AUTO
217 * @see #CONTROL_AF_MODE_MACRO
218 * @see #CONTROL_AF_MODE_CONTINUOUS_VIDEO
219 * @see #CONTROL_AF_MODE_CONTINUOUS_PICTURE
220 * @see #CONTROL_AF_MODE_EDOF
221 */
222 public static final Key<Integer> CONTROL_AF_MODE =
223 new Key<Integer>("android.control.afMode", int.class);
224
225 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800226 * <p>List of areas to use for focus
227 * estimation</p>
228 * <p>Each area is a rectangle plus weight: xmin, ymin,
Timothy Knight2629f272013-09-03 17:23:23 -0700229 * xmax, ymax, weight. The rectangle is defined inclusive of the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800230 * specified coordinates.</p>
231 * <p>The coordinate system is based on the active pixel array,
Timothy Knight2629f272013-09-03 17:23:23 -0700232 * with (0,0) being the top-left pixel in the active pixel array, and
233 * (android.sensor.info.activeArraySize.width - 1,
234 * android.sensor.info.activeArraySize.height - 1) being the
235 * bottom-right pixel in the active pixel array. The weight
Igor Murashkinace5bf02013-12-10 17:36:40 -0800236 * should be nonnegative.</p>
237 * <p>If all regions have 0 weight, then no specific focus area
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700238 * needs to be used by the HAL. If the focusing region is
239 * outside the current android.scaler.cropRegion, the HAL
240 * should ignore the sections outside the region and output the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800241 * used sections in the frame metadata</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700242 */
243 public static final Key<int[]> CONTROL_AF_REGIONS =
244 new Key<int[]>("android.control.afRegions", int[].class);
245
246 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800247 * <p>Current state of AF algorithm</p>
248 * <p>Whenever the AF algorithm state changes, a
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700249 * MSG_AUTOFOCUS notification must be send if a notification
Igor Murashkinace5bf02013-12-10 17:36:40 -0800250 * callback is registered.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700251 * @see #CONTROL_AF_STATE_INACTIVE
252 * @see #CONTROL_AF_STATE_PASSIVE_SCAN
253 * @see #CONTROL_AF_STATE_PASSIVE_FOCUSED
254 * @see #CONTROL_AF_STATE_ACTIVE_SCAN
255 * @see #CONTROL_AF_STATE_FOCUSED_LOCKED
256 * @see #CONTROL_AF_STATE_NOT_FOCUSED_LOCKED
Eino-Ville Talvala9f880f72013-09-20 17:50:41 -0700257 * @see #CONTROL_AF_STATE_PASSIVE_UNFOCUSED
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700258 */
259 public static final Key<Integer> CONTROL_AF_STATE =
260 new Key<Integer>("android.control.afState", int.class);
261
262 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800263 * <p>The ID sent with the latest
264 * CAMERA2_TRIGGER_AUTOFOCUS call</p>
265 * <p>Must be 0 if no CAMERA2_TRIGGER_AUTOFOCUS trigger
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700266 * received yet by HAL. Always updated even if AF algorithm
Igor Murashkinace5bf02013-12-10 17:36:40 -0800267 * ignores the trigger</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700268 *
269 * @hide
270 */
271 public static final Key<Integer> CONTROL_AF_TRIGGER_ID =
272 new Key<Integer>("android.control.afTriggerId", int.class);
273
274 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800275 * <p>Whether AWB is currently setting the color
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700276 * transform fields, and what its illumination target
Igor Murashkinace5bf02013-12-10 17:36:40 -0800277 * is</p>
278 * <p>[BC - AWB lock,AWB modes]</p>
Zhijun Hef3537422013-12-16 16:56:35 -0800279 * <p>Only effective if android.control.mode = AUTO.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700280 * @see #CONTROL_AWB_MODE_OFF
281 * @see #CONTROL_AWB_MODE_AUTO
282 * @see #CONTROL_AWB_MODE_INCANDESCENT
283 * @see #CONTROL_AWB_MODE_FLUORESCENT
284 * @see #CONTROL_AWB_MODE_WARM_FLUORESCENT
285 * @see #CONTROL_AWB_MODE_DAYLIGHT
286 * @see #CONTROL_AWB_MODE_CLOUDY_DAYLIGHT
287 * @see #CONTROL_AWB_MODE_TWILIGHT
288 * @see #CONTROL_AWB_MODE_SHADE
289 */
290 public static final Key<Integer> CONTROL_AWB_MODE =
291 new Key<Integer>("android.control.awbMode", int.class);
292
293 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800294 * <p>List of areas to use for illuminant
295 * estimation</p>
296 * <p>Only used in AUTO mode.</p>
297 * <p>Each area is a rectangle plus weight: xmin, ymin,
Timothy Knight2629f272013-09-03 17:23:23 -0700298 * xmax, ymax, weight. The rectangle is defined inclusive of the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800299 * specified coordinates.</p>
300 * <p>The coordinate system is based on the active pixel array,
Timothy Knight2629f272013-09-03 17:23:23 -0700301 * with (0,0) being the top-left pixel in the active pixel array, and
302 * (android.sensor.info.activeArraySize.width - 1,
303 * android.sensor.info.activeArraySize.height - 1) being the
304 * bottom-right pixel in the active pixel array. The weight
Igor Murashkinace5bf02013-12-10 17:36:40 -0800305 * should be nonnegative.</p>
306 * <p>If all regions have 0 weight, then no specific metering area
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700307 * needs to be used by the HAL. If the metering region is
308 * outside the current android.scaler.cropRegion, the HAL
309 * should ignore the sections outside the region and output the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800310 * used sections in the frame metadata</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700311 */
312 public static final Key<int[]> CONTROL_AWB_REGIONS =
313 new Key<int[]>("android.control.awbRegions", int[].class);
314
315 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800316 * <p>Current state of AWB algorithm</p>
317 * <p>Whenever the AWB algorithm state changes, a
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700318 * MSG_AUTOWHITEBALANCE notification must be send if a
Igor Murashkinace5bf02013-12-10 17:36:40 -0800319 * notification callback is registered.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700320 * @see #CONTROL_AWB_STATE_INACTIVE
321 * @see #CONTROL_AWB_STATE_SEARCHING
322 * @see #CONTROL_AWB_STATE_CONVERGED
323 * @see #CONTROL_AWB_STATE_LOCKED
324 */
325 public static final Key<Integer> CONTROL_AWB_STATE =
326 new Key<Integer>("android.control.awbState", int.class);
327
328 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800329 * <p>Overall mode of 3A control
330 * routines</p>
Zhijun Hef3537422013-12-16 16:56:35 -0800331 * <p>High-level 3A control. When set to OFF, all 3A control
332 * by the HAL is disabled. The application must set the fields for
333 * capture parameters itself.</p>
334 * <p>When set to AUTO, the individual algorithm controls in
335 * android.control.* are in effect, such as android.control.afMode.</p>
336 * <p>When set to USE_SCENE_MODE, the individual controls in
337 * android.control.* are mostly disabled, and the HAL implements
338 * one of the scene mode settings (such as ACTION, SUNSET, or PARTY)
339 * as it wishes. The HAL scene mode 3A settings are provided by
340 * android.control.sceneModeOverrides.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700341 * @see #CONTROL_MODE_OFF
342 * @see #CONTROL_MODE_AUTO
343 * @see #CONTROL_MODE_USE_SCENE_MODE
344 */
345 public static final Key<Integer> CONTROL_MODE =
346 new Key<Integer>("android.control.mode", int.class);
347
348 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800349 * <p>Operation mode for edge
350 * enhancement</p>
Zhijun He28079362013-12-17 10:35:40 -0800351 * <p>Edge/sharpness/detail enhancement. OFF means no
352 * enhancement will be applied by the HAL.</p>
353 * <p>FAST/HIGH_QUALITY both mean HAL-determined enhancement
354 * will be applied. HIGH_QUALITY mode indicates that the
355 * HAL should use the highest-quality enhancement algorithms,
356 * even if it slows down capture rate. FAST means the HAL should
357 * not slow down capture rate when applying edge enhancement.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700358 * @see #EDGE_MODE_OFF
359 * @see #EDGE_MODE_FAST
360 * @see #EDGE_MODE_HIGH_QUALITY
361 */
362 public static final Key<Integer> EDGE_MODE =
363 new Key<Integer>("android.edge.mode", int.class);
364
365 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800366 * <p>Select flash operation mode</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700367 * @see #FLASH_MODE_OFF
368 * @see #FLASH_MODE_SINGLE
369 * @see #FLASH_MODE_TORCH
370 */
371 public static final Key<Integer> FLASH_MODE =
372 new Key<Integer>("android.flash.mode", int.class);
373
374 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800375 * <p>Current state of the flash
376 * unit</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700377 * @see #FLASH_STATE_UNAVAILABLE
378 * @see #FLASH_STATE_CHARGING
379 * @see #FLASH_STATE_READY
380 * @see #FLASH_STATE_FIRED
381 */
382 public static final Key<Integer> FLASH_STATE =
383 new Key<Integer>("android.flash.state", int.class);
384
385 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800386 * <p>GPS coordinates to include in output JPEG
387 * EXIF</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700388 */
389 public static final Key<double[]> JPEG_GPS_COORDINATES =
390 new Key<double[]>("android.jpeg.gpsCoordinates", double[].class);
391
392 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800393 * <p>32 characters describing GPS algorithm to
394 * include in EXIF</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700395 */
396 public static final Key<String> JPEG_GPS_PROCESSING_METHOD =
397 new Key<String>("android.jpeg.gpsProcessingMethod", String.class);
398
399 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800400 * <p>Time GPS fix was made to include in
401 * EXIF</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700402 */
403 public static final Key<Long> JPEG_GPS_TIMESTAMP =
404 new Key<Long>("android.jpeg.gpsTimestamp", long.class);
405
406 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800407 * <p>Orientation of JPEG image to
408 * write</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700409 */
410 public static final Key<Integer> JPEG_ORIENTATION =
411 new Key<Integer>("android.jpeg.orientation", int.class);
412
413 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800414 * <p>Compression quality of the final JPEG
415 * image</p>
416 * <p>85-95 is typical usage range</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700417 */
418 public static final Key<Byte> JPEG_QUALITY =
419 new Key<Byte>("android.jpeg.quality", byte.class);
420
421 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800422 * <p>Compression quality of JPEG
423 * thumbnail</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700424 */
425 public static final Key<Byte> JPEG_THUMBNAIL_QUALITY =
426 new Key<Byte>("android.jpeg.thumbnailQuality", byte.class);
427
428 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800429 * <p>Resolution of embedded JPEG
430 * thumbnail</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700431 */
432 public static final Key<android.hardware.camera2.Size> JPEG_THUMBNAIL_SIZE =
433 new Key<android.hardware.camera2.Size>("android.jpeg.thumbnailSize", android.hardware.camera2.Size.class);
434
435 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800436 * <p>Size of the lens aperture</p>
437 * <p>Will not be supported on most devices. Can only
438 * pick from supported list</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700439 */
440 public static final Key<Float> LENS_APERTURE =
441 new Key<Float>("android.lens.aperture", float.class);
442
443 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800444 * <p>State of lens neutral density
445 * filter(s)</p>
446 * <p>Will not be supported on most devices. Can only
447 * pick from supported list</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700448 */
449 public static final Key<Float> LENS_FILTER_DENSITY =
450 new Key<Float>("android.lens.filterDensity", float.class);
451
452 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800453 * <p>Lens optical zoom setting</p>
454 * <p>Will not be supported on most devices.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700455 */
456 public static final Key<Float> LENS_FOCAL_LENGTH =
457 new Key<Float>("android.lens.focalLength", float.class);
458
459 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800460 * <p>Distance to plane of sharpest focus,
461 * measured from frontmost surface of the lens</p>
462 * <p>Should be zero for fixed-focus cameras</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700463 */
464 public static final Key<Float> LENS_FOCUS_DISTANCE =
465 new Key<Float>("android.lens.focusDistance", float.class);
466
467 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800468 * <p>The range of scene distances that are in
469 * sharp focus (depth of field)</p>
470 * <p>If variable focus not supported, can still report
471 * fixed depth of field range</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700472 */
Zhijun Hec59b0782013-09-26 10:39:36 -0700473 public static final Key<float[]> LENS_FOCUS_RANGE =
474 new Key<float[]>("android.lens.focusRange", float[].class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700475
476 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800477 * <p>Whether optical image stabilization is
478 * enabled.</p>
479 * <p>Will not be supported on most devices.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700480 * @see #LENS_OPTICAL_STABILIZATION_MODE_OFF
481 * @see #LENS_OPTICAL_STABILIZATION_MODE_ON
482 */
483 public static final Key<Integer> LENS_OPTICAL_STABILIZATION_MODE =
484 new Key<Integer>("android.lens.opticalStabilizationMode", int.class);
485
486 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800487 * <p>Current lens status</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700488 * @see #LENS_STATE_STATIONARY
Igor Murashkin9ea4ae62013-09-11 21:40:11 -0700489 * @see #LENS_STATE_MOVING
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700490 */
491 public static final Key<Integer> LENS_STATE =
492 new Key<Integer>("android.lens.state", int.class);
493
494 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800495 * <p>Mode of operation for the noise reduction
496 * algorithm</p>
Zhijun He28079362013-12-17 10:35:40 -0800497 * <p>Noise filtering control. OFF means no noise reduction
498 * will be applied by the HAL.</p>
499 * <p>FAST/HIGH_QUALITY both mean HAL-determined noise filtering
500 * will be applied. HIGH_QUALITY mode indicates that the HAL
501 * should use the highest-quality noise filtering algorithms,
502 * even if it slows down capture rate. FAST means the HAL should not
503 * slow down capture rate when applying noise filtering.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700504 * @see #NOISE_REDUCTION_MODE_OFF
505 * @see #NOISE_REDUCTION_MODE_FAST
506 * @see #NOISE_REDUCTION_MODE_HIGH_QUALITY
507 */
508 public static final Key<Integer> NOISE_REDUCTION_MODE =
509 new Key<Integer>("android.noiseReduction.mode", int.class);
510
511 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800512 * <p>Whether a result given to the framework is the
Eino-Ville Talvala7a313102013-11-07 14:45:06 -0800513 * final one for the capture, or only a partial that contains a
514 * subset of the full set of dynamic metadata
Igor Murashkinace5bf02013-12-10 17:36:40 -0800515 * values.</p>
516 * <p>The entries in the result metadata buffers for a
Eino-Ville Talvala7a313102013-11-07 14:45:06 -0800517 * single capture may not overlap, except for this entry. The
518 * FINAL buffers must retain FIFO ordering relative to the
519 * requests that generate them, so the FINAL buffer for frame 3 must
520 * always be sent to the framework after the FINAL buffer for frame 2, and
521 * before the FINAL buffer for frame 4. PARTIAL buffers may be returned
522 * in any order relative to other frames, but all PARTIAL buffers for a given
523 * capture must arrive before the FINAL buffer for that capture. This entry may
Igor Murashkinace5bf02013-12-10 17:36:40 -0800524 * only be used by the HAL if quirks.usePartialResult is set to 1.</p>
Eino-Ville Talvala7a313102013-11-07 14:45:06 -0800525 *
526 * <b>Optional</b> - This value may be null on some devices.
527 *
528 * @hide
529 */
530 public static final Key<Boolean> QUIRKS_PARTIAL_RESULT =
531 new Key<Boolean>("android.quirks.partialResult", boolean.class);
532
533 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800534 * <p>A frame counter set by the framework. This value monotonically
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700535 * increases with every new result (that is, each new result has a unique
Igor Murashkinace5bf02013-12-10 17:36:40 -0800536 * frameCount value).</p>
537 * <p>Reset on release()</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700538 */
539 public static final Key<Integer> REQUEST_FRAME_COUNT =
540 new Key<Integer>("android.request.frameCount", int.class);
541
542 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800543 * <p>An application-specified ID for the current
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700544 * request. Must be maintained unchanged in output
Igor Murashkinace5bf02013-12-10 17:36:40 -0800545 * frame</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700546 *
547 * @hide
548 */
549 public static final Key<Integer> REQUEST_ID =
550 new Key<Integer>("android.request.id", int.class);
551
552 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800553 * <p>(x, y, width, height).</p>
554 * <p>A rectangle with the top-level corner of (x,y) and size
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700555 * (width, height). The region of the sensor that is used for
556 * output. Each stream must use this rectangle to produce its
557 * output, cropping to a smaller region if necessary to
Igor Murashkinace5bf02013-12-10 17:36:40 -0800558 * maintain the stream's aspect ratio.</p>
559 * <p>HAL2.x uses only (x, y, width)</p>
560 * <p>Any additional per-stream cropping must be done to
561 * maximize the final pixel area of the stream.</p>
562 * <p>For example, if the crop region is set to a 4:3 aspect
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700563 * ratio, then 4:3 streams should use the exact crop
564 * region. 16:9 streams should further crop vertically
Igor Murashkinace5bf02013-12-10 17:36:40 -0800565 * (letterbox).</p>
566 * <p>Conversely, if the crop region is set to a 16:9, then 4:3
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700567 * outputs should crop horizontally (pillarbox), and 16:9
568 * streams should match exactly. These additional crops must
Igor Murashkinace5bf02013-12-10 17:36:40 -0800569 * be centered within the crop region.</p>
570 * <p>The output streams must maintain square pixels at all
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700571 * times, no matter what the relative aspect ratios of the
572 * crop region and the stream are. Negative values for
573 * corner are allowed for raw output if full pixel array is
574 * larger than active pixel array. Width and height may be
575 * rounded to nearest larger supportable width, especially
576 * for raw output, where only a few fixed scales may be
577 * possible. The width and height of the crop region cannot
578 * be set to be smaller than floor( activeArraySize.width /
579 * android.scaler.maxDigitalZoom ) and floor(
580 * activeArraySize.height / android.scaler.maxDigitalZoom),
Igor Murashkinace5bf02013-12-10 17:36:40 -0800581 * respectively.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700582 */
583 public static final Key<android.graphics.Rect> SCALER_CROP_REGION =
584 new Key<android.graphics.Rect>("android.scaler.cropRegion", android.graphics.Rect.class);
585
586 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800587 * <p>Duration each pixel is exposed to
588 * light.</p>
589 * <p>If the sensor can't expose this exact duration, it should shorten the
590 * duration exposed to the nearest possible value (rather than expose longer).</p>
591 * <p>1/10000 - 30 sec range. No bulb mode</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700592 */
593 public static final Key<Long> SENSOR_EXPOSURE_TIME =
594 new Key<Long>("android.sensor.exposureTime", long.class);
595
596 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800597 * <p>Duration from start of frame exposure to
598 * start of next frame exposure</p>
599 * <p>Exposure time has priority, so duration is set to
600 * max(duration, exposure time + overhead)</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700601 */
602 public static final Key<Long> SENSOR_FRAME_DURATION =
603 new Key<Long>("android.sensor.frameDuration", long.class);
604
605 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800606 * <p>Gain applied to image data. Must be
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700607 * implemented through analog gain only if set to values
Igor Murashkinace5bf02013-12-10 17:36:40 -0800608 * below 'maximum analog sensitivity'.</p>
609 * <p>If the sensor can't apply this exact gain, it should lessen the
610 * gain to the nearest possible value (rather than gain more).</p>
611 * <p>ISO 12232:2006 REI method</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700612 */
613 public static final Key<Integer> SENSOR_SENSITIVITY =
614 new Key<Integer>("android.sensor.sensitivity", int.class);
615
616 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800617 * <p>Time at start of exposure of first
618 * row</p>
619 * <p>Monotonic, should be synced to other timestamps in
620 * system</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700621 */
622 public static final Key<Long> SENSOR_TIMESTAMP =
623 new Key<Long>("android.sensor.timestamp", long.class);
624
625 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800626 * <p>The temperature of the sensor, sampled at the time
627 * exposure began for this frame.</p>
628 * <p>The thermal diode being queried should be inside the sensor PCB, or
629 * somewhere close to it.</p>
Alex Raye83c4eb2013-10-02 17:14:36 -0700630 *
631 * <b>Optional</b> - This value may be null on some devices.
632 *
633 * <b>{@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL}</b> -
634 * Present on all devices that report being FULL level hardware devices in the
635 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL HARDWARE_LEVEL} key.
Igor Murashkind5ff06a2013-08-20 15:15:06 -0700636 */
637 public static final Key<Float> SENSOR_TEMPERATURE =
638 new Key<Float>("android.sensor.temperature", float.class);
639
640 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800641 * <p>State of the face detector
642 * unit</p>
643 * <p>Whether face detection is enabled, and whether it
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700644 * should output just the basic fields or the full set of
645 * fields. Value must be one of the
Igor Murashkinace5bf02013-12-10 17:36:40 -0800646 * android.statistics.info.availableFaceDetectModes.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700647 * @see #STATISTICS_FACE_DETECT_MODE_OFF
648 * @see #STATISTICS_FACE_DETECT_MODE_SIMPLE
649 * @see #STATISTICS_FACE_DETECT_MODE_FULL
650 */
651 public static final Key<Integer> STATISTICS_FACE_DETECT_MODE =
652 new Key<Integer>("android.statistics.faceDetectMode", int.class);
653
654 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800655 * <p>List of unique IDs for detected
656 * faces</p>
657 * <p>Only available if faceDetectMode == FULL</p>
Zhijun He7f80d6f2013-11-04 10:18:05 -0800658 *
659 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700660 */
661 public static final Key<int[]> STATISTICS_FACE_IDS =
662 new Key<int[]>("android.statistics.faceIds", int[].class);
663
664 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800665 * <p>List of landmarks for detected
666 * faces</p>
667 * <p>Only available if faceDetectMode == FULL</p>
Zhijun He7f80d6f2013-11-04 10:18:05 -0800668 *
669 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700670 */
671 public static final Key<int[]> STATISTICS_FACE_LANDMARKS =
672 new Key<int[]>("android.statistics.faceLandmarks", int[].class);
673
674 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800675 * <p>List of the bounding rectangles for detected
676 * faces</p>
677 * <p>Only available if faceDetectMode != OFF</p>
Zhijun He7f80d6f2013-11-04 10:18:05 -0800678 *
679 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700680 */
681 public static final Key<android.graphics.Rect[]> STATISTICS_FACE_RECTANGLES =
682 new Key<android.graphics.Rect[]>("android.statistics.faceRectangles", android.graphics.Rect[].class);
683
684 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800685 * <p>List of the face confidence scores for
686 * detected faces</p>
687 * <p>Only available if faceDetectMode != OFF. The value should be
688 * meaningful (for example, setting 100 at all times is illegal).</p>
Zhijun He7f80d6f2013-11-04 10:18:05 -0800689 *
690 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700691 */
692 public static final Key<byte[]> STATISTICS_FACE_SCORES =
693 new Key<byte[]>("android.statistics.faceScores", byte[].class);
694
695 /**
Igor Murashkin7a9b30e2013-12-11 13:31:38 -0800696 * <p>The shading map is a low-resolution floating-point map
697 * that lists the coefficients used to correct for vignetting, for each
698 * Bayer color channel.</p>
699 * <p>The least shaded section of the image should have a gain factor
700 * of 1; all other sections should have gains above 1.</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -0800701 * <p>When android.colorCorrection.mode = TRANSFORM_MATRIX, the map
702 * must take into account the colorCorrection settings.</p>
Igor Murashkin7a9b30e2013-12-11 13:31:38 -0800703 * <p>The shading map is for the entire active pixel array, and is not
704 * affected by the crop region specified in the request. Each shading map
705 * entry is the value of the shading compensation map over a specific
706 * pixel on the sensor. Specifically, with a (N x M) resolution shading
707 * map, and an active pixel array size (W x H), shading map entry
708 * (x,y) ϵ (0 ... N-1, 0 ... M-1) is the value of the shading map at
709 * pixel ( ((W-1)/(N-1)) * x, ((H-1)/(M-1)) * y) for the four color channels.
710 * The map is assumed to be bilinearly interpolated between the sample points.</p>
711 * <p>The channel order is [R, Geven, Godd, B], where Geven is the green
712 * channel for the even rows of a Bayer pattern, and Godd is the odd rows.
713 * The shading map is stored in a fully interleaved format, and its size
714 * is provided in the camera static metadata by android.lens.info.shadingMapSize.</p>
715 * <p>The shading map should have on the order of 30-40 rows and columns,
716 * and must be smaller than 64x64.</p>
717 * <p>As an example, given a very small map defined as:</p>
718 * <pre><code>android.lens.info.shadingMapSize = [ 4, 3 ]
719 * android.statistics.lensShadingMap =
720 * [ 1.3, 1.2, 1.15, 1.2, 1.2, 1.2, 1.15, 1.2,
721 * 1.1, 1.2, 1.2, 1.2, 1.3, 1.2, 1.3, 1.3,
722 * 1.2, 1.2, 1.25, 1.1, 1.1, 1.1, 1.1, 1.0,
723 * 1.0, 1.0, 1.0, 1.0, 1.2, 1.3, 1.25, 1.2,
724 * 1.3, 1.2, 1.2, 1.3, 1.2, 1.15, 1.1, 1.2,
725 * 1.2, 1.1, 1.0, 1.2, 1.3, 1.15, 1.2, 1.3 ]
726 * </code></pre>
727 * <p>The low-resolution scaling map images for each channel are
728 * (displayed using nearest-neighbor interpolation):</p>
729 * <p><img alt="Red lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/red_shading.png" />
730 * <img alt="Green (even rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_e_shading.png" />
731 * <img alt="Green (odd rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_o_shading.png" />
732 * <img alt="Blue lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/blue_shading.png" /></p>
733 * <p>As a visualization only, inverting the full-color map to recover an
734 * image of a gray wall (using bicubic interpolation for visual quality) as captured by the sensor gives:</p>
735 * <p><img alt="Image of a uniform white wall (inverse shading map)" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/inv_shading.png" /></p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700736 */
737 public static final Key<float[]> STATISTICS_LENS_SHADING_MAP =
738 new Key<float[]>("android.statistics.lensShadingMap", float[].class);
739
740 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800741 * <p>The best-fit color channel gains calculated
742 * by the HAL's statistics units for the current output frame</p>
743 * <p>This may be different than the gains used for this frame,
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700744 * since statistics processing on data from a new frame
745 * typically completes after the transform has already been
Igor Murashkinace5bf02013-12-10 17:36:40 -0800746 * applied to that frame.</p>
747 * <p>The 4 channel gains are defined in Bayer domain,
748 * see android.colorCorrection.gains for details.</p>
749 * <p>This value should always be calculated by the AWB block,
750 * regardless of the android.control.* current values.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700751 */
752 public static final Key<float[]> STATISTICS_PREDICTED_COLOR_GAINS =
753 new Key<float[]>("android.statistics.predictedColorGains", float[].class);
754
755 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800756 * <p>The best-fit color transform matrix estimate
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700757 * calculated by the HAL's statistics units for the current
Igor Murashkinace5bf02013-12-10 17:36:40 -0800758 * output frame</p>
759 * <p>The HAL must provide the estimate from its
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700760 * statistics unit on the white balance transforms to use
761 * for the next frame. These are the values the HAL believes
762 * are the best fit for the current output frame. This may
763 * be different than the transform used for this frame, since
764 * statistics processing on data from a new frame typically
765 * completes after the transform has already been applied to
Igor Murashkinace5bf02013-12-10 17:36:40 -0800766 * that frame.</p>
767 * <p>These estimates must be provided for all frames, even if
768 * capture settings and color transforms are set by the application.</p>
769 * <p>This value should always be calculated by the AWB block,
770 * regardless of the android.control.* current values.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700771 */
772 public static final Key<Rational[]> STATISTICS_PREDICTED_COLOR_TRANSFORM =
773 new Key<Rational[]>("android.statistics.predictedColorTransform", Rational[].class);
774
775 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800776 * <p>The HAL estimated scene illumination lighting
777 * frequency</p>
778 * <p>Report NONE if there doesn't appear to be flickering
779 * illumination</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700780 * @see #STATISTICS_SCENE_FLICKER_NONE
781 * @see #STATISTICS_SCENE_FLICKER_50HZ
782 * @see #STATISTICS_SCENE_FLICKER_60HZ
783 */
784 public static final Key<Integer> STATISTICS_SCENE_FLICKER =
785 new Key<Integer>("android.statistics.sceneFlicker", int.class);
786
787 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800788 * <p>Table mapping blue input values to output
789 * values</p>
790 * <p>Tonemapping / contrast / gamma curve for the blue
791 * channel, to use when android.tonemap.mode is CONTRAST_CURVE.</p>
792 * <p>See android.tonemap.curveRed for more details.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700793 */
Zhijun He3ffd7052013-08-19 15:45:08 -0700794 public static final Key<float[]> TONEMAP_CURVE_BLUE =
795 new Key<float[]>("android.tonemap.curveBlue", float[].class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700796
797 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800798 * <p>Table mapping green input values to output
799 * values</p>
800 * <p>Tonemapping / contrast / gamma curve for the green
801 * channel, to use when android.tonemap.mode is CONTRAST_CURVE.</p>
802 * <p>See android.tonemap.curveRed for more details.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700803 */
Zhijun He3ffd7052013-08-19 15:45:08 -0700804 public static final Key<float[]> TONEMAP_CURVE_GREEN =
805 new Key<float[]>("android.tonemap.curveGreen", float[].class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700806
807 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800808 * <p>Table mapping red input values to output
809 * values</p>
810 * <p>Tonemapping / contrast / gamma curve for the red
811 * channel, to use when android.tonemap.mode is CONTRAST_CURVE.</p>
812 * <p>Since the input and output ranges may vary depending on
Zhijun He3ffd7052013-08-19 15:45:08 -0700813 * the camera pipeline, the input and output pixel values
814 * are represented by normalized floating-point values
Igor Murashkinace5bf02013-12-10 17:36:40 -0800815 * between 0 and 1, with 0 == black and 1 == white.</p>
816 * <p>The curve should be linearly interpolated between the
Zhijun He3ffd7052013-08-19 15:45:08 -0700817 * defined points. The points will be listed in increasing
818 * order of P_IN. For example, if the array is: [0.0, 0.0,
Igor Murashkinace5bf02013-12-10 17:36:40 -0800819 * 0.3, 0.5, 1.0, 1.0], then the input-&gt;output mapping
820 * for a few sample points would be: 0 -&gt; 0, 0.15 -&gt;
821 * 0.25, 0.3 -&gt; 0.5, 0.5 -&gt; 0.64</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700822 */
823 public static final Key<float[]> TONEMAP_CURVE_RED =
824 new Key<float[]>("android.tonemap.curveRed", float[].class);
825
826 /**
827 * @see #TONEMAP_MODE_CONTRAST_CURVE
828 * @see #TONEMAP_MODE_FAST
829 * @see #TONEMAP_MODE_HIGH_QUALITY
830 */
831 public static final Key<Integer> TONEMAP_MODE =
832 new Key<Integer>("android.tonemap.mode", int.class);
833
834 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800835 * <p>This LED is nominally used to indicate to the user
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700836 * that the camera is powered on and may be streaming images back to the
837 * Application Processor. In certain rare circumstances, the OS may
838 * disable this when video is processed locally and not transmitted to
Igor Murashkinace5bf02013-12-10 17:36:40 -0800839 * any untrusted applications.</p>
840 * <p>In particular, the LED <em>must</em> always be on when the data could be
841 * transmitted off the device. The LED <em>should</em> always be on whenever
842 * data is stored locally on the device.</p>
843 * <p>The LED <em>may</em> be off if a trusted application is using the data that
844 * doesn't violate the above rules.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700845 *
846 * @hide
847 */
848 public static final Key<Boolean> LED_TRANSMIT =
849 new Key<Boolean>("android.led.transmit", boolean.class);
850
851 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800852 * <p>Whether black-level compensation is locked
Eino-Ville Talvala0956af52013-12-26 13:19:10 -0800853 * to its current values, or is free to vary.</p>
854 * <p>Whether the black level offset was locked for this frame. Should be
855 * ON if android.blackLevel.lock was ON in the capture request, unless
856 * a change in other capture settings forced the camera device to
857 * perform a black level reset.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700858 */
859 public static final Key<Boolean> BLACK_LEVEL_LOCK =
860 new Key<Boolean>("android.blackLevel.lock", boolean.class);
861
862 /*~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~
863 * End generated code
864 *~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~O@*/
Igor Murashkinb779ac12013-09-05 12:40:19 -0700865
866 /**
867 * <p>
868 * List of the {@link Face Faces} detected through camera face detection
869 * in this result.
870 * </p>
871 * <p>
872 * Only available if {@link #STATISTICS_FACE_DETECT_MODE} {@code !=}
873 * {@link CameraMetadata#STATISTICS_FACE_DETECT_MODE_OFF OFF}.
874 * </p>
875 *
876 * @see Face
877 */
878 public static final Key<Face[]> STATISTICS_FACES =
879 new Key<Face[]>("android.statistics.faces", Face[].class);
Eino-Ville Talvalab2675542012-12-12 13:29:45 -0800880}