blob: 03db10cd54f4ce4430909ceff660dbce2c0c9dbd [file] [log] [blame]
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001/*
Shuzhen Wangbf39eb52017-11-29 15:16:03 -08002 * Copyright (C) 2013-2018 The Android Open Source Project
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003 *
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
17#ifndef ANDROID_INCLUDE_CAMERA3_H
18#define ANDROID_INCLUDE_CAMERA3_H
19
Eino-Ville Talvala7effe0c2013-02-15 12:09:48 -080020#include <system/camera_metadata.h>
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080021#include "camera_common.h"
22
23/**
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -070024 * Camera device HAL 3.6[ CAMERA_DEVICE_API_VERSION_3_6 ]
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080025 *
Eino-Ville Talvalab5459832014-09-09 16:42:27 -070026 * This is the current recommended version of the camera device HAL.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080027 *
Eino-Ville Talvalab5459832014-09-09 16:42:27 -070028 * Supports the android.hardware.Camera API, and as of v3.2, the
Eino-Ville Talvalacd86b0d2016-03-06 17:08:40 -080029 * android.hardware.camera2 API as LIMITED or above hardware level.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080030 *
31 * Camera devices that support this version of the HAL must return
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -070032 * CAMERA_DEVICE_API_VERSION_3_6 in camera_device_t.common.version and in
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080033 * camera_info_t.device_version (from camera_module_t.get_camera_info).
34 *
Eino-Ville Talvalacd86b0d2016-03-06 17:08:40 -080035 * CAMERA_DEVICE_API_VERSION_3_3 and above:
36 * Camera modules that may contain version 3.3 or above devices must
37 * implement at least version 2.2 of the camera module interface (as defined
38 * by camera_module_t.common.module_api_version).
Zhijun Heebdf1282015-01-16 16:44:40 -080039 *
Ruben Brunk61cf9eb2014-01-14 15:27:58 -080040 * CAMERA_DEVICE_API_VERSION_3_2:
41 * Camera modules that may contain version 3.2 devices must implement at
42 * least version 2.2 of the camera module interface (as defined by
43 * camera_module_t.common.module_api_version).
44 *
45 * <= CAMERA_DEVICE_API_VERSION_3_1:
46 * Camera modules that may contain version 3.1 (or 3.0) devices must
47 * implement at least version 2.0 of the camera module interface
48 * (as defined by camera_module_t.common.module_api_version).
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080049 *
50 * See camera_common.h for more versioning details.
51 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -070052 * Documentation index:
53 * S1. Version history
54 * S2. Startup and operation sequencing
55 * S3. Operational modes
56 * S4. 3A modes and state machines
Eino-Ville Talvalab6059442013-04-29 15:26:16 -070057 * S5. Cropping
58 * S6. Error management
Zhijun He709e5872014-01-17 15:25:21 -080059 * S7. Key Performance Indicator (KPI) glossary
Zhijun Hebc358682014-01-23 14:42:54 -080060 * S8. Sample Use Cases
Ruben Brunk2d96c742014-03-18 13:39:17 -070061 * S9. Notes on Controls and Metadata
Zhijun Heebdf1282015-01-16 16:44:40 -080062 * S10. Reprocessing flow and controls
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -070063 */
64
65/**
66 * S1. Version history:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080067 *
68 * 1.0: Initial Android camera HAL (Android 4.0) [camera.h]:
69 *
70 * - Converted from C++ CameraHardwareInterface abstraction layer.
71 *
72 * - Supports android.hardware.Camera API.
73 *
74 * 2.0: Initial release of expanded-capability HAL (Android 4.2) [camera2.h]:
75 *
76 * - Sufficient for implementing existing android.hardware.Camera API.
77 *
78 * - Allows for ZSL queue in camera service layer
79 *
80 * - Not tested for any new features such manual capture control, Bayer RAW
81 * capture, reprocessing of RAW data.
82 *
83 * 3.0: First revision of expanded-capability HAL:
84 *
85 * - Major version change since the ABI is completely different. No change to
86 * the required hardware capabilities or operational model from 2.0.
87 *
88 * - Reworked input request and stream queue interfaces: Framework calls into
89 * HAL with next request and stream buffers already dequeued. Sync framework
90 * support is included, necessary for efficient implementations.
91 *
92 * - Moved triggers into requests, most notifications into results.
93 *
94 * - Consolidated all callbacks into framework into one structure, and all
95 * setup methods into a single initialize() call.
96 *
97 * - Made stream configuration into a single call to simplify stream
98 * management. Bidirectional streams replace STREAM_FROM_STREAM construct.
99 *
100 * - Limited mode semantics for older/limited hardware devices.
Alex Ray2ce219a2013-06-14 15:09:30 -0700101 *
102 * 3.1: Minor revision of expanded-capability HAL:
103 *
104 * - configure_streams passes consumer usage flags to the HAL.
Alex Ray5f2fd852013-06-24 11:28:05 -0700105 *
106 * - flush call to drop all in-flight requests/buffers as fast as possible.
Ruben Brunk61cf9eb2014-01-14 15:27:58 -0800107 *
108 * 3.2: Minor revision of expanded-capability HAL:
109 *
110 * - Deprecates get_metadata_vendor_tag_ops. Please use get_vendor_tag_ops
111 * in camera_common.h instead.
Igor Murashkin78aa1262014-01-09 16:23:43 -0800112 *
113 * - register_stream_buffers deprecated. All gralloc buffers provided
114 * by framework to HAL in process_capture_request may be new at any time.
Igor Murashkin5df2f622014-01-10 14:18:45 -0800115 *
116 * - add partial result support. process_capture_result may be called
117 * multiple times with a subset of the available result before the full
118 * result is available.
Zhijun Hebc358682014-01-23 14:42:54 -0800119 *
120 * - add manual template to camera3_request_template. The applications may
121 * use this template to control the capture settings directly.
122 *
123 * - Rework the bidirectional and input stream specifications.
124 *
Zhijun Heceac9e32014-02-05 20:49:45 -0800125 * - change the input buffer return path. The buffer is returned in
126 * process_capture_result instead of process_capture_request.
127 *
Zhijun Heebdf1282015-01-16 16:44:40 -0800128 * 3.3: Minor revision of expanded-capability HAL:
129 *
130 * - OPAQUE and YUV reprocessing API updates.
Eino-Ville Talvala453c7902015-03-06 13:22:03 -0800131 *
Yin-Chia Yehe0042082015-03-09 12:15:36 -0700132 * - Basic support for depth output buffers.
Eino-Ville Talvala453c7902015-03-06 13:22:03 -0800133 *
134 * - Addition of data_space field to camera3_stream_t.
135 *
Yin-Chia Yehe0042082015-03-09 12:15:36 -0700136 * - Addition of rotation field to camera3_stream_t.
137 *
Zhijun He21126b72015-05-22 18:12:28 -0700138 * - Addition of camera3 stream configuration operation mode to camera3_stream_configuration_t
139 *
Eino-Ville Talvalacd86b0d2016-03-06 17:08:40 -0800140 * 3.4: Minor additions to supported metadata and changes to data_space support
141 *
142 * - Add ANDROID_SENSOR_OPAQUE_RAW_SIZE static metadata as mandatory if
143 * RAW_OPAQUE format is supported.
144 *
145 * - Add ANDROID_CONTROL_POST_RAW_SENSITIVITY_BOOST_RANGE static metadata as
146 * mandatory if any RAW format is supported
147 *
148 * - Switch camera3_stream_t data_space field to a more flexible definition,
149 * using the version 0 definition of dataspace encoding.
150 *
151 * - General metadata additions which are available to use for HALv3.2 or
152 * newer:
153 * - ANDROID_INFO_SUPPORTED_HARDWARE_LEVEL_3
154 * - ANDROID_CONTROL_POST_RAW_SENSITIVITY_BOOST
155 * - ANDROID_CONTROL_POST_RAW_SENSITIVITY_BOOST_RANGE
156 * - ANDROID_SENSOR_DYNAMIC_BLACK_LEVEL
157 * - ANDROID_SENSOR_DYNAMIC_WHITE_LEVEL
158 * - ANDROID_SENSOR_OPAQUE_RAW_SIZE
159 * - ANDROID_SENSOR_OPTICAL_BLACK_REGIONS
Emilian Peeveec2ee92017-11-08 19:33:27 +0000160 *
Shuzhen Wangbf39eb52017-11-29 15:16:03 -0800161 * 3.5: Minor revisions to support session parameters and logical multi camera:
Emilian Peeveec2ee92017-11-08 19:33:27 +0000162 *
163 * - Add ANDROID_REQUEST_AVAILABLE_SESSION_KEYS static metadata, which is
164 * optional for implementations that want to support session parameters. If support is
165 * needed, then Hal should populate the list with all available capture request keys
166 * that can cause severe processing delays when modified by client. Typical examples
167 * include parameters that require time-consuming HW re-configuration or internal camera
168 * pipeline update.
169 *
170 * - Add a session parameter field to camera3_stream_configuration which can be populated
171 * by clients with initial values for the keys found in ANDROID_REQUEST_AVAILABLE_SESSION_KEYS.
Shuzhen Wangbf39eb52017-11-29 15:16:03 -0800172 *
173 * - Metadata additions for logical multi camera capability:
174 * - ANDROID_REQUEST_AVAILABLE_CAPABILITIES_LOGICAL_MULTI_CAMERA
175 * - ANDROID_LOGICAL_MULTI_CAMERA_PHYSICAL_IDS
176 * - ANDROID_LOGICAL_MULTI_CAMERA_SYNC_TYPE
177 *
178 * - Add physical camera id field in camera3_stream, so that for a logical
179 * multi camera, the application has the option to specify which physical camera
180 * a particular stream is configured on.
Emilian Peev92261ff2018-01-16 15:01:22 +0000181 *
182 * - Add physical camera id and settings field in camera3_capture_request, so that
183 * for a logical multi camera, the application has the option to specify individual
184 * settings for a particular physical device.
Eino-Ville Talvalacc1aa872018-01-22 13:30:52 -0800185 *
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -0700186 * 3.6: Minor revisions to support HAL buffer management APIs:
187 *
188 * - Add ANDROID_INFO_SUPPORTED_BUFFER_MANAGEMENT_VERSION static metadata, which allows HAL to
189 * opt in to the new buffer management APIs described below.
190 *
191 * - Add request_stream_buffers() and return_stream_buffers() to camera3_callback_ops_t for HAL to
192 * request and return output buffers from camera service.
193 *
194 * - Add signal_stream_flush() to camera3_device_ops_t for camera service to notify HAL an
195 * upcoming configure_streams() call requires HAL to return buffers of certain streams. Also add
196 * stream_configuration_counter to camera3_stream_configuration_t to address the potential
197 * race condition between signal_stream_flush() call and configure_streams() call.
198 *
Shuzhen Wangf43b5442019-01-24 16:32:31 -0800199 * - Add CAMERA3_JPEG_APP_SEGMENTS_BLOB_ID to support BLOB with only JPEG apps
200 * segments and thumbnail (without main image bitstream). Camera framework
201 * uses such stream togerther with a HAL YUV_420_888/IMPLEMENTATION_DEFINED
202 * stream to encode HEIC (ISO/IEC 23008-12) image.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800203 */
204
205/**
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700206 * S2. Startup and general expected operation sequence:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800207 *
208 * 1. Framework calls camera_module_t->common.open(), which returns a
209 * hardware_device_t structure.
210 *
211 * 2. Framework inspects the hardware_device_t->version field, and instantiates
212 * the appropriate handler for that version of the camera hardware device. In
213 * case the version is CAMERA_DEVICE_API_VERSION_3_0, the device is cast to
214 * a camera3_device_t.
215 *
216 * 3. Framework calls camera3_device_t->ops->initialize() with the framework
217 * callback function pointers. This will only be called this one time after
218 * open(), before any other functions in the ops structure are called.
219 *
220 * 4. The framework calls camera3_device_t->ops->configure_streams() with a list
221 * of input/output streams to the HAL device.
222 *
Igor Murashkin78aa1262014-01-09 16:23:43 -0800223 * 5. <= CAMERA_DEVICE_API_VERSION_3_1:
224 *
225 * The framework allocates gralloc buffers and calls
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800226 * camera3_device_t->ops->register_stream_buffers() for at least one of the
227 * output streams listed in configure_streams. The same stream is registered
228 * only once.
229 *
Igor Murashkin78aa1262014-01-09 16:23:43 -0800230 * >= CAMERA_DEVICE_API_VERSION_3_2:
231 *
232 * camera3_device_t->ops->register_stream_buffers() is not called and must
233 * be NULL.
234 *
235 * 6. The framework requests default settings for some number of use cases with
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800236 * calls to camera3_device_t->ops->construct_default_request_settings(). This
237 * may occur any time after step 3.
238 *
239 * 7. The framework constructs and sends the first capture request to the HAL,
240 * with settings based on one of the sets of default settings, and with at
241 * least one output stream, which has been registered earlier by the
242 * framework. This is sent to the HAL with
243 * camera3_device_t->ops->process_capture_request(). The HAL must block the
244 * return of this call until it is ready for the next request to be sent.
245 *
Igor Murashkin78aa1262014-01-09 16:23:43 -0800246 * >= CAMERA_DEVICE_API_VERSION_3_2:
247 *
248 * The buffer_handle_t provided in the camera3_stream_buffer_t array
249 * in the camera3_capture_request_t may be new and never-before-seen
250 * by the HAL on any given new request.
251 *
252 * 8. The framework continues to submit requests, and call
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800253 * construct_default_request_settings to get default settings buffers for
254 * other use cases.
255 *
Igor Murashkin78aa1262014-01-09 16:23:43 -0800256 * <= CAMERA_DEVICE_API_VERSION_3_1:
257 *
258 * The framework may call register_stream_buffers() at this time for
259 * not-yet-registered streams.
260 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800261 * 9. When the capture of a request begins (sensor starts exposing for the
Chien-Yu Chen73b49eb2015-05-28 17:13:05 -0700262 * capture) or processing a reprocess request begins, the HAL
263 * calls camera3_callback_ops_t->notify() with the SHUTTER event, including
264 * the frame number and the timestamp for start of exposure. For a reprocess
265 * request, the timestamp must be the start of exposure of the input image
266 * which can be looked up with android.sensor.timestamp from
267 * camera3_capture_request_t.settings when process_capture_request() is
268 * called.
Igor Murashkin5df2f622014-01-10 14:18:45 -0800269 *
270 * <= CAMERA_DEVICE_API_VERSION_3_1:
271 *
Eino-Ville Talvala71af1022013-04-22 14:19:21 -0700272 * This notify call must be made before the first call to
273 * process_capture_result() for that frame number.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800274 *
Igor Murashkin5df2f622014-01-10 14:18:45 -0800275 * >= CAMERA_DEVICE_API_VERSION_3_2:
276 *
277 * The camera3_callback_ops_t->notify() call with the SHUTTER event should
278 * be made as early as possible since the framework will be unable to
279 * deliver gralloc buffers to the application layer (for that frame) until
Chien-Yu Chen73b49eb2015-05-28 17:13:05 -0700280 * it has a valid timestamp for the start of exposure (or the input image's
281 * start of exposure for a reprocess request).
Igor Murashkin5df2f622014-01-10 14:18:45 -0800282 *
283 * Both partial metadata results and the gralloc buffers may be sent to the
284 * framework at any time before or after the SHUTTER event.
285 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800286 * 10. After some pipeline delay, the HAL begins to return completed captures to
287 * the framework with camera3_callback_ops_t->process_capture_result(). These
288 * are returned in the same order as the requests were submitted. Multiple
289 * requests can be in flight at once, depending on the pipeline depth of the
290 * camera HAL device.
291 *
Igor Murashkin78aa1262014-01-09 16:23:43 -0800292 * >= CAMERA_DEVICE_API_VERSION_3_2:
293 *
294 * Once a buffer is returned by process_capture_result as part of the
295 * camera3_stream_buffer_t array, and the fence specified by release_fence
296 * has been signaled (this is a no-op for -1 fences), the ownership of that
297 * buffer is considered to be transferred back to the framework. After that,
298 * the HAL must no longer retain that particular buffer, and the
299 * framework may clean up the memory for it immediately.
300 *
Igor Murashkin5df2f622014-01-10 14:18:45 -0800301 * process_capture_result may be called multiple times for a single frame,
302 * each time with a new disjoint piece of metadata and/or set of gralloc
303 * buffers. The framework will accumulate these partial metadata results
304 * into one result.
305 *
306 * In particular, it is legal for a process_capture_result to be called
307 * simultaneously for both a frame N and a frame N+1 as long as the
Zhijun Heceac9e32014-02-05 20:49:45 -0800308 * above rule holds for gralloc buffers (both input and output).
Igor Murashkin5df2f622014-01-10 14:18:45 -0800309 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800310 * 11. After some time, the framework may stop submitting new requests, wait for
311 * the existing captures to complete (all buffers filled, all results
312 * returned), and then call configure_streams() again. This resets the camera
313 * hardware and pipeline for a new set of input/output streams. Some streams
314 * may be reused from the previous configuration; if these streams' buffers
315 * had already been registered with the HAL, they will not be registered
316 * again. The framework then continues from step 7, if at least one
317 * registered output stream remains (otherwise, step 5 is required first).
318 *
319 * 12. Alternatively, the framework may call camera3_device_t->common->close()
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -0800320 * to end the camera session. This may be called at any time when no other
321 * calls from the framework are active, although the call may block until all
322 * in-flight captures have completed (all results returned, all buffers
323 * filled). After the close call returns, no more calls to the
324 * camera3_callback_ops_t functions are allowed from the HAL. Once the
325 * close() call is underway, the framework may not call any other HAL device
326 * functions.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800327 *
328 * 13. In case of an error or other asynchronous event, the HAL must call
329 * camera3_callback_ops_t->notify() with the appropriate error/event
330 * message. After returning from a fatal device-wide error notification, the
331 * HAL should act as if close() had been called on it. However, the HAL must
332 * either cancel or complete all outstanding captures before calling
333 * notify(), so that once notify() is called with a fatal error, the
334 * framework will not receive further callbacks from the device. Methods
335 * besides close() should return -ENODEV or NULL after the notify() method
336 * returns from a fatal error message.
337 */
338
339/**
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700340 * S3. Operational modes:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800341 *
342 * The camera 3 HAL device can implement one of two possible operational modes;
343 * limited and full. Full support is expected from new higher-end
344 * devices. Limited mode has hardware requirements roughly in line with those
345 * for a camera HAL device v1 implementation, and is expected from older or
346 * inexpensive devices. Full is a strict superset of limited, and they share the
347 * same essential operational flow, as documented above.
348 *
349 * The HAL must indicate its level of support with the
350 * android.info.supportedHardwareLevel static metadata entry, with 0 indicating
351 * limited mode, and 1 indicating full mode support.
352 *
353 * Roughly speaking, limited-mode devices do not allow for application control
354 * of capture settings (3A control only), high-rate capture of high-resolution
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700355 * images, raw sensor readout, or support for YUV output streams above maximum
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800356 * recording resolution (JPEG only for large images).
357 *
358 * ** Details of limited mode behavior:
359 *
360 * - Limited-mode devices do not need to implement accurate synchronization
361 * between capture request settings and the actual image data
362 * captured. Instead, changes to settings may take effect some time in the
363 * future, and possibly not for the same output frame for each settings
364 * entry. Rapid changes in settings may result in some settings never being
365 * used for a capture. However, captures that include high-resolution output
366 * buffers ( > 1080p ) have to use the settings as specified (but see below
367 * for processing rate).
368 *
369 * - Limited-mode devices do not need to support most of the
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700370 * settings/result/static info metadata. Specifically, only the following settings
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800371 * are expected to be consumed or produced by a limited-mode HAL device:
372 *
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700373 * android.control.aeAntibandingMode (controls and dynamic)
374 * android.control.aeExposureCompensation (controls and dynamic)
375 * android.control.aeLock (controls and dynamic)
376 * android.control.aeMode (controls and dynamic)
377 * android.control.aeRegions (controls and dynamic)
378 * android.control.aeTargetFpsRange (controls and dynamic)
379 * android.control.aePrecaptureTrigger (controls and dynamic)
380 * android.control.afMode (controls and dynamic)
381 * android.control.afRegions (controls and dynamic)
382 * android.control.awbLock (controls and dynamic)
383 * android.control.awbMode (controls and dynamic)
384 * android.control.awbRegions (controls and dynamic)
385 * android.control.captureIntent (controls and dynamic)
386 * android.control.effectMode (controls and dynamic)
387 * android.control.mode (controls and dynamic)
388 * android.control.sceneMode (controls and dynamic)
389 * android.control.videoStabilizationMode (controls and dynamic)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800390 * android.control.aeAvailableAntibandingModes (static)
391 * android.control.aeAvailableModes (static)
392 * android.control.aeAvailableTargetFpsRanges (static)
393 * android.control.aeCompensationRange (static)
394 * android.control.aeCompensationStep (static)
395 * android.control.afAvailableModes (static)
396 * android.control.availableEffects (static)
397 * android.control.availableSceneModes (static)
398 * android.control.availableVideoStabilizationModes (static)
399 * android.control.awbAvailableModes (static)
400 * android.control.maxRegions (static)
401 * android.control.sceneModeOverrides (static)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800402 * android.control.aeState (dynamic)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800403 * android.control.afState (dynamic)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800404 * android.control.awbState (dynamic)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800405 *
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700406 * android.flash.mode (controls and dynamic)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800407 * android.flash.info.available (static)
408 *
409 * android.info.supportedHardwareLevel (static)
410 *
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700411 * android.jpeg.gpsCoordinates (controls and dynamic)
412 * android.jpeg.gpsProcessingMethod (controls and dynamic)
413 * android.jpeg.gpsTimestamp (controls and dynamic)
414 * android.jpeg.orientation (controls and dynamic)
415 * android.jpeg.quality (controls and dynamic)
416 * android.jpeg.thumbnailQuality (controls and dynamic)
417 * android.jpeg.thumbnailSize (controls and dynamic)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800418 * android.jpeg.availableThumbnailSizes (static)
419 * android.jpeg.maxSize (static)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800420 *
421 * android.lens.info.minimumFocusDistance (static)
422 *
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700423 * android.request.id (controls and dynamic)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800424 *
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700425 * android.scaler.cropRegion (controls and dynamic)
Eino-Ville Talvalac5bff0d2014-02-10 16:43:26 -0800426 * android.scaler.availableStreamConfigurations (static)
427 * android.scaler.availableMinFrameDurations (static)
428 * android.scaler.availableStallDurations (static)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800429 * android.scaler.availableMaxDigitalZoom (static)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800430 * android.scaler.maxDigitalZoom (static)
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700431 * android.scaler.croppingType (static)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800432 *
433 * android.sensor.orientation (static)
434 * android.sensor.timestamp (dynamic)
435 *
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700436 * android.statistics.faceDetectMode (controls and dynamic)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800437 * android.statistics.info.availableFaceDetectModes (static)
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800438 * android.statistics.faceIds (dynamic)
439 * android.statistics.faceLandmarks (dynamic)
440 * android.statistics.faceRectangles (dynamic)
441 * android.statistics.faceScores (dynamic)
442 *
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700443 * android.sync.frameNumber (dynamic)
444 * android.sync.maxLatency (static)
445 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800446 * - Captures in limited mode that include high-resolution (> 1080p) output
447 * buffers may block in process_capture_request() until all the output buffers
448 * have been filled. A full-mode HAL device must process sequences of
449 * high-resolution requests at the rate indicated in the static metadata for
450 * that pixel format. The HAL must still call process_capture_result() to
451 * provide the output; the framework must simply be prepared for
452 * process_capture_request() to block until after process_capture_result() for
453 * that request completes for high-resolution captures for limited-mode
454 * devices.
455 *
Zhijun He1ab5c5e2014-05-26 17:35:50 -0700456 * - Full-mode devices must support below additional capabilities:
457 * - 30fps at maximum resolution is preferred, more than 20fps is required.
458 * - Per frame control (android.sync.maxLatency == PER_FRAME_CONTROL).
459 * - Sensor manual control metadata. See MANUAL_SENSOR defined in
460 * android.request.availableCapabilities.
461 * - Post-processing manual control metadata. See MANUAL_POST_PROCESSING defined
462 * in android.request.availableCapabilities.
463 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800464 */
465
466/**
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700467 * S4. 3A modes and state machines:
468 *
469 * While the actual 3A algorithms are up to the HAL implementation, a high-level
470 * state machine description is defined by the HAL interface, to allow the HAL
471 * device and the framework to communicate about the current state of 3A, and to
472 * trigger 3A events.
473 *
474 * When the device is opened, all the individual 3A states must be
475 * STATE_INACTIVE. Stream configuration does not reset 3A. For example, locked
476 * focus must be maintained across the configure() call.
477 *
478 * Triggering a 3A action involves simply setting the relevant trigger entry in
479 * the settings for the next request to indicate start of trigger. For example,
480 * the trigger for starting an autofocus scan is setting the entry
481 * ANDROID_CONTROL_AF_TRIGGER to ANDROID_CONTROL_AF_TRIGGER_START for one
482 * request, and cancelling an autofocus scan is triggered by setting
483 * ANDROID_CONTROL_AF_TRIGGER to ANDROID_CONTRL_AF_TRIGGER_CANCEL. Otherwise,
484 * the entry will not exist, or be set to ANDROID_CONTROL_AF_TRIGGER_IDLE. Each
485 * request with a trigger entry set to a non-IDLE value will be treated as an
486 * independent triggering event.
487 *
488 * At the top level, 3A is controlled by the ANDROID_CONTROL_MODE setting, which
489 * selects between no 3A (ANDROID_CONTROL_MODE_OFF), normal AUTO mode
490 * (ANDROID_CONTROL_MODE_AUTO), and using the scene mode setting
491 * (ANDROID_CONTROL_USE_SCENE_MODE).
492 *
493 * - In OFF mode, each of the individual AE/AF/AWB modes are effectively OFF,
494 * and none of the capture controls may be overridden by the 3A routines.
495 *
496 * - In AUTO mode, Auto-focus, auto-exposure, and auto-whitebalance all run
497 * their own independent algorithms, and have their own mode, state, and
498 * trigger metadata entries, as listed in the next section.
499 *
500 * - In USE_SCENE_MODE, the value of the ANDROID_CONTROL_SCENE_MODE entry must
501 * be used to determine the behavior of 3A routines. In SCENE_MODEs other than
502 * FACE_PRIORITY, the HAL must override the values of
503 * ANDROId_CONTROL_AE/AWB/AF_MODE to be the mode it prefers for the selected
504 * SCENE_MODE. For example, the HAL may prefer SCENE_MODE_NIGHT to use
505 * CONTINUOUS_FOCUS AF mode. Any user selection of AE/AWB/AF_MODE when scene
506 * must be ignored for these scene modes.
507 *
508 * - For SCENE_MODE_FACE_PRIORITY, the AE/AWB/AF_MODE controls work as in
509 * ANDROID_CONTROL_MODE_AUTO, but the 3A routines must bias toward metering
510 * and focusing on any detected faces in the scene.
511 *
512 * S4.1. Auto-focus settings and result entries:
513 *
514 * Main metadata entries:
515 *
516 * ANDROID_CONTROL_AF_MODE: Control for selecting the current autofocus
517 * mode. Set by the framework in the request settings.
518 *
519 * AF_MODE_OFF: AF is disabled; the framework/app directly controls lens
520 * position.
521 *
522 * AF_MODE_AUTO: Single-sweep autofocus. No lens movement unless AF is
523 * triggered.
524 *
525 * AF_MODE_MACRO: Single-sweep up-close autofocus. No lens movement unless
526 * AF is triggered.
527 *
528 * AF_MODE_CONTINUOUS_VIDEO: Smooth continuous focusing, for recording
529 * video. Triggering immediately locks focus in current
530 * position. Canceling resumes cotinuous focusing.
531 *
532 * AF_MODE_CONTINUOUS_PICTURE: Fast continuous focusing, for
533 * zero-shutter-lag still capture. Triggering locks focus once currently
534 * active sweep concludes. Canceling resumes continuous focusing.
535 *
536 * AF_MODE_EDOF: Advanced extended depth of field focusing. There is no
537 * autofocus scan, so triggering one or canceling one has no effect.
538 * Images are focused automatically by the HAL.
539 *
540 * ANDROID_CONTROL_AF_STATE: Dynamic metadata describing the current AF
541 * algorithm state, reported by the HAL in the result metadata.
542 *
543 * AF_STATE_INACTIVE: No focusing has been done, or algorithm was
544 * reset. Lens is not moving. Always the state for MODE_OFF or MODE_EDOF.
545 * When the device is opened, it must start in this state.
546 *
547 * AF_STATE_PASSIVE_SCAN: A continuous focus algorithm is currently scanning
548 * for good focus. The lens is moving.
549 *
550 * AF_STATE_PASSIVE_FOCUSED: A continuous focus algorithm believes it is
551 * well focused. The lens is not moving. The HAL may spontaneously leave
552 * this state.
553 *
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700554 * AF_STATE_PASSIVE_UNFOCUSED: A continuous focus algorithm believes it is
555 * not well focused. The lens is not moving. The HAL may spontaneously
556 * leave this state.
557 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700558 * AF_STATE_ACTIVE_SCAN: A scan triggered by the user is underway.
559 *
560 * AF_STATE_FOCUSED_LOCKED: The AF algorithm believes it is focused. The
561 * lens is not moving.
562 *
563 * AF_STATE_NOT_FOCUSED_LOCKED: The AF algorithm has been unable to
564 * focus. The lens is not moving.
565 *
566 * ANDROID_CONTROL_AF_TRIGGER: Control for starting an autofocus scan, the
567 * meaning of which is mode- and state- dependent. Set by the framework in
568 * the request settings.
569 *
570 * AF_TRIGGER_IDLE: No current trigger.
571 *
572 * AF_TRIGGER_START: Trigger start of AF scan. Effect is mode and state
573 * dependent.
574 *
575 * AF_TRIGGER_CANCEL: Cancel current AF scan if any, and reset algorithm to
576 * default.
577 *
578 * Additional metadata entries:
579 *
580 * ANDROID_CONTROL_AF_REGIONS: Control for selecting the regions of the FOV
581 * that should be used to determine good focus. This applies to all AF
582 * modes that scan for focus. Set by the framework in the request
583 * settings.
584 *
585 * S4.2. Auto-exposure settings and result entries:
586 *
587 * Main metadata entries:
588 *
589 * ANDROID_CONTROL_AE_MODE: Control for selecting the current auto-exposure
590 * mode. Set by the framework in the request settings.
591 *
592 * AE_MODE_OFF: Autoexposure is disabled; the user controls exposure, gain,
593 * frame duration, and flash.
594 *
595 * AE_MODE_ON: Standard autoexposure, with flash control disabled. User may
596 * set flash to fire or to torch mode.
597 *
598 * AE_MODE_ON_AUTO_FLASH: Standard autoexposure, with flash on at HAL's
599 * discretion for precapture and still capture. User control of flash
600 * disabled.
601 *
602 * AE_MODE_ON_ALWAYS_FLASH: Standard autoexposure, with flash always fired
603 * for capture, and at HAL's discretion for precapture.. User control of
604 * flash disabled.
605 *
606 * AE_MODE_ON_AUTO_FLASH_REDEYE: Standard autoexposure, with flash on at
607 * HAL's discretion for precapture and still capture. Use a flash burst
608 * at end of precapture sequence to reduce redeye in the final
609 * picture. User control of flash disabled.
610 *
611 * ANDROID_CONTROL_AE_STATE: Dynamic metadata describing the current AE
612 * algorithm state, reported by the HAL in the result metadata.
613 *
614 * AE_STATE_INACTIVE: Initial AE state after mode switch. When the device is
615 * opened, it must start in this state.
616 *
617 * AE_STATE_SEARCHING: AE is not converged to a good value, and is adjusting
618 * exposure parameters.
619 *
620 * AE_STATE_CONVERGED: AE has found good exposure values for the current
621 * scene, and the exposure parameters are not changing. HAL may
622 * spontaneously leave this state to search for better solution.
623 *
624 * AE_STATE_LOCKED: AE has been locked with the AE_LOCK control. Exposure
625 * values are not changing.
626 *
627 * AE_STATE_FLASH_REQUIRED: The HAL has converged exposure, but believes
628 * flash is required for a sufficiently bright picture. Used for
629 * determining if a zero-shutter-lag frame can be used.
630 *
631 * AE_STATE_PRECAPTURE: The HAL is in the middle of a precapture
632 * sequence. Depending on AE mode, this mode may involve firing the
633 * flash for metering, or a burst of flash pulses for redeye reduction.
634 *
635 * ANDROID_CONTROL_AE_PRECAPTURE_TRIGGER: Control for starting a metering
636 * sequence before capturing a high-quality image. Set by the framework in
637 * the request settings.
638 *
639 * PRECAPTURE_TRIGGER_IDLE: No current trigger.
640 *
641 * PRECAPTURE_TRIGGER_START: Start a precapture sequence. The HAL should
642 * use the subsequent requests to measure good exposure/white balance
643 * for an upcoming high-resolution capture.
644 *
645 * Additional metadata entries:
646 *
647 * ANDROID_CONTROL_AE_LOCK: Control for locking AE controls to their current
648 * values
649 *
650 * ANDROID_CONTROL_AE_EXPOSURE_COMPENSATION: Control for adjusting AE
651 * algorithm target brightness point.
652 *
653 * ANDROID_CONTROL_AE_TARGET_FPS_RANGE: Control for selecting the target frame
654 * rate range for the AE algorithm. The AE routine cannot change the frame
655 * rate to be outside these bounds.
656 *
657 * ANDROID_CONTROL_AE_REGIONS: Control for selecting the regions of the FOV
658 * that should be used to determine good exposure levels. This applies to
659 * all AE modes besides OFF.
660 *
661 * S4.3. Auto-whitebalance settings and result entries:
662 *
663 * Main metadata entries:
664 *
665 * ANDROID_CONTROL_AWB_MODE: Control for selecting the current white-balance
666 * mode.
667 *
668 * AWB_MODE_OFF: Auto-whitebalance is disabled. User controls color matrix.
669 *
670 * AWB_MODE_AUTO: Automatic white balance is enabled; 3A controls color
671 * transform, possibly using more complex transforms than a simple
672 * matrix.
673 *
674 * AWB_MODE_INCANDESCENT: Fixed white balance settings good for indoor
675 * incandescent (tungsten) lighting, roughly 2700K.
676 *
677 * AWB_MODE_FLUORESCENT: Fixed white balance settings good for fluorescent
678 * lighting, roughly 5000K.
679 *
680 * AWB_MODE_WARM_FLUORESCENT: Fixed white balance settings good for
681 * fluorescent lighting, roughly 3000K.
682 *
683 * AWB_MODE_DAYLIGHT: Fixed white balance settings good for daylight,
684 * roughly 5500K.
685 *
686 * AWB_MODE_CLOUDY_DAYLIGHT: Fixed white balance settings good for clouded
687 * daylight, roughly 6500K.
688 *
689 * AWB_MODE_TWILIGHT: Fixed white balance settings good for
690 * near-sunset/sunrise, roughly 15000K.
691 *
692 * AWB_MODE_SHADE: Fixed white balance settings good for areas indirectly
693 * lit by the sun, roughly 7500K.
694 *
695 * ANDROID_CONTROL_AWB_STATE: Dynamic metadata describing the current AWB
696 * algorithm state, reported by the HAL in the result metadata.
697 *
698 * AWB_STATE_INACTIVE: Initial AWB state after mode switch. When the device
699 * is opened, it must start in this state.
700 *
701 * AWB_STATE_SEARCHING: AWB is not converged to a good value, and is
702 * changing color adjustment parameters.
703 *
704 * AWB_STATE_CONVERGED: AWB has found good color adjustment values for the
705 * current scene, and the parameters are not changing. HAL may
706 * spontaneously leave this state to search for better solution.
707 *
708 * AWB_STATE_LOCKED: AWB has been locked with the AWB_LOCK control. Color
709 * adjustment values are not changing.
710 *
711 * Additional metadata entries:
712 *
713 * ANDROID_CONTROL_AWB_LOCK: Control for locking AWB color adjustments to
714 * their current values.
715 *
716 * ANDROID_CONTROL_AWB_REGIONS: Control for selecting the regions of the FOV
717 * that should be used to determine good color balance. This applies only
718 * to auto-WB mode.
719 *
720 * S4.4. General state machine transition notes
721 *
722 * Switching between AF, AE, or AWB modes always resets the algorithm's state
723 * to INACTIVE. Similarly, switching between CONTROL_MODE or
724 * CONTROL_SCENE_MODE if CONTROL_MODE == USE_SCENE_MODE resets all the
725 * algorithm states to INACTIVE.
726 *
727 * The tables below are per-mode.
728 *
729 * S4.5. AF state machines
730 *
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700731 * when enabling AF or changing AF mode
732 *| state | trans. cause | new state | notes |
733 *+--------------------+---------------+--------------------+------------------+
734 *| Any | AF mode change| INACTIVE | |
735 *+--------------------+---------------+--------------------+------------------+
736 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700737 * mode = AF_MODE_OFF or AF_MODE_EDOF
738 *| state | trans. cause | new state | notes |
739 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700740 *| INACTIVE | | INACTIVE | Never changes |
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700741 *+--------------------+---------------+--------------------+------------------+
742 *
743 * mode = AF_MODE_AUTO or AF_MODE_MACRO
744 *| state | trans. cause | new state | notes |
745 *+--------------------+---------------+--------------------+------------------+
746 *| INACTIVE | AF_TRIGGER | ACTIVE_SCAN | Start AF sweep |
747 *| | | | Lens now moving |
748 *+--------------------+---------------+--------------------+------------------+
749 *| ACTIVE_SCAN | AF sweep done | FOCUSED_LOCKED | If AF successful |
750 *| | | | Lens now locked |
751 *+--------------------+---------------+--------------------+------------------+
752 *| ACTIVE_SCAN | AF sweep done | NOT_FOCUSED_LOCKED | If AF successful |
753 *| | | | Lens now locked |
754 *+--------------------+---------------+--------------------+------------------+
755 *| ACTIVE_SCAN | AF_CANCEL | INACTIVE | Cancel/reset AF |
756 *| | | | Lens now locked |
757 *+--------------------+---------------+--------------------+------------------+
758 *| FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Cancel/reset AF |
759 *+--------------------+---------------+--------------------+------------------+
760 *| FOCUSED_LOCKED | AF_TRIGGER | ACTIVE_SCAN | Start new sweep |
761 *| | | | Lens now moving |
762 *+--------------------+---------------+--------------------+------------------+
763 *| NOT_FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Cancel/reset AF |
764 *+--------------------+---------------+--------------------+------------------+
765 *| NOT_FOCUSED_LOCKED | AF_TRIGGER | ACTIVE_SCAN | Start new sweep |
766 *| | | | Lens now moving |
767 *+--------------------+---------------+--------------------+------------------+
768 *| All states | mode change | INACTIVE | |
769 *+--------------------+---------------+--------------------+------------------+
770 *
771 * mode = AF_MODE_CONTINUOUS_VIDEO
772 *| state | trans. cause | new state | notes |
773 *+--------------------+---------------+--------------------+------------------+
774 *| INACTIVE | HAL initiates | PASSIVE_SCAN | Start AF scan |
775 *| | new scan | | Lens now moving |
776 *+--------------------+---------------+--------------------+------------------+
777 *| INACTIVE | AF_TRIGGER | NOT_FOCUSED_LOCKED | AF state query |
778 *| | | | Lens now locked |
779 *+--------------------+---------------+--------------------+------------------+
780 *| PASSIVE_SCAN | HAL completes | PASSIVE_FOCUSED | End AF scan |
781 *| | current scan | | Lens now locked |
782 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700783 *| PASSIVE_SCAN | HAL fails | PASSIVE_UNFOCUSED | End AF scan |
784 *| | current scan | | Lens now locked |
785 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700786 *| PASSIVE_SCAN | AF_TRIGGER | FOCUSED_LOCKED | Immediate trans. |
787 *| | | | if focus is good |
788 *| | | | Lens now locked |
789 *+--------------------+---------------+--------------------+------------------+
790 *| PASSIVE_SCAN | AF_TRIGGER | NOT_FOCUSED_LOCKED | Immediate trans. |
791 *| | | | if focus is bad |
792 *| | | | Lens now locked |
793 *+--------------------+---------------+--------------------+------------------+
794 *| PASSIVE_SCAN | AF_CANCEL | INACTIVE | Reset lens |
795 *| | | | position |
796 *| | | | Lens now locked |
797 *+--------------------+---------------+--------------------+------------------+
798 *| PASSIVE_FOCUSED | HAL initiates | PASSIVE_SCAN | Start AF scan |
799 *| | new scan | | Lens now moving |
800 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700801 *| PASSIVE_UNFOCUSED | HAL initiates | PASSIVE_SCAN | Start AF scan |
802 *| | new scan | | Lens now moving |
803 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700804 *| PASSIVE_FOCUSED | AF_TRIGGER | FOCUSED_LOCKED | Immediate trans. |
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700805 *| | | | Lens now locked |
806 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700807 *| PASSIVE_UNFOCUSED | AF_TRIGGER | NOT_FOCUSED_LOCKED | Immediate trans. |
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700808 *| | | | Lens now locked |
809 *+--------------------+---------------+--------------------+------------------+
810 *| FOCUSED_LOCKED | AF_TRIGGER | FOCUSED_LOCKED | No effect |
811 *+--------------------+---------------+--------------------+------------------+
812 *| FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Restart AF scan |
813 *+--------------------+---------------+--------------------+------------------+
814 *| NOT_FOCUSED_LOCKED | AF_TRIGGER | NOT_FOCUSED_LOCKED | No effect |
815 *+--------------------+---------------+--------------------+------------------+
816 *| NOT_FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Restart AF scan |
817 *+--------------------+---------------+--------------------+------------------+
818 *
819 * mode = AF_MODE_CONTINUOUS_PICTURE
820 *| state | trans. cause | new state | notes |
821 *+--------------------+---------------+--------------------+------------------+
822 *| INACTIVE | HAL initiates | PASSIVE_SCAN | Start AF scan |
823 *| | new scan | | Lens now moving |
824 *+--------------------+---------------+--------------------+------------------+
825 *| INACTIVE | AF_TRIGGER | NOT_FOCUSED_LOCKED | AF state query |
826 *| | | | Lens now locked |
827 *+--------------------+---------------+--------------------+------------------+
828 *| PASSIVE_SCAN | HAL completes | PASSIVE_FOCUSED | End AF scan |
829 *| | current scan | | Lens now locked |
830 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700831 *| PASSIVE_SCAN | HAL fails | PASSIVE_UNFOCUSED | End AF scan |
832 *| | current scan | | Lens now locked |
833 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700834 *| PASSIVE_SCAN | AF_TRIGGER | FOCUSED_LOCKED | Eventual trans. |
835 *| | | | once focus good |
836 *| | | | Lens now locked |
837 *+--------------------+---------------+--------------------+------------------+
838 *| PASSIVE_SCAN | AF_TRIGGER | NOT_FOCUSED_LOCKED | Eventual trans. |
839 *| | | | if cannot focus |
840 *| | | | Lens now locked |
841 *+--------------------+---------------+--------------------+------------------+
842 *| PASSIVE_SCAN | AF_CANCEL | INACTIVE | Reset lens |
843 *| | | | position |
844 *| | | | Lens now locked |
845 *+--------------------+---------------+--------------------+------------------+
846 *| PASSIVE_FOCUSED | HAL initiates | PASSIVE_SCAN | Start AF scan |
847 *| | new scan | | Lens now moving |
848 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700849 *| PASSIVE_UNFOCUSED | HAL initiates | PASSIVE_SCAN | Start AF scan |
850 *| | new scan | | Lens now moving |
851 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700852 *| PASSIVE_FOCUSED | AF_TRIGGER | FOCUSED_LOCKED | Immediate trans. |
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700853 *| | | | Lens now locked |
854 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700855 *| PASSIVE_UNFOCUSED | AF_TRIGGER | NOT_FOCUSED_LOCKED | Immediate trans. |
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700856 *| | | | Lens now locked |
857 *+--------------------+---------------+--------------------+------------------+
858 *| FOCUSED_LOCKED | AF_TRIGGER | FOCUSED_LOCKED | No effect |
859 *+--------------------+---------------+--------------------+------------------+
860 *| FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Restart AF scan |
861 *+--------------------+---------------+--------------------+------------------+
862 *| NOT_FOCUSED_LOCKED | AF_TRIGGER | NOT_FOCUSED_LOCKED | No effect |
863 *+--------------------+---------------+--------------------+------------------+
864 *| NOT_FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Restart AF scan |
865 *+--------------------+---------------+--------------------+------------------+
866 *
867 * S4.6. AE and AWB state machines
868 *
869 * The AE and AWB state machines are mostly identical. AE has additional
870 * FLASH_REQUIRED and PRECAPTURE states. So rows below that refer to those two
871 * states should be ignored for the AWB state machine.
872 *
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700873 * when enabling AE/AWB or changing AE/AWB mode
874 *| state | trans. cause | new state | notes |
875 *+--------------------+---------------+--------------------+------------------+
876 *| Any | mode change | INACTIVE | |
877 *+--------------------+---------------+--------------------+------------------+
878 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700879 * mode = AE_MODE_OFF / AWB mode not AUTO
880 *| state | trans. cause | new state | notes |
881 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala4d45d302013-09-20 17:24:50 -0700882 *| INACTIVE | | INACTIVE | AE/AWB disabled |
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700883 *+--------------------+---------------+--------------------+------------------+
884 *
885 * mode = AE_MODE_ON_* / AWB_MODE_AUTO
886 *| state | trans. cause | new state | notes |
887 *+--------------------+---------------+--------------------+------------------+
888 *| INACTIVE | HAL initiates | SEARCHING | |
889 *| | AE/AWB scan | | |
890 *+--------------------+---------------+--------------------+------------------+
891 *| INACTIVE | AE/AWB_LOCK | LOCKED | values locked |
892 *| | on | | |
893 *+--------------------+---------------+--------------------+------------------+
894 *| SEARCHING | HAL finishes | CONVERGED | good values, not |
895 *| | AE/AWB scan | | changing |
896 *+--------------------+---------------+--------------------+------------------+
897 *| SEARCHING | HAL finishes | FLASH_REQUIRED | converged but too|
898 *| | AE scan | | dark w/o flash |
899 *+--------------------+---------------+--------------------+------------------+
900 *| SEARCHING | AE/AWB_LOCK | LOCKED | values locked |
901 *| | on | | |
902 *+--------------------+---------------+--------------------+------------------+
903 *| CONVERGED | HAL initiates | SEARCHING | values locked |
904 *| | AE/AWB scan | | |
905 *+--------------------+---------------+--------------------+------------------+
906 *| CONVERGED | AE/AWB_LOCK | LOCKED | values locked |
907 *| | on | | |
908 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala73dba5e2013-05-21 16:29:14 -0700909 *| FLASH_REQUIRED | HAL initiates | SEARCHING | values locked |
910 *| | AE/AWB scan | | |
911 *+--------------------+---------------+--------------------+------------------+
912 *| FLASH_REQUIRED | AE/AWB_LOCK | LOCKED | values locked |
913 *| | on | | |
914 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700915 *| LOCKED | AE/AWB_LOCK | SEARCHING | values not good |
916 *| | off | | after unlock |
917 *+--------------------+---------------+--------------------+------------------+
918 *| LOCKED | AE/AWB_LOCK | CONVERGED | values good |
919 *| | off | | after unlock |
920 *+--------------------+---------------+--------------------+------------------+
921 *| LOCKED | AE_LOCK | FLASH_REQUIRED | exposure good, |
922 *| | off | | but too dark |
923 *+--------------------+---------------+--------------------+------------------+
924 *| All AE states | PRECAPTURE_ | PRECAPTURE | Start precapture |
925 *| | START | | sequence |
926 *+--------------------+---------------+--------------------+------------------+
927 *| PRECAPTURE | Sequence done.| CONVERGED | Ready for high- |
928 *| | AE_LOCK off | | quality capture |
929 *+--------------------+---------------+--------------------+------------------+
930 *| PRECAPTURE | Sequence done.| LOCKED | Ready for high- |
931 *| | AE_LOCK on | | quality capture |
932 *+--------------------+---------------+--------------------+------------------+
933 *
934 */
935
936/**
Eino-Ville Talvalab6059442013-04-29 15:26:16 -0700937 * S5. Cropping:
938 *
939 * Cropping of the full pixel array (for digital zoom and other use cases where
940 * a smaller FOV is desirable) is communicated through the
941 * ANDROID_SCALER_CROP_REGION setting. This is a per-request setting, and can
942 * change on a per-request basis, which is critical for implementing smooth
943 * digital zoom.
944 *
945 * The region is defined as a rectangle (x, y, width, height), with (x, y)
946 * describing the top-left corner of the rectangle. The rectangle is defined on
947 * the coordinate system of the sensor active pixel array, with (0,0) being the
948 * top-left pixel of the active pixel array. Therefore, the width and height
949 * cannot be larger than the dimensions reported in the
950 * ANDROID_SENSOR_ACTIVE_PIXEL_ARRAY static info field. The minimum allowed
951 * width and height are reported by the HAL through the
952 * ANDROID_SCALER_MAX_DIGITAL_ZOOM static info field, which describes the
953 * maximum supported zoom factor. Therefore, the minimum crop region width and
954 * height are:
955 *
956 * {width, height} =
957 * { floor(ANDROID_SENSOR_ACTIVE_PIXEL_ARRAY[0] /
958 * ANDROID_SCALER_MAX_DIGITAL_ZOOM),
959 * floor(ANDROID_SENSOR_ACTIVE_PIXEL_ARRAY[1] /
960 * ANDROID_SCALER_MAX_DIGITAL_ZOOM) }
961 *
962 * If the crop region needs to fulfill specific requirements (for example, it
963 * needs to start on even coordinates, and its width/height needs to be even),
964 * the HAL must do the necessary rounding and write out the final crop region
965 * used in the output result metadata. Similarly, if the HAL implements video
966 * stabilization, it must adjust the result crop region to describe the region
967 * actually included in the output after video stabilization is applied. In
968 * general, a camera-using application must be able to determine the field of
969 * view it is receiving based on the crop region, the dimensions of the image
970 * sensor, and the lens focal length.
971 *
Zhijun Hef1ee67e2014-05-21 11:18:51 -0700972 * It is assumed that the cropping is applied after raw to other color space
973 * conversion. Raw streams (RAW16 and RAW_OPAQUE) don't have this conversion stage,
974 * and are not croppable. Therefore, the crop region must be ignored by the HAL
975 * for raw streams.
976 *
977 * Since the crop region applies to all non-raw streams, which may have different aspect
Eino-Ville Talvalab6059442013-04-29 15:26:16 -0700978 * ratios than the crop region, the exact sensor region used for each stream may
979 * be smaller than the crop region. Specifically, each stream should maintain
980 * square pixels and its aspect ratio by minimally further cropping the defined
981 * crop region. If the stream's aspect ratio is wider than the crop region, the
982 * stream should be further cropped vertically, and if the stream's aspect ratio
983 * is narrower than the crop region, the stream should be further cropped
984 * horizontally.
985 *
986 * In all cases, the stream crop must be centered within the full crop region,
987 * and each stream is only either cropped horizontally or vertical relative to
988 * the full crop region, never both.
989 *
990 * For example, if two streams are defined, a 640x480 stream (4:3 aspect), and a
991 * 1280x720 stream (16:9 aspect), below demonstrates the expected output regions
992 * for each stream for a few sample crop regions, on a hypothetical 3 MP (2000 x
993 * 1500 pixel array) sensor.
994 *
995 * Crop region: (500, 375, 1000, 750) (4:3 aspect ratio)
996 *
997 * 640x480 stream crop: (500, 375, 1000, 750) (equal to crop region)
998 * 1280x720 stream crop: (500, 469, 1000, 562) (marked with =)
999 *
1000 * 0 1000 2000
1001 * +---------+---------+---------+----------+
1002 * | Active pixel array |
1003 * | |
1004 * | |
1005 * + +-------------------+ + 375
1006 * | | | |
1007 * | O===================O |
1008 * | I 1280x720 stream I |
1009 * + I I + 750
1010 * | I I |
1011 * | O===================O |
1012 * | | | |
1013 * + +-------------------+ + 1125
1014 * | Crop region, 640x480 stream |
1015 * | |
1016 * | |
1017 * +---------+---------+---------+----------+ 1500
1018 *
1019 * Crop region: (500, 375, 1333, 750) (16:9 aspect ratio)
1020 *
1021 * 640x480 stream crop: (666, 375, 1000, 750) (marked with =)
1022 * 1280x720 stream crop: (500, 375, 1333, 750) (equal to crop region)
1023 *
1024 * 0 1000 2000
1025 * +---------+---------+---------+----------+
1026 * | Active pixel array |
1027 * | |
1028 * | |
1029 * + +---O==================O---+ + 375
1030 * | | I 640x480 stream I | |
1031 * | | I I | |
1032 * | | I I | |
1033 * + | I I | + 750
1034 * | | I I | |
1035 * | | I I | |
1036 * | | I I | |
1037 * + +---O==================O---+ + 1125
1038 * | Crop region, 1280x720 stream |
1039 * | |
1040 * | |
1041 * +---------+---------+---------+----------+ 1500
1042 *
1043 * Crop region: (500, 375, 750, 750) (1:1 aspect ratio)
1044 *
1045 * 640x480 stream crop: (500, 469, 750, 562) (marked with =)
1046 * 1280x720 stream crop: (500, 543, 750, 414) (marged with #)
1047 *
1048 * 0 1000 2000
1049 * +---------+---------+---------+----------+
1050 * | Active pixel array |
1051 * | |
1052 * | |
1053 * + +--------------+ + 375
1054 * | O==============O |
1055 * | ################ |
1056 * | # # |
1057 * + # # + 750
1058 * | # # |
1059 * | ################ 1280x720 |
1060 * | O==============O 640x480 |
1061 * + +--------------+ + 1125
1062 * | Crop region |
1063 * | |
1064 * | |
1065 * +---------+---------+---------+----------+ 1500
1066 *
1067 * And a final example, a 1024x1024 square aspect ratio stream instead of the
1068 * 480p stream:
1069 *
1070 * Crop region: (500, 375, 1000, 750) (4:3 aspect ratio)
1071 *
1072 * 1024x1024 stream crop: (625, 375, 750, 750) (marked with #)
1073 * 1280x720 stream crop: (500, 469, 1000, 562) (marked with =)
1074 *
1075 * 0 1000 2000
1076 * +---------+---------+---------+----------+
1077 * | Active pixel array |
1078 * | |
1079 * | 1024x1024 stream |
1080 * + +--###############--+ + 375
1081 * | | # # | |
1082 * | O===================O |
1083 * | I 1280x720 stream I |
1084 * + I I + 750
1085 * | I I |
1086 * | O===================O |
1087 * | | # # | |
1088 * + +--###############--+ + 1125
1089 * | Crop region |
1090 * | |
1091 * | |
1092 * +---------+---------+---------+----------+ 1500
1093 *
1094 */
1095
1096/**
1097 * S6. Error management:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001098 *
1099 * Camera HAL device ops functions that have a return value will all return
1100 * -ENODEV / NULL in case of a serious error. This means the device cannot
1101 * continue operation, and must be closed by the framework. Once this error is
Alex Rayd5ddbc92013-02-15 13:47:24 -08001102 * returned by some method, or if notify() is called with ERROR_DEVICE, only
1103 * the close() method can be called successfully. All other methods will return
1104 * -ENODEV / NULL.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001105 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -07001106 * If a device op is called in the wrong sequence, for example if the framework
1107 * calls configure_streams() is called before initialize(), the device must
1108 * return -ENOSYS from the call, and do nothing.
1109 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001110 * Transient errors in image capture must be reported through notify() as follows:
1111 *
1112 * - The failure of an entire capture to occur must be reported by the HAL by
1113 * calling notify() with ERROR_REQUEST. Individual errors for the result
1114 * metadata or the output buffers must not be reported in this case.
1115 *
1116 * - If the metadata for a capture cannot be produced, but some image buffers
1117 * were filled, the HAL must call notify() with ERROR_RESULT.
1118 *
1119 * - If an output image buffer could not be filled, but either the metadata was
1120 * produced or some other buffers were filled, the HAL must call notify() with
1121 * ERROR_BUFFER for each failed buffer.
1122 *
1123 * In each of these transient failure cases, the HAL must still call
Zhijun Heceac9e32014-02-05 20:49:45 -08001124 * process_capture_result, with valid output and input (if an input buffer was
1125 * submitted) buffer_handle_t. If the result metadata could not be produced, it
1126 * should be NULL. If some buffers could not be filled, they must be returned with
1127 * process_capture_result in the error state, their release fences must be set to
1128 * the acquire fences passed by the framework, or -1 if they have been waited on by
1129 * the HAL already.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001130 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -07001131 * Invalid input arguments result in -EINVAL from the appropriate methods. In
1132 * that case, the framework must act as if that call had never been made.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001133 *
1134 */
1135
Zhijun He2dde4682014-01-09 09:11:49 -08001136/**
Zhijun He709e5872014-01-17 15:25:21 -08001137 * S7. Key Performance Indicator (KPI) glossary:
Zhijun He2dde4682014-01-09 09:11:49 -08001138 *
Zhijun He709e5872014-01-17 15:25:21 -08001139 * This includes some critical definitions that are used by KPI metrics.
Zhijun He2dde4682014-01-09 09:11:49 -08001140 *
1141 * Pipeline Latency:
1142 * For a given capture request, the duration from the framework calling
1143 * process_capture_request to the HAL sending capture result and all buffers
1144 * back by process_capture_result call. To make the Pipeline Latency measure
1145 * independent of frame rate, it is measured by frame count.
1146 *
1147 * For example, when frame rate is 30 (fps), the frame duration (time interval
1148 * between adjacent frame capture time) is 33 (ms).
1149 * If it takes 5 frames for framework to get the result and buffers back for
1150 * a given request, then the Pipeline Latency is 5 (frames), instead of
1151 * 5 x 33 = 165 (ms).
1152 *
1153 * The Pipeline Latency is determined by android.request.pipelineDepth and
1154 * android.request.pipelineMaxDepth, see their definitions for more details.
1155 *
1156 */
1157
Zhijun Hebc358682014-01-23 14:42:54 -08001158/**
1159 * S8. Sample Use Cases:
1160 *
1161 * This includes some typical use case examples the camera HAL may support.
1162 *
Zhijun Heb2bc0e52015-01-29 14:44:37 -08001163 * S8.1 Zero Shutter Lag (ZSL) with CAMERA3_STREAM_BIDIRECTIONAL stream.
Zhijun Hebc358682014-01-23 14:42:54 -08001164 *
1165 * For this use case, the bidirectional stream will be used by the framework as follows:
1166 *
1167 * 1. The framework includes a buffer from this stream as output buffer in a
1168 * request as normal.
1169 *
1170 * 2. Once the HAL device returns a filled output buffer to the framework,
1171 * the framework may do one of two things with the filled buffer:
1172 *
1173 * 2. a. The framework uses the filled data, and returns the now-used buffer
1174 * to the stream queue for reuse. This behavior exactly matches the
1175 * OUTPUT type of stream.
1176 *
1177 * 2. b. The framework wants to reprocess the filled data, and uses the
1178 * buffer as an input buffer for a request. Once the HAL device has
1179 * used the reprocessing buffer, it then returns it to the
1180 * framework. The framework then returns the now-used buffer to the
1181 * stream queue for reuse.
1182 *
1183 * 3. The HAL device will be given the buffer again as an output buffer for
1184 * a request at some future point.
1185 *
1186 * For ZSL use case, the pixel format for bidirectional stream will be
Zhijun He52a18892014-06-30 10:35:58 -07001187 * HAL_PIXEL_FORMAT_RAW_OPAQUE or HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED if it
1188 * is listed in android.scaler.availableInputOutputFormatsMap. When
1189 * HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED is used, the gralloc
1190 * usage flags for the consumer endpoint will be set to GRALLOC_USAGE_HW_CAMERA_ZSL.
1191 * A configuration stream list that has BIDIRECTIONAL stream used as input, will
1192 * usually also have a distinct OUTPUT stream to get the reprocessing data. For example,
1193 * for the ZSL use case, the stream list might be configured with the following:
Zhijun Hebc358682014-01-23 14:42:54 -08001194 *
1195 * - A HAL_PIXEL_FORMAT_RAW_OPAQUE bidirectional stream is used
1196 * as input.
1197 * - And a HAL_PIXEL_FORMAT_BLOB (JPEG) output stream.
1198 *
Zhijun Heebdf1282015-01-16 16:44:40 -08001199 * S8.2 ZSL (OPAQUE) reprocessing with CAMERA3_STREAM_INPUT stream.
1200 *
1201 * CAMERA_DEVICE_API_VERSION_3_3:
1202 * When OPAQUE_REPROCESSING capability is supported by the camera device, the INPUT stream
1203 * can be used for application/framework implemented use case like Zero Shutter Lag (ZSL).
1204 * This kind of stream will be used by the framework as follows:
1205 *
1206 * 1. Application/framework configures an opaque (RAW or YUV based) format output stream that is
1207 * used to produce the ZSL output buffers. The stream pixel format will be
1208 * HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED.
1209 *
1210 * 2. Application/framework configures an opaque format input stream that is used to
1211 * send the reprocessing ZSL buffers to the HAL. The stream pixel format will
1212 * also be HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED.
1213 *
1214 * 3. Application/framework configures a YUV/JPEG output stream that is used to receive the
1215 * reprocessed data. The stream pixel format will be YCbCr_420/HAL_PIXEL_FORMAT_BLOB.
1216 *
1217 * 4. Application/framework picks a ZSL buffer from the ZSL output stream when a ZSL capture is
1218 * issued by the application, and sends the data back as an input buffer in a
1219 * reprocessing request, then sends to the HAL for reprocessing.
1220 *
1221 * 5. The HAL sends back the output YUV/JPEG result to framework.
1222 *
1223 * The HAL can select the actual opaque buffer format and configure the ISP pipeline
1224 * appropriately based on the HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED format and
1225 * the gralloc usage flag GRALLOC_USAGE_HW_CAMERA_ZSL.
1226
1227 * S8.3 YUV reprocessing with CAMERA3_STREAM_INPUT stream.
1228 *
1229 * When YUV reprocessing is supported by the HAL, the INPUT stream
1230 * can be used for the YUV reprocessing use cases like lucky-shot and image fusion.
1231 * This kind of stream will be used by the framework as follows:
1232 *
1233 * 1. Application/framework configures an YCbCr_420 format output stream that is
1234 * used to produce the output buffers.
1235 *
1236 * 2. Application/framework configures an YCbCr_420 format input stream that is used to
1237 * send the reprocessing YUV buffers to the HAL.
1238 *
1239 * 3. Application/framework configures a YUV/JPEG output stream that is used to receive the
1240 * reprocessed data. The stream pixel format will be YCbCr_420/HAL_PIXEL_FORMAT_BLOB.
1241 *
1242 * 4. Application/framework processes the output buffers (could be as simple as picking
1243 * an output buffer directly) from the output stream when a capture is issued, and sends
1244 * the data back as an input buffer in a reprocessing request, then sends to the HAL
1245 * for reprocessing.
1246 *
1247 * 5. The HAL sends back the output YUV/JPEG result to framework.
1248 *
Zhijun Hebc358682014-01-23 14:42:54 -08001249 */
1250
Ruben Brunk2d96c742014-03-18 13:39:17 -07001251/**
1252 * S9. Notes on Controls and Metadata
1253 *
1254 * This section contains notes about the interpretation and usage of various metadata tags.
1255 *
1256 * S9.1 HIGH_QUALITY and FAST modes.
1257 *
1258 * Many camera post-processing blocks may be listed as having HIGH_QUALITY,
1259 * FAST, and OFF operating modes. These blocks will typically also have an
1260 * 'available modes' tag representing which of these operating modes are
1261 * available on a given device. The general policy regarding implementing
1262 * these modes is as follows:
1263 *
1264 * 1. Operating mode controls of hardware blocks that cannot be disabled
1265 * must not list OFF in their corresponding 'available modes' tags.
1266 *
1267 * 2. OFF will always be included in their corresponding 'available modes'
1268 * tag if it is possible to disable that hardware block.
1269 *
1270 * 3. FAST must always be included in the 'available modes' tags for all
1271 * post-processing blocks supported on the device. If a post-processing
1272 * block also has a slower and higher quality operating mode that does
1273 * not meet the framerate requirements for FAST mode, HIGH_QUALITY should
1274 * be included in the 'available modes' tag to represent this operating
1275 * mode.
1276 */
Zhijun Heebdf1282015-01-16 16:44:40 -08001277
1278/**
1279 * S10. Reprocessing flow and controls
1280 *
1281 * This section describes the OPAQUE and YUV reprocessing flow and controls. OPAQUE reprocessing
1282 * uses an opaque format that is not directly application-visible, and the application can
1283 * only select some of the output buffers and send back to HAL for reprocessing, while YUV
1284 * reprocessing gives the application opportunity to process the buffers before reprocessing.
1285 *
1286 * S8 gives the stream configurations for the typical reprocessing uses cases,
1287 * this section specifies the buffer flow and controls in more details.
1288 *
1289 * S10.1 OPAQUE (typically for ZSL use case) reprocessing flow and controls
1290 *
1291 * For OPAQUE reprocessing (e.g. ZSL) use case, after the application creates the specific
1292 * output and input streams, runtime buffer flow and controls are specified as below:
1293 *
1294 * 1. Application starts output streaming by sending repeating requests for output
1295 * opaque buffers and preview. The buffers are held by an application
1296 * maintained circular buffer. The requests are based on CAMERA3_TEMPLATE_ZERO_SHUTTER_LAG
1297 * capture template, which should have all necessary settings that guarantee output
1298 * frame rate is not slowed down relative to sensor output frame rate.
1299 *
1300 * 2. When a capture is issued, the application selects one output buffer based
1301 * on application buffer selection logic, e.g. good AE and AF statistics etc.
1302 * Application then creates an reprocess request based on the capture result associated
1303 * with this selected buffer. The selected output buffer is now added to this reprocess
1304 * request as an input buffer, the output buffer of this reprocess request should be
1305 * either JPEG output buffer or YUV output buffer, or both, depending on the application
1306 * choice.
1307 *
1308 * 3. Application then alters the reprocess settings to get best image quality. The HAL must
1309 * support and only support below controls if the HAL support OPAQUE_REPROCESSING capability:
1310 * - android.jpeg.* (if JPEG buffer is included as one of the output)
1311 * - android.noiseReduction.mode (change to HIGH_QUALITY if it is supported)
1312 * - android.edge.mode (change to HIGH_QUALITY if it is supported)
1313 * All other controls must be ignored by the HAL.
1314 * 4. HAL processed the input buffer and return the output buffers in the capture results
1315 * as normal.
1316 *
1317 * S10.2 YUV reprocessing flow and controls
1318 *
1319 * The YUV reprocessing buffer flow is similar as OPAQUE reprocessing, with below difference:
1320 *
1321 * 1. Application may want to have finer granularity control of the intermediate YUV images
1322 * (before reprocessing). For example, application may choose
1323 * - android.noiseReduction.mode == MINIMAL
1324 * to make sure the no YUV domain noise reduction has applied to the output YUV buffers,
1325 * then it can do its own advanced noise reduction on them. For OPAQUE reprocessing case, this
1326 * doesn't matter, as long as the final reprocessed image has the best quality.
1327 * 2. Application may modify the YUV output buffer data. For example, for image fusion use
1328 * case, where multiple output images are merged together to improve the signal-to-noise
1329 * ratio (SNR). The input buffer may be generated from multiple buffers by the application.
1330 * To avoid excessive amount of noise reduction and insufficient amount of edge enhancement
1331 * being applied to the input buffer, the application can hint the HAL how much effective
1332 * exposure time improvement has been done by the application, then the HAL can adjust the
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -07001333 * noise reduction and edge enhancement parameters to get best reprocessed image quality.
Zhijun Heebdf1282015-01-16 16:44:40 -08001334 * Below tag can be used for this purpose:
1335 * - android.reprocess.effectiveExposureFactor
1336 * The value would be exposure time increase factor applied to the original output image,
1337 * for example, if there are N image merged, the exposure time increase factor would be up
1338 * to sqrt(N). See this tag spec for more details.
1339 *
1340 * S10.3 Reprocessing pipeline characteristics
1341 *
1342 * Reprocessing pipeline has below different characteristics comparing with normal output
1343 * pipeline:
1344 *
1345 * 1. The reprocessing result can be returned ahead of the pending normal output results. But
1346 * the FIFO ordering must be maintained for all reprocessing results. For example, there are
1347 * below requests (A stands for output requests, B stands for reprocessing requests)
1348 * being processed by the HAL:
1349 * A1, A2, A3, A4, B1, A5, B2, A6...
1350 * result of B1 can be returned before A1-A4, but result of B2 must be returned after B1.
1351 * 2. Single input rule: For a given reprocessing request, all output buffers must be from the
1352 * input buffer, rather than sensor output. For example, if a reprocess request include both
1353 * JPEG and preview buffers, all output buffers must be produced from the input buffer
1354 * included by the reprocessing request, rather than sensor. The HAL must not output preview
1355 * buffers from sensor, while output JPEG buffer from the input buffer.
1356 * 3. Input buffer will be from camera output directly (ZSL case) or indirectly(image fusion
1357 * case). For the case where buffer is modified, the size will remain same. The HAL can
1358 * notify CAMERA3_MSG_ERROR_REQUEST if buffer from unknown source is sent.
1359 * 4. Result as reprocessing request: The HAL can expect that a reprocessing request is a copy
1360 * of one of the output results with minor allowed setting changes. The HAL can notify
1361 * CAMERA3_MSG_ERROR_REQUEST if a request from unknown source is issued.
1362 * 5. Output buffers may not be used as inputs across the configure stream boundary, This is
1363 * because an opaque stream like the ZSL output stream may have different actual image size
1364 * inside of the ZSL buffer to save power and bandwidth for smaller resolution JPEG capture.
1365 * The HAL may notify CAMERA3_MSG_ERROR_REQUEST if this case occurs.
1366 * 6. HAL Reprocess requests error reporting during flush should follow the same rule specified
1367 * by flush() method.
1368 *
1369 */
1370
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001371__BEGIN_DECLS
1372
1373struct camera3_device;
1374
1375/**********************************************************************
1376 *
1377 * Camera3 stream and stream buffer definitions.
1378 *
1379 * These structs and enums define the handles and contents of the input and
1380 * output streams connecting the HAL to various framework and application buffer
1381 * consumers. Each stream is backed by a gralloc buffer queue.
1382 *
1383 */
1384
1385/**
1386 * camera3_stream_type_t:
1387 *
1388 * The type of the camera stream, which defines whether the camera HAL device is
1389 * the producer or the consumer for that stream, and how the buffers of the
1390 * stream relate to the other streams.
1391 */
1392typedef enum camera3_stream_type {
1393 /**
1394 * This stream is an output stream; the camera HAL device will be
1395 * responsible for filling buffers from this stream with newly captured or
1396 * reprocessed image data.
1397 */
1398 CAMERA3_STREAM_OUTPUT = 0,
1399
1400 /**
1401 * This stream is an input stream; the camera HAL device will be responsible
1402 * for reading buffers from this stream and sending them through the camera
1403 * processing pipeline, as if the buffer was a newly captured image from the
1404 * imager.
Zhijun Hebc358682014-01-23 14:42:54 -08001405 *
1406 * The pixel format for input stream can be any format reported by
Eino-Ville Talvalac5bff0d2014-02-10 16:43:26 -08001407 * android.scaler.availableInputOutputFormatsMap. The pixel format of the
1408 * output stream that is used to produce the reprocessing data may be any
1409 * format reported by android.scaler.availableStreamConfigurations. The
1410 * supported input/output stream combinations depends the camera device
1411 * capabilities, see android.scaler.availableInputOutputFormatsMap for
1412 * stream map details.
Zhijun Hebc358682014-01-23 14:42:54 -08001413 *
Eino-Ville Talvalac5bff0d2014-02-10 16:43:26 -08001414 * This kind of stream is generally used to reprocess data into higher
1415 * quality images (that otherwise would cause a frame rate performance
1416 * loss), or to do off-line reprocessing.
Zhijun Hebc358682014-01-23 14:42:54 -08001417 *
Zhijun Heebdf1282015-01-16 16:44:40 -08001418 * CAMERA_DEVICE_API_VERSION_3_3:
1419 * The typical use cases are OPAQUE (typically ZSL) and YUV reprocessing,
1420 * see S8.2, S8.3 and S10 for more details.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001421 */
1422 CAMERA3_STREAM_INPUT = 1,
1423
1424 /**
1425 * This stream can be used for input and output. Typically, the stream is
1426 * used as an output stream, but occasionally one already-filled buffer may
1427 * be sent back to the HAL device for reprocessing.
1428 *
Eino-Ville Talvalac5bff0d2014-02-10 16:43:26 -08001429 * This kind of stream is meant generally for Zero Shutter Lag (ZSL)
1430 * features, where copying the captured image from the output buffer to the
Zhijun Heb2bc0e52015-01-29 14:44:37 -08001431 * reprocessing input buffer would be expensive. See S8.1 for more details.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001432 *
1433 * Note that the HAL will always be reprocessing data it produced.
1434 *
1435 */
1436 CAMERA3_STREAM_BIDIRECTIONAL = 2,
1437
1438 /**
1439 * Total number of framework-defined stream types
1440 */
1441 CAMERA3_NUM_STREAM_TYPES
1442
1443} camera3_stream_type_t;
1444
1445/**
Yin-Chia Yehe0042082015-03-09 12:15:36 -07001446 * camera3_stream_rotation_t:
1447 *
1448 * The required counterclockwise rotation of camera stream.
1449 */
1450typedef enum camera3_stream_rotation {
1451 /* No rotation */
1452 CAMERA3_STREAM_ROTATION_0 = 0,
1453
1454 /* Rotate by 90 degree counterclockwise */
1455 CAMERA3_STREAM_ROTATION_90 = 1,
1456
1457 /* Rotate by 180 degree counterclockwise */
1458 CAMERA3_STREAM_ROTATION_180 = 2,
1459
1460 /* Rotate by 270 degree counterclockwise */
1461 CAMERA3_STREAM_ROTATION_270 = 3
1462} camera3_stream_rotation_t;
1463
1464/**
Zhijun He21126b72015-05-22 18:12:28 -07001465 * camera3_stream_configuration_mode_t:
1466 *
1467 * This defines the general operation mode for the HAL (for a given stream configuration), where
1468 * modes besides NORMAL have different semantics, and usually limit the generality of the API in
1469 * exchange for higher performance in some particular area.
1470 */
1471typedef enum camera3_stream_configuration_mode {
1472 /**
1473 * Normal stream configuration operation mode. This is the default camera operation mode,
1474 * where all semantics of HAL APIs and metadata controls apply.
1475 */
1476 CAMERA3_STREAM_CONFIGURATION_NORMAL_MODE = 0,
1477
1478 /**
1479 * Special constrained high speed operation mode for devices that can not support high
1480 * speed output in NORMAL mode. All streams in this configuration are operating at high speed
1481 * mode and have different characteristics and limitations to achieve high speed output.
1482 * The NORMAL mode can still be used for high speed output if the HAL can support high speed
1483 * output while satisfying all the semantics of HAL APIs and metadata controls. It is
1484 * recommended for the HAL to support high speed output in NORMAL mode (by advertising the high
1485 * speed FPS ranges in android.control.aeAvailableTargetFpsRanges) if possible.
1486 *
1487 * This mode has below limitations/requirements:
1488 *
1489 * 1. The HAL must support up to 2 streams with sizes reported by
1490 * android.control.availableHighSpeedVideoConfigurations.
1491 * 2. In this mode, the HAL is expected to output up to 120fps or higher. This mode must
1492 * support the targeted FPS range and size configurations reported by
1493 * android.control.availableHighSpeedVideoConfigurations.
1494 * 3. The HAL must support HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED output stream format.
1495 * 4. To achieve efficient high speed streaming, the HAL may have to aggregate
1496 * multiple frames together and send to camera device for processing where the request
1497 * controls are same for all the frames in this batch (batch mode). The HAL must support
1498 * max batch size and the max batch size requirements defined by
1499 * android.control.availableHighSpeedVideoConfigurations.
1500 * 5. In this mode, the HAL must override aeMode, awbMode, and afMode to ON, ON, and
1501 * CONTINUOUS_VIDEO, respectively. All post-processing block mode controls must be
1502 * overridden to be FAST. Therefore, no manual control of capture and post-processing
1503 * parameters is possible. All other controls operate the same as when
1504 * android.control.mode == AUTO. This means that all other android.control.* fields
1505 * must continue to work, such as
1506 *
1507 * android.control.aeTargetFpsRange
1508 * android.control.aeExposureCompensation
1509 * android.control.aeLock
1510 * android.control.awbLock
1511 * android.control.effectMode
1512 * android.control.aeRegions
1513 * android.control.afRegions
1514 * android.control.awbRegions
1515 * android.control.afTrigger
1516 * android.control.aePrecaptureTrigger
1517 *
1518 * Outside of android.control.*, the following controls must work:
1519 *
1520 * android.flash.mode (TORCH mode only, automatic flash for still capture will not work
1521 * since aeMode is ON)
1522 * android.lens.opticalStabilizationMode (if it is supported)
1523 * android.scaler.cropRegion
1524 * android.statistics.faceDetectMode (if it is supported)
Shuzhen Wang13a19e12017-03-08 16:41:13 -08001525 * 6. To reduce the amount of data passed across process boundaries at
1526 * high frame rate, within one batch, camera framework only propagates
1527 * the last shutter notify and the last capture results (including partial
1528 * results and final result) to the app. The shutter notifies and capture
1529 * results for the other requests in the batch are derived by
1530 * the camera framework. As a result, the HAL can return empty metadata
1531 * except for the last result in the batch.
Zhijun He21126b72015-05-22 18:12:28 -07001532 *
1533 * For more details about high speed stream requirements, see
1534 * android.control.availableHighSpeedVideoConfigurations and CONSTRAINED_HIGH_SPEED_VIDEO
1535 * capability defined in android.request.availableCapabilities.
1536 *
1537 * This mode only needs to be supported by HALs that include CONSTRAINED_HIGH_SPEED_VIDEO in
1538 * the android.request.availableCapabilities static metadata.
1539 */
1540 CAMERA3_STREAM_CONFIGURATION_CONSTRAINED_HIGH_SPEED_MODE = 1,
1541
1542 /**
1543 * First value for vendor-defined stream configuration modes.
1544 */
1545 CAMERA3_VENDOR_STREAM_CONFIGURATION_MODE_START = 0x8000
1546} camera3_stream_configuration_mode_t;
1547
1548/**
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001549 * camera3_stream_t:
1550 *
1551 * A handle to a single camera input or output stream. A stream is defined by
1552 * the framework by its buffer resolution and format, and additionally by the
1553 * HAL with the gralloc usage flags and the maximum in-flight buffer count.
1554 *
1555 * The stream structures are owned by the framework, but pointers to a
1556 * camera3_stream passed into the HAL by configure_streams() are valid until the
1557 * end of the first subsequent configure_streams() call that _does not_ include
1558 * that camera3_stream as an argument, or until the end of the close() call.
1559 *
1560 * All camera3_stream framework-controlled members are immutable once the
1561 * camera3_stream is passed into configure_streams(). The HAL may only change
1562 * the HAL-controlled parameters during a configure_streams() call, except for
1563 * the contents of the private pointer.
1564 *
1565 * If a configure_streams() call returns a non-fatal error, all active streams
1566 * remain valid as if configure_streams() had not been called.
1567 *
1568 * The endpoint of the stream is not visible to the camera HAL device.
Alex Ray2ce219a2013-06-14 15:09:30 -07001569 * In DEVICE_API_VERSION_3_1, this was changed to share consumer usage flags
1570 * on streams where the camera is a producer (OUTPUT and BIDIRECTIONAL stream
1571 * types) see the usage field below.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001572 */
1573typedef struct camera3_stream {
1574
1575 /*****
1576 * Set by framework before configure_streams()
1577 */
1578
1579 /**
1580 * The type of the stream, one of the camera3_stream_type_t values.
1581 */
1582 int stream_type;
1583
1584 /**
1585 * The width in pixels of the buffers in this stream
1586 */
1587 uint32_t width;
1588
1589 /**
1590 * The height in pixels of the buffers in this stream
1591 */
1592 uint32_t height;
1593
1594 /**
1595 * The pixel format for the buffers in this stream. Format is a value from
1596 * the HAL_PIXEL_FORMAT_* list in system/core/include/system/graphics.h, or
1597 * from device-specific headers.
1598 *
1599 * If HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED is used, then the platform
1600 * gralloc module will select a format based on the usage flags provided by
1601 * the camera device and the other endpoint of the stream.
1602 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08001603 * <= CAMERA_DEVICE_API_VERSION_3_1:
1604 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001605 * The camera HAL device must inspect the buffers handed to it in the
1606 * subsequent register_stream_buffers() call to obtain the
1607 * implementation-specific format details, if necessary.
Igor Murashkin78aa1262014-01-09 16:23:43 -08001608 *
1609 * >= CAMERA_DEVICE_API_VERSION_3_2:
1610 *
1611 * register_stream_buffers() won't be called by the framework, so the HAL
1612 * should configure the ISP and sensor pipeline based purely on the sizes,
1613 * usage flags, and formats for the configured streams.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001614 */
1615 int format;
1616
1617 /*****
1618 * Set by HAL during configure_streams().
1619 */
1620
1621 /**
1622 * The gralloc usage flags for this stream, as needed by the HAL. The usage
1623 * flags are defined in gralloc.h (GRALLOC_USAGE_*), or in device-specific
1624 * headers.
1625 *
1626 * For output streams, these are the HAL's producer usage flags. For input
1627 * streams, these are the HAL's consumer usage flags. The usage flags from
1628 * the producer and the consumer will be combined together and then passed
1629 * to the platform gralloc HAL module for allocating the gralloc buffers for
1630 * each stream.
Alex Ray2ce219a2013-06-14 15:09:30 -07001631 *
1632 * Version information:
1633 *
1634 * == CAMERA_DEVICE_API_VERSION_3_0:
1635 *
1636 * No initial value guaranteed when passed via configure_streams().
1637 * HAL may not use this field as input, and must write over this field
1638 * with its usage flags.
1639 *
1640 * >= CAMERA_DEVICE_API_VERSION_3_1:
1641 *
1642 * For stream_type OUTPUT and BIDIRECTIONAL, when passed via
1643 * configure_streams(), the initial value of this is the consumer's
1644 * usage flags. The HAL may use these consumer flags to decide stream
1645 * configuration.
1646 * For stream_type INPUT, when passed via configure_streams(), the initial
1647 * value of this is 0.
1648 * For all streams passed via configure_streams(), the HAL must write
1649 * over this field with its usage flags.
Shuzhen Wang07a5cd52017-03-20 09:26:42 -07001650 *
1651 * From Android O, the usage flag for an output stream may be bitwise
1652 * combination of usage flags for multiple consumers, for the purpose of
1653 * sharing one camera stream between those consumers. The HAL must fail
1654 * configure_streams call with -EINVAL if the combined flags cannot be
1655 * supported due to imcompatible buffer format, dataSpace, or other hardware
1656 * limitations.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001657 */
1658 uint32_t usage;
1659
1660 /**
1661 * The maximum number of buffers the HAL device may need to have dequeued at
1662 * the same time. The HAL device may not have more buffers in-flight from
1663 * this stream than this value.
1664 */
1665 uint32_t max_buffers;
1666
1667 /**
1668 * A handle to HAL-private information for the stream. Will not be inspected
1669 * by the framework code.
1670 */
1671 void *priv;
1672
Eino-Ville Talvala453c7902015-03-06 13:22:03 -08001673 /**
1674 * A field that describes the contents of the buffer. The format and buffer
1675 * dimensions define the memory layout and structure of the stream buffers,
1676 * while dataSpace defines the meaning of the data within the buffer.
1677 *
1678 * For most formats, dataSpace defines the color space of the image data.
1679 * In addition, for some formats, dataSpace indicates whether image- or
1680 * depth-based data is requested. See system/core/include/system/graphics.h
1681 * for details of formats and valid dataSpace values for each format.
1682 *
1683 * Version information:
1684 *
1685 * < CAMERA_DEVICE_API_VERSION_3_3:
1686 *
1687 * Not defined and should not be accessed. dataSpace should be assumed to
1688 * be HAL_DATASPACE_UNKNOWN, and the appropriate color space, etc, should
1689 * be determined from the usage flags and the format.
1690 *
Eino-Ville Talvalacd86b0d2016-03-06 17:08:40 -08001691 * = CAMERA_DEVICE_API_VERSION_3_3:
Eino-Ville Talvala453c7902015-03-06 13:22:03 -08001692 *
1693 * Always set by the camera service. HAL must use this dataSpace to
1694 * configure the stream to the correct colorspace, or to select between
Eino-Ville Talvalacd86b0d2016-03-06 17:08:40 -08001695 * color and depth outputs if supported. The dataspace values are the
1696 * legacy definitions in graphics.h
1697 *
1698 * >= CAMERA_DEVICE_API_VERSION_3_4:
1699 *
1700 * Always set by the camera service. HAL must use this dataSpace to
1701 * configure the stream to the correct colorspace, or to select between
1702 * color and depth outputs if supported. The dataspace values are set
1703 * using the V0 dataspace definitions in graphics.h
Eino-Ville Talvala453c7902015-03-06 13:22:03 -08001704 */
1705 android_dataspace_t data_space;
1706
Yin-Chia Yehe0042082015-03-09 12:15:36 -07001707 /**
1708 * The required output rotation of the stream, one of
1709 * the camera3_stream_rotation_t values. This must be inspected by HAL along
1710 * with stream width and height. For example, if the rotation is 90 degree
1711 * and the stream width and height is 720 and 1280 respectively, camera service
1712 * will supply buffers of size 720x1280, and HAL should capture a 1280x720 image
Yin-Chia Yeh5407ef12015-03-12 15:09:27 -07001713 * and rotate the image by 90 degree counterclockwise. The rotation field is
1714 * no-op when the stream type is input. Camera HAL must ignore the rotation
1715 * field for an input stream.
Yin-Chia Yehe0042082015-03-09 12:15:36 -07001716 *
1717 * <= CAMERA_DEVICE_API_VERSION_3_2:
1718 *
1719 * Not defined and must not be accessed. HAL must not apply any rotation
1720 * on output images.
1721 *
1722 * >= CAMERA_DEVICE_API_VERSION_3_3:
1723 *
1724 * Always set by camera service. HAL must inspect this field during stream
1725 * configuration and returns -EINVAL if HAL cannot perform such rotation.
1726 * HAL must always support CAMERA3_STREAM_ROTATION_0, so a
1727 * configure_streams() call must not fail for unsupported rotation if
1728 * rotation field of all streams is CAMERA3_STREAM_ROTATION_0.
1729 *
1730 */
1731 int rotation;
1732
Shuzhen Wangbf39eb52017-11-29 15:16:03 -08001733 /**
1734 * The physical camera id this stream belongs to.
1735 *
1736 * <= CAMERA_DEVICE_API_VERISON_3_4:
1737 *
1738 * Not defined and must not be accessed.
1739 *
1740 * >= CAMERA_DEVICE_API_VERISON_3_5:
1741 *
1742 * Always set by camera service. If the camera device is not a logical
1743 * multi camera, or if the camera is a logical multi camera but the stream
1744 * is not a physical output stream, this field will point to a 0-length
1745 * string.
1746 *
1747 * A logical multi camera is a camera device backed by multiple physical
1748 * cameras that are also exposed to the application. And for a logical
1749 * multi camera, a physical output stream is an output stream specifically
1750 * requested on an underlying physical camera.
1751 *
1752 * For an input stream, this field is guaranteed to be a 0-length string.
1753 */
1754 const char* physical_camera_id;
1755
Eino-Ville Talvala453c7902015-03-06 13:22:03 -08001756 /* reserved for future use */
Shuzhen Wangbf39eb52017-11-29 15:16:03 -08001757 void *reserved[6];
Eino-Ville Talvala453c7902015-03-06 13:22:03 -08001758
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001759} camera3_stream_t;
1760
1761/**
1762 * camera3_stream_configuration_t:
1763 *
1764 * A structure of stream definitions, used by configure_streams(). This
1765 * structure defines all the output streams and the reprocessing input
1766 * stream for the current camera use case.
1767 */
1768typedef struct camera3_stream_configuration {
1769 /**
1770 * The total number of streams requested by the framework. This includes
1771 * both input and output streams. The number of streams will be at least 1,
1772 * and there will be at least one output-capable stream.
1773 */
1774 uint32_t num_streams;
1775
1776 /**
Eino-Ville Talvala3a6e6b42013-03-06 13:21:11 -08001777 * An array of camera stream pointers, defining the input/output
1778 * configuration for the camera HAL device.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001779 *
1780 * At most one input-capable stream may be defined (INPUT or BIDIRECTIONAL)
1781 * in a single configuration.
1782 *
1783 * At least one output-capable stream must be defined (OUTPUT or
1784 * BIDIRECTIONAL).
1785 */
Eino-Ville Talvala3a6e6b42013-03-06 13:21:11 -08001786 camera3_stream_t **streams;
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001787
Zhijun He21126b72015-05-22 18:12:28 -07001788 /**
1789 * >= CAMERA_DEVICE_API_VERSION_3_3:
1790 *
Eino-Ville Talvalacd86b0d2016-03-06 17:08:40 -08001791 * The operation mode of streams in this configuration, one of the value
1792 * defined in camera3_stream_configuration_mode_t. The HAL can use this
1793 * mode as an indicator to set the stream property (e.g.,
1794 * camera3_stream->max_buffers) appropriately. For example, if the
1795 * configuration is
1796 * CAMERA3_STREAM_CONFIGURATION_CONSTRAINED_HIGH_SPEED_MODE, the HAL may
1797 * want to set aside more buffers for batch mode operation (see
1798 * android.control.availableHighSpeedVideoConfigurations for batch mode
1799 * definition).
Zhijun He21126b72015-05-22 18:12:28 -07001800 *
1801 */
1802 uint32_t operation_mode;
Emilian Peeveec2ee92017-11-08 19:33:27 +00001803
1804 /**
1805 * >= CAMERA_DEVICE_API_VERSION_3_5:
1806 *
1807 * The session metadata buffer contains the initial values of
1808 * ANDROID_REQUEST_AVAILABLE_SESSION_KEYS. This field is optional
1809 * and camera clients can choose to ignore it, in which case it will
1810 * be set to NULL. If parameters are present, then Hal should examine
1811 * the parameter values and configure its internal camera pipeline
1812 * accordingly.
1813 */
1814 const camera_metadata_t *session_parameters;
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -07001815
1816 /**
1817 * >= CAMERA_DEVICE_API_VERSION_3_6:
1818 *
1819 * An incrementing counter used for HAL to keep track of the stream
1820 * configuration and the paired oneway signal_stream_flush call. When the
1821 * counter in signal_stream_flush call is less than the counter here, that
1822 * signal_stream_flush call is stale.
1823 */
1824 int32_t stream_configuration_counter;
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001825} camera3_stream_configuration_t;
1826
1827/**
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001828 * camera3_buffer_status_t:
1829 *
1830 * The current status of a single stream buffer.
1831 */
1832typedef enum camera3_buffer_status {
1833 /**
1834 * The buffer is in a normal state, and can be used after waiting on its
1835 * sync fence.
1836 */
1837 CAMERA3_BUFFER_STATUS_OK = 0,
1838
1839 /**
1840 * The buffer does not contain valid data, and the data in it should not be
1841 * used. The sync fence must still be waited on before reusing the buffer.
1842 */
1843 CAMERA3_BUFFER_STATUS_ERROR = 1
1844
1845} camera3_buffer_status_t;
1846
1847/**
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001848 * camera3_stream_buffer_t:
1849 *
1850 * A single buffer from a camera3 stream. It includes a handle to its parent
1851 * stream, the handle to the gralloc buffer itself, and sync fences
1852 *
1853 * The buffer does not specify whether it is to be used for input or output;
1854 * that is determined by its parent stream type and how the buffer is passed to
1855 * the HAL device.
1856 */
1857typedef struct camera3_stream_buffer {
1858 /**
1859 * The handle of the stream this buffer is associated with
1860 */
1861 camera3_stream_t *stream;
1862
1863 /**
1864 * The native handle to the buffer
1865 */
1866 buffer_handle_t *buffer;
1867
1868 /**
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001869 * Current state of the buffer, one of the camera3_buffer_status_t
1870 * values. The framework will not pass buffers to the HAL that are in an
1871 * error state. In case a buffer could not be filled by the HAL, it must
1872 * have its status set to CAMERA3_BUFFER_STATUS_ERROR when returned to the
1873 * framework with process_capture_result().
1874 */
1875 int status;
1876
1877 /**
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001878 * The acquire sync fence for this buffer. The HAL must wait on this fence
1879 * fd before attempting to read from or write to this buffer.
1880 *
1881 * The framework may be set to -1 to indicate that no waiting is necessary
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001882 * for this buffer.
1883 *
1884 * When the HAL returns an output buffer to the framework with
1885 * process_capture_result(), the acquire_fence must be set to -1. If the HAL
1886 * never waits on the acquire_fence due to an error in filling a buffer,
1887 * when calling process_capture_result() the HAL must set the release_fence
1888 * of the buffer to be the acquire_fence passed to it by the framework. This
1889 * will allow the framework to wait on the fence before reusing the buffer.
1890 *
1891 * For input buffers, the HAL must not change the acquire_fence field during
1892 * the process_capture_request() call.
Zhijun Heceac9e32014-02-05 20:49:45 -08001893 *
1894 * >= CAMERA_DEVICE_API_VERSION_3_2:
1895 *
1896 * When the HAL returns an input buffer to the framework with
1897 * process_capture_result(), the acquire_fence must be set to -1. If the HAL
Eino-Ville Talvalac5bff0d2014-02-10 16:43:26 -08001898 * never waits on input buffer acquire fence due to an error, the sync
1899 * fences should be handled similarly to the way they are handled for output
1900 * buffers.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001901 */
1902 int acquire_fence;
1903
1904 /**
1905 * The release sync fence for this buffer. The HAL must set this fence when
1906 * returning buffers to the framework, or write -1 to indicate that no
1907 * waiting is required for this buffer.
1908 *
Zhijun Heceac9e32014-02-05 20:49:45 -08001909 * For the output buffers, the fences must be set in the output_buffers
1910 * array passed to process_capture_result().
1911 *
1912 * <= CAMERA_DEVICE_API_VERSION_3_1:
1913 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001914 * For the input buffer, the release fence must be set by the
Zhijun Heceac9e32014-02-05 20:49:45 -08001915 * process_capture_request() call.
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001916 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08001917 * >= CAMERA_DEVICE_API_VERSION_3_2:
1918 *
Zhijun Heceac9e32014-02-05 20:49:45 -08001919 * For the input buffer, the fences must be set in the input_buffer
1920 * passed to process_capture_result().
1921 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08001922 * After signaling the release_fence for this buffer, the HAL
1923 * should not make any further attempts to access this buffer as the
1924 * ownership has been fully transferred back to the framework.
1925 *
1926 * If a fence of -1 was specified then the ownership of this buffer
1927 * is transferred back immediately upon the call of process_capture_result.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001928 */
1929 int release_fence;
1930
1931} camera3_stream_buffer_t;
1932
1933/**
1934 * camera3_stream_buffer_set_t:
1935 *
1936 * The complete set of gralloc buffers for a stream. This structure is given to
1937 * register_stream_buffers() to allow the camera HAL device to register/map/etc
1938 * newly allocated stream buffers.
Igor Murashkin78aa1262014-01-09 16:23:43 -08001939 *
1940 * >= CAMERA_DEVICE_API_VERSION_3_2:
1941 *
1942 * Deprecated (and not used). In particular,
1943 * register_stream_buffers is also deprecated and will never be invoked.
1944 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001945 */
1946typedef struct camera3_stream_buffer_set {
1947 /**
1948 * The stream handle for the stream these buffers belong to
1949 */
1950 camera3_stream_t *stream;
1951
1952 /**
1953 * The number of buffers in this stream. It is guaranteed to be at least
1954 * stream->max_buffers.
1955 */
1956 uint32_t num_buffers;
1957
1958 /**
1959 * The array of gralloc buffer handles for this stream. If the stream format
1960 * is set to HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, the camera HAL device
1961 * should inspect the passed-in buffers to determine any platform-private
1962 * pixel format information.
1963 */
Eino-Ville Talvala3a6e6b42013-03-06 13:21:11 -08001964 buffer_handle_t **buffers;
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001965
1966} camera3_stream_buffer_set_t;
1967
1968/**
1969 * camera3_jpeg_blob:
1970 *
Shuzhen Wangf43b5442019-01-24 16:32:31 -08001971 * Transport header for compressed JPEG or JPEG_APP_SEGMENTS buffers in output streams.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001972 *
Shuzhen Wangf43b5442019-01-24 16:32:31 -08001973 * To capture JPEG or JPEG_APP_SEGMENTS images, a stream is created using the pixel format
Zhijun He44a89152014-04-24 14:34:53 -07001974 * HAL_PIXEL_FORMAT_BLOB. The buffer size for the stream is calculated by the
Shuzhen Wangf43b5442019-01-24 16:32:31 -08001975 * framework, based on the static metadata field android.jpeg.maxSize for JPEG,
1976 * and android.jpeg.maxAppsSegments for JPEG_APP_SEGMENTS.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001977 *
Shuzhen Wangf43b5442019-01-24 16:32:31 -08001978 * Since compressed JPEG/JPEG_APP_SEGMENTS images are of variable size, the HAL needs to
1979 * include the final size of the image using this structure inside the output
1980 * stream buffer. The JPEG blob ID field must be set to CAMERA3_JPEG_BLOB_ID for
1981 * JPEG and CAMERA3_JPEG_APP_SEGMENTS_BLOB_ID for APP segments.
1982 *
1983 * Transport header should be at the end of the output stream buffer. That
Zhijun He44a89152014-04-24 14:34:53 -07001984 * means the jpeg_blob_id must start at byte[buffer_size -
1985 * sizeof(camera3_jpeg_blob)], where the buffer_size is the size of gralloc buffer.
Shuzhen Wangf43b5442019-01-24 16:32:31 -08001986 * The blob data itself starts at the beginning of the buffer and should be
1987 * jpeg_size bytes long. HAL using this transport header for JPEG must account for
1988 * it in android.jpeg.maxSize. For JPEG APP segments, camera framework makes
1989 * sure that the output stream buffer is large enough for the transport header.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001990 */
1991typedef struct camera3_jpeg_blob {
1992 uint16_t jpeg_blob_id;
1993 uint32_t jpeg_size;
1994} camera3_jpeg_blob_t;
1995
1996enum {
Shuzhen Wangf43b5442019-01-24 16:32:31 -08001997 CAMERA3_JPEG_BLOB_ID = 0x00FF,
1998 CAMERA3_JPEG_APP_SEGMENTS_BLOB_ID = 0x0100,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001999};
2000
2001/**********************************************************************
2002 *
2003 * Message definitions for the HAL notify() callback.
2004 *
2005 * These definitions are used for the HAL notify callback, to signal
2006 * asynchronous events from the HAL device to the Android framework.
2007 *
2008 */
2009
2010/**
2011 * camera3_msg_type:
2012 *
2013 * Indicates the type of message sent, which specifies which member of the
2014 * message union is valid.
2015 *
2016 */
2017typedef enum camera3_msg_type {
2018 /**
2019 * An error has occurred. camera3_notify_msg.message.error contains the
2020 * error information.
2021 */
2022 CAMERA3_MSG_ERROR = 1,
2023
2024 /**
Chien-Yu Chen73b49eb2015-05-28 17:13:05 -07002025 * The exposure of a given request or processing a reprocess request has
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002026 * begun. camera3_notify_msg.message.shutter contains the information
2027 * the capture.
2028 */
2029 CAMERA3_MSG_SHUTTER = 2,
2030
2031 /**
2032 * Number of framework message types
2033 */
2034 CAMERA3_NUM_MESSAGES
2035
2036} camera3_msg_type_t;
2037
2038/**
2039 * Defined error codes for CAMERA_MSG_ERROR
2040 */
2041typedef enum camera3_error_msg_code {
2042 /**
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002043 * A serious failure occured. No further frames or buffer streams will
2044 * be produced by the device. Device should be treated as closed. The
2045 * client must reopen the device to use it again. The frame_number field
2046 * is unused.
2047 */
Alex Rayd5ddbc92013-02-15 13:47:24 -08002048 CAMERA3_MSG_ERROR_DEVICE = 1,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002049
2050 /**
2051 * An error has occurred in processing a request. No output (metadata or
2052 * buffers) will be produced for this request. The frame_number field
2053 * specifies which request has been dropped. Subsequent requests are
2054 * unaffected, and the device remains operational.
2055 */
Alex Rayd5ddbc92013-02-15 13:47:24 -08002056 CAMERA3_MSG_ERROR_REQUEST = 2,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002057
2058 /**
2059 * An error has occurred in producing an output result metadata buffer
2060 * for a request, but output stream buffers for it will still be
2061 * available. Subsequent requests are unaffected, and the device remains
2062 * operational. The frame_number field specifies the request for which
2063 * result metadata won't be available.
2064 */
Alex Rayd5ddbc92013-02-15 13:47:24 -08002065 CAMERA3_MSG_ERROR_RESULT = 3,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002066
2067 /**
2068 * An error has occurred in placing an output buffer into a stream for a
2069 * request. The frame metadata and other buffers may still be
2070 * available. Subsequent requests are unaffected, and the device remains
2071 * operational. The frame_number field specifies the request for which the
2072 * buffer was dropped, and error_stream contains a pointer to the stream
Eino-Ville Talvalacd86b0d2016-03-06 17:08:40 -08002073 * that dropped the frame.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002074 */
Alex Rayd5ddbc92013-02-15 13:47:24 -08002075 CAMERA3_MSG_ERROR_BUFFER = 4,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002076
2077 /**
2078 * Number of error types
2079 */
2080 CAMERA3_MSG_NUM_ERRORS
2081
2082} camera3_error_msg_code_t;
2083
2084/**
2085 * camera3_error_msg_t:
2086 *
2087 * Message contents for CAMERA3_MSG_ERROR
2088 */
2089typedef struct camera3_error_msg {
2090 /**
2091 * Frame number of the request the error applies to. 0 if the frame number
2092 * isn't applicable to the error.
2093 */
2094 uint32_t frame_number;
2095
2096 /**
2097 * Pointer to the stream that had a failure. NULL if the stream isn't
2098 * applicable to the error.
2099 */
2100 camera3_stream_t *error_stream;
2101
2102 /**
2103 * The code for this error; one of the CAMERA_MSG_ERROR enum values.
2104 */
2105 int error_code;
2106
2107} camera3_error_msg_t;
2108
2109/**
2110 * camera3_shutter_msg_t:
2111 *
2112 * Message contents for CAMERA3_MSG_SHUTTER
2113 */
2114typedef struct camera3_shutter_msg {
2115 /**
Chien-Yu Chen73b49eb2015-05-28 17:13:05 -07002116 * Frame number of the request that has begun exposure or reprocessing.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002117 */
2118 uint32_t frame_number;
2119
2120 /**
Chien-Yu Chen73b49eb2015-05-28 17:13:05 -07002121 * Timestamp for the start of capture. For a reprocess request, this must
2122 * be input image's start of capture. This must match the capture result
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002123 * metadata's sensor exposure start timestamp.
2124 */
2125 uint64_t timestamp;
2126
2127} camera3_shutter_msg_t;
2128
2129/**
2130 * camera3_notify_msg_t:
2131 *
2132 * The message structure sent to camera3_callback_ops_t.notify()
2133 */
2134typedef struct camera3_notify_msg {
2135
2136 /**
2137 * The message type. One of camera3_notify_msg_type, or a private extension.
2138 */
2139 int type;
2140
2141 union {
2142 /**
2143 * Error message contents. Valid if type is CAMERA3_MSG_ERROR
2144 */
2145 camera3_error_msg_t error;
2146
2147 /**
2148 * Shutter message contents. Valid if type is CAMERA3_MSG_SHUTTER
2149 */
2150 camera3_shutter_msg_t shutter;
2151
2152 /**
2153 * Generic message contents. Used to ensure a minimum size for custom
2154 * message types.
2155 */
2156 uint8_t generic[32];
2157 } message;
2158
2159} camera3_notify_msg_t;
2160
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -07002161
2162/**********************************************************************
2163 *
2164 * Types definition for request_stream_buffers() callback.
2165 *
2166 */
2167
2168/**
2169 * camera3_buffer_request_status_t:
2170 *
2171 * The overall buffer request status returned by request_stream_buffers()
2172 */
2173typedef enum camera3_buffer_request_status {
2174 /**
2175 * request_stream_buffers() call succeeded and all requested buffers are
2176 * returned.
2177 */
2178 CAMERA3_BUF_REQ_OK = 0,
2179
2180 /**
2181 * request_stream_buffers() call failed for some streams.
2182 * Check per stream status for each returned camera3_stream_buffer_ret_t.
2183 */
2184 CAMERA3_BUF_REQ_FAILED_PARTIAL = 1,
2185
2186 /**
2187 * request_stream_buffers() call failed for all streams and no buffers are
2188 * returned at all. Camera service is about to or is performing
2189 * configure_streams() call. HAL must wait until next configure_streams()
2190 * call is finished before requesting buffers again.
2191 */
2192 CAMERA3_BUF_REQ_FAILED_CONFIGURING = 2,
2193
2194 /**
2195 * request_stream_buffers() call failed for all streams and no buffers are
2196 * returned at all. Failure due to bad camera3_buffer_request input, eg:
2197 * unknown stream or repeated stream in the list of buffer requests.
2198 */
2199 CAMERA3_BUF_REQ_FAILED_ILLEGAL_ARGUMENTS = 3,
2200
2201 /**
2202 * request_stream_buffers() call failed for all streams and no buffers are
2203 * returned at all due to unknown reason.
2204 */
2205 CAMERA3_BUF_REQ_FAILED_UNKNOWN = 4,
2206
2207 /**
2208 * Number of buffer request status
2209 */
2210 CAMERA3_BUF_REQ_NUM_STATUS
2211
2212} camera3_buffer_request_status_t;
2213
2214/**
2215 * camera3_stream_buffer_req_status_t:
2216 *
2217 * The per stream buffer request status returned by request_stream_buffers()
2218 */
2219typedef enum camera3_stream_buffer_req_status {
2220 /**
2221 * Get buffer succeeds and all requested buffers are returned.
2222 */
2223 CAMERA3_PS_BUF_REQ_OK = 0,
2224
2225 /**
2226 * Get buffer failed due to timeout waiting for an available buffer. This is
2227 * likely due to the client application holding too many buffers, or the
2228 * system is under memory pressure.
2229 * This is not a fatal error. HAL can try to request buffer for this stream
2230 * later. If HAL cannot get a buffer for certain capture request in time
2231 * due to this error, HAL can send an ERROR_REQUEST to camera service and
2232 * drop processing that request.
2233 */
2234 CAMERA3_PS_BUF_REQ_NO_BUFFER_AVAILABLE = 1,
2235
2236 /**
2237 * Get buffer failed due to HAL has reached its maxBuffer count. This is not
2238 * a fatal error. HAL can try to request buffer for this stream again after
2239 * it returns at least one buffer of that stream to camera service.
2240 */
2241 CAMERA3_PS_BUF_REQ_MAX_BUFFER_EXCEEDED = 2,
2242
2243 /**
2244 * Get buffer failed due to the stream is disconnected by client
2245 * application, has been removed, or not recognized by camera service.
2246 * This means application is no longer interested in this stream.
2247 * Requesting buffer for this stream will never succeed after this error is
2248 * returned. HAL must safely return all buffers of this stream after
2249 * getting this error. If HAL gets another capture request later targeting
2250 * a disconnected stream, HAL must send an ERROR_REQUEST to camera service
2251 * and drop processing that request.
2252 */
2253 CAMERA3_PS_BUF_REQ_STREAM_DISCONNECTED = 3,
2254
2255 /**
2256 * Get buffer failed for unknown reason. This is a fatal error and HAL must
2257 * send ERROR_DEVICE to camera service and be ready to be closed.
2258 */
2259 CAMERA3_PS_BUF_REQ_UNKNOWN_ERROR = 4,
2260
2261 /**
2262 * Number of buffer request status
2263 */
2264 CAMERA3_PS_BUF_REQ_NUM_STATUS
2265} camera3_stream_buffer_req_status_t;
2266
2267typedef struct camera3_buffer_request {
2268 /**
2269 * The stream HAL wants to request buffer from
2270 */
2271 camera3_stream_t *stream;
2272
2273 /**
2274 * The number of buffers HAL requested
2275 */
2276 uint32_t num_buffers_requested;
2277} camera3_buffer_request_t;
2278
2279typedef struct camera3_stream_buffer_ret {
2280 /**
2281 * The stream HAL wants to request buffer from
2282 */
2283 camera3_stream_t *stream;
2284
2285 /**
2286 * The status of buffer request of this stream
2287 */
2288 camera3_stream_buffer_req_status_t status;
2289
2290 /**
2291 * Number of output buffers returned. Must be 0 when above status is not
2292 * CAMERA3_PS_BUF_REQ_OK; otherwise the value must be equal to
2293 * num_buffers_requested in the corresponding camera3_buffer_request_t
2294 */
2295 uint32_t num_output_buffers;
2296
2297 /**
2298 * The returned output buffers for the stream.
2299 * Caller of request_stream_buffers() should supply this with enough memory
2300 * (num_buffers_requested * sizeof(camera3_stream_buffer_t))
2301 */
2302 camera3_stream_buffer_t *output_buffers;
2303} camera3_stream_buffer_ret_t;
2304
2305
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002306/**********************************************************************
2307 *
2308 * Capture request/result definitions for the HAL process_capture_request()
2309 * method, and the process_capture_result() callback.
2310 *
2311 */
2312
2313/**
2314 * camera3_request_template_t:
2315 *
2316 * Available template types for
2317 * camera3_device_ops.construct_default_request_settings()
2318 */
2319typedef enum camera3_request_template {
2320 /**
2321 * Standard camera preview operation with 3A on auto.
2322 */
2323 CAMERA3_TEMPLATE_PREVIEW = 1,
2324
2325 /**
2326 * Standard camera high-quality still capture with 3A and flash on auto.
2327 */
2328 CAMERA3_TEMPLATE_STILL_CAPTURE = 2,
2329
2330 /**
2331 * Standard video recording plus preview with 3A on auto, torch off.
2332 */
2333 CAMERA3_TEMPLATE_VIDEO_RECORD = 3,
2334
2335 /**
2336 * High-quality still capture while recording video. Application will
2337 * include preview, video record, and full-resolution YUV or JPEG streams in
2338 * request. Must not cause stuttering on video stream. 3A on auto.
2339 */
2340 CAMERA3_TEMPLATE_VIDEO_SNAPSHOT = 4,
2341
2342 /**
2343 * Zero-shutter-lag mode. Application will request preview and
2344 * full-resolution data for each frame, and reprocess it to JPEG when a
2345 * still image is requested by user. Settings should provide highest-quality
2346 * full-resolution images without compromising preview frame rate. 3A on
2347 * auto.
2348 */
2349 CAMERA3_TEMPLATE_ZERO_SHUTTER_LAG = 5,
2350
Zhijun Heb0c939f2013-12-13 15:56:33 -08002351 /**
2352 * A basic template for direct application control of capture
2353 * parameters. All automatic control is disabled (auto-exposure, auto-white
2354 * balance, auto-focus), and post-processing parameters are set to preview
2355 * quality. The manual capture parameters (exposure, sensitivity, etc.)
2356 * are set to reasonable defaults, but should be overridden by the
2357 * application depending on the intended use case.
2358 */
2359 CAMERA3_TEMPLATE_MANUAL = 6,
2360
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002361 /* Total number of templates */
2362 CAMERA3_TEMPLATE_COUNT,
2363
2364 /**
2365 * First value for vendor-defined request templates
2366 */
2367 CAMERA3_VENDOR_TEMPLATE_START = 0x40000000
2368
2369} camera3_request_template_t;
2370
2371/**
2372 * camera3_capture_request_t:
2373 *
2374 * A single request for image capture/buffer reprocessing, sent to the Camera
2375 * HAL device by the framework in process_capture_request().
2376 *
2377 * The request contains the settings to be used for this capture, and the set of
2378 * output buffers to write the resulting image data in. It may optionally
2379 * contain an input buffer, in which case the request is for reprocessing that
2380 * input buffer instead of capturing a new image with the camera sensor. The
2381 * capture is identified by the frame_number.
2382 *
2383 * In response, the camera HAL device must send a camera3_capture_result
2384 * structure asynchronously to the framework, using the process_capture_result()
2385 * callback.
2386 */
2387typedef struct camera3_capture_request {
2388 /**
2389 * The frame number is an incrementing integer set by the framework to
2390 * uniquely identify this capture. It needs to be returned in the result
2391 * call, and is also used to identify the request in asynchronous
2392 * notifications sent to camera3_callback_ops_t.notify().
2393 */
2394 uint32_t frame_number;
2395
2396 /**
2397 * The settings buffer contains the capture and processing parameters for
2398 * the request. As a special case, a NULL settings buffer indicates that the
2399 * settings are identical to the most-recently submitted capture request. A
2400 * NULL buffer cannot be used as the first submitted request after a
2401 * configure_streams() call.
2402 */
2403 const camera_metadata_t *settings;
2404
2405 /**
2406 * The input stream buffer to use for this request, if any.
2407 *
2408 * If input_buffer is NULL, then the request is for a new capture from the
2409 * imager. If input_buffer is valid, the request is for reprocessing the
2410 * image contained in input_buffer.
2411 *
2412 * In the latter case, the HAL must set the release_fence of the
2413 * input_buffer to a valid sync fence, or to -1 if the HAL does not support
2414 * sync, before process_capture_request() returns.
2415 *
2416 * The HAL is required to wait on the acquire sync fence of the input buffer
2417 * before accessing it.
2418 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08002419 * <= CAMERA_DEVICE_API_VERSION_3_1:
2420 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002421 * Any input buffer included here will have been registered with the HAL
2422 * through register_stream_buffers() before its inclusion in a request.
Igor Murashkin78aa1262014-01-09 16:23:43 -08002423 *
2424 * >= CAMERA_DEVICE_API_VERSION_3_2:
2425 *
2426 * The buffers will not have been pre-registered with the HAL.
2427 * Subsequent requests may reuse buffers, or provide entirely new buffers.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002428 */
2429 camera3_stream_buffer_t *input_buffer;
2430
2431 /**
2432 * The number of output buffers for this capture request. Must be at least
2433 * 1.
2434 */
2435 uint32_t num_output_buffers;
2436
2437 /**
2438 * An array of num_output_buffers stream buffers, to be filled with image
2439 * data from this capture/reprocess. The HAL must wait on the acquire fences
Igor Murashkin78aa1262014-01-09 16:23:43 -08002440 * of each stream buffer before writing to them.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002441 *
2442 * The HAL takes ownership of the actual buffer_handle_t entries in
2443 * output_buffers; the framework does not access them until they are
2444 * returned in a camera3_capture_result_t.
Igor Murashkin78aa1262014-01-09 16:23:43 -08002445 *
2446 * <= CAMERA_DEVICE_API_VERSION_3_1:
2447 *
2448 * All the buffers included here will have been registered with the HAL
2449 * through register_stream_buffers() before their inclusion in a request.
2450 *
2451 * >= CAMERA_DEVICE_API_VERSION_3_2:
2452 *
2453 * Any or all of the buffers included here may be brand new in this
2454 * request (having never before seen by the HAL).
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002455 */
2456 const camera3_stream_buffer_t *output_buffers;
2457
Emilian Peev92261ff2018-01-16 15:01:22 +00002458 /**
2459 * <= CAMERA_DEVICE_API_VERISON_3_4:
2460 *
2461 * Not defined and must not be accessed.
2462 *
2463 * >= CAMERA_DEVICE_API_VERSION_3_5:
2464 * The number of physical camera settings to be applied. If 'num_physcam_settings'
2465 * equals 0 or a physical device is not included, then Hal must decide the
2466 * specific physical device settings based on the default 'settings'.
2467 */
2468 uint32_t num_physcam_settings;
2469
2470 /**
2471 * <= CAMERA_DEVICE_API_VERISON_3_4:
2472 *
2473 * Not defined and must not be accessed.
2474 *
2475 * >= CAMERA_DEVICE_API_VERSION_3_5:
2476 * The physical camera ids. The array will contain 'num_physcam_settings'
2477 * camera id strings for all physical devices that have specific settings.
2478 * In case some id is invalid, the process capture request must fail and return
2479 * -EINVAL.
2480 */
2481 const char **physcam_id;
2482
2483 /**
2484 * <= CAMERA_DEVICE_API_VERISON_3_4:
2485 *
2486 * Not defined and must not be accessed.
2487 *
2488 * >= CAMERA_DEVICE_API_VERSION_3_5:
2489 * The capture settings for the physical cameras. The array will contain
2490 * 'num_physcam_settings' settings for invididual physical devices. In
2491 * case the settings at some particular index are empty, the process capture
2492 * request must fail and return -EINVAL.
2493 */
2494 const camera_metadata_t **physcam_settings;
2495
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002496} camera3_capture_request_t;
2497
2498/**
2499 * camera3_capture_result_t:
2500 *
2501 * The result of a single capture/reprocess by the camera HAL device. This is
2502 * sent to the framework asynchronously with process_capture_result(), in
2503 * response to a single capture request sent to the HAL with
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002504 * process_capture_request(). Multiple process_capture_result() calls may be
Igor Murashkin5df2f622014-01-10 14:18:45 -08002505 * performed by the HAL for each request.
2506 *
2507 * Each call, all with the same frame
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002508 * number, may contain some subset of the output buffers, and/or the result
2509 * metadata. The metadata may only be provided once for a given frame number;
2510 * all other calls must set the result metadata to NULL.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002511 *
2512 * The result structure contains the output metadata from this capture, and the
2513 * set of output buffers that have been/will be filled for this capture. Each
2514 * output buffer may come with a release sync fence that the framework will wait
2515 * on before reading, in case the buffer has not yet been filled by the HAL.
2516 *
Igor Murashkin5df2f622014-01-10 14:18:45 -08002517 * >= CAMERA_DEVICE_API_VERSION_3_2:
2518 *
2519 * The metadata may be provided multiple times for a single frame number. The
2520 * framework will accumulate together the final result set by combining each
2521 * partial result together into the total result set.
2522 *
Zhijun Heceac9e32014-02-05 20:49:45 -08002523 * If an input buffer is given in a request, the HAL must return it in one of
2524 * the process_capture_result calls, and the call may be to just return the input
2525 * buffer, without metadata and output buffers; the sync fences must be handled
2526 * the same way they are done for output buffers.
2527 *
2528 *
Igor Murashkin5df2f622014-01-10 14:18:45 -08002529 * Performance considerations:
2530 *
2531 * Applications will also receive these partial results immediately, so sending
2532 * partial results is a highly recommended performance optimization to avoid
2533 * the total pipeline latency before sending the results for what is known very
2534 * early on in the pipeline.
2535 *
2536 * A typical use case might be calculating the AF state halfway through the
2537 * pipeline; by sending the state back to the framework immediately, we get a
2538 * 50% performance increase and perceived responsiveness of the auto-focus.
2539 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002540 */
2541typedef struct camera3_capture_result {
2542 /**
2543 * The frame number is an incrementing integer set by the framework in the
2544 * submitted request to uniquely identify this capture. It is also used to
2545 * identify the request in asynchronous notifications sent to
2546 * camera3_callback_ops_t.notify().
2547 */
2548 uint32_t frame_number;
2549
2550 /**
2551 * The result metadata for this capture. This contains information about the
2552 * final capture parameters, the state of the capture and post-processing
2553 * hardware, the state of the 3A algorithms, if enabled, and the output of
2554 * any enabled statistics units.
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002555 *
2556 * Only one call to process_capture_result() with a given frame_number may
2557 * include the result metadata. All other calls for the same frame_number
2558 * must set this to NULL.
2559 *
2560 * If there was an error producing the result metadata, result must be an
2561 * empty metadata buffer, and notify() must be called with ERROR_RESULT.
Igor Murashkin5df2f622014-01-10 14:18:45 -08002562 *
2563 * >= CAMERA_DEVICE_API_VERSION_3_2:
2564 *
2565 * Multiple calls to process_capture_result() with a given frame_number
2566 * may include the result metadata.
2567 *
2568 * Partial metadata submitted should not include any metadata key returned
2569 * in a previous partial result for a given frame. Each new partial result
2570 * for that frame must also set a distinct partial_result value.
2571 *
2572 * If notify has been called with ERROR_RESULT, all further partial
2573 * results for that frame are ignored by the framework.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002574 */
2575 const camera_metadata_t *result;
2576
2577 /**
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002578 * The number of output buffers returned in this result structure. Must be
2579 * less than or equal to the matching capture request's count. If this is
2580 * less than the buffer count in the capture request, at least one more call
2581 * to process_capture_result with the same frame_number must be made, to
2582 * return the remaining output buffers to the framework. This may only be
Zhijun He52a18892014-06-30 10:35:58 -07002583 * zero if the structure includes valid result metadata or an input buffer
2584 * is returned in this result.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002585 */
2586 uint32_t num_output_buffers;
2587
2588 /**
2589 * The handles for the output stream buffers for this capture. They may not
2590 * yet be filled at the time the HAL calls process_capture_result(); the
2591 * framework will wait on the release sync fences provided by the HAL before
2592 * reading the buffers.
2593 *
2594 * The HAL must set the stream buffer's release sync fence to a valid sync
2595 * fd, or to -1 if the buffer has already been filled.
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08002596 *
2597 * If the HAL encounters an error while processing the buffer, and the
2598 * buffer is not filled, the buffer's status field must be set to
2599 * CAMERA3_BUFFER_STATUS_ERROR. If the HAL did not wait on the acquire fence
2600 * before encountering the error, the acquire fence should be copied into
2601 * the release fence, to allow the framework to wait on the fence before
2602 * reusing the buffer.
2603 *
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002604 * The acquire fence must be set to -1 for all output buffers. If
2605 * num_output_buffers is zero, this may be NULL. In that case, at least one
2606 * more process_capture_result call must be made by the HAL to provide the
2607 * output buffers.
Igor Murashkin5df2f622014-01-10 14:18:45 -08002608 *
2609 * When process_capture_result is called with a new buffer for a frame,
2610 * all previous frames' buffers for that corresponding stream must have been
2611 * already delivered (the fences need not have yet been signaled).
2612 *
2613 * >= CAMERA_DEVICE_API_VERSION_3_2:
2614 *
2615 * Gralloc buffers for a frame may be sent to framework before the
2616 * corresponding SHUTTER-notify.
2617 *
2618 * Performance considerations:
2619 *
2620 * Buffers delivered to the framework will not be dispatched to the
2621 * application layer until a start of exposure timestamp has been received
2622 * via a SHUTTER notify() call. It is highly recommended to
2623 * dispatch that call as early as possible.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002624 */
2625 const camera3_stream_buffer_t *output_buffers;
2626
Igor Murashkin5df2f622014-01-10 14:18:45 -08002627 /**
2628 * >= CAMERA_DEVICE_API_VERSION_3_2:
2629 *
Zhijun Heceac9e32014-02-05 20:49:45 -08002630 * The handle for the input stream buffer for this capture. It may not
2631 * yet be consumed at the time the HAL calls process_capture_result(); the
2632 * framework will wait on the release sync fences provided by the HAL before
2633 * reusing the buffer.
2634 *
2635 * The HAL should handle the sync fences the same way they are done for
2636 * output_buffers.
2637 *
2638 * Only one input buffer is allowed to be sent per request. Similarly to
2639 * output buffers, the ordering of returned input buffers must be
2640 * maintained by the HAL.
2641 *
2642 * Performance considerations:
2643 *
2644 * The input buffer should be returned as early as possible. If the HAL
2645 * supports sync fences, it can call process_capture_result to hand it back
2646 * with sync fences being set appropriately. If the sync fences are not
2647 * supported, the buffer can only be returned when it is consumed, which
2648 * may take long time; the HAL may choose to copy this input buffer to make
2649 * the buffer return sooner.
2650 */
2651 const camera3_stream_buffer_t *input_buffer;
2652
2653 /**
2654 * >= CAMERA_DEVICE_API_VERSION_3_2:
2655 *
Igor Murashkin5df2f622014-01-10 14:18:45 -08002656 * In order to take advantage of partial results, the HAL must set the
2657 * static metadata android.request.partialResultCount to the number of
2658 * partial results it will send for each frame.
2659 *
2660 * Each new capture result with a partial result must set
2661 * this field (partial_result) to a distinct inclusive value between
2662 * 1 and android.request.partialResultCount.
2663 *
2664 * HALs not wishing to take advantage of this feature must not
2665 * set an android.request.partialResultCount or partial_result to a value
2666 * other than 1.
2667 *
2668 * This value must be set to 0 when a capture result contains buffers only
2669 * and no metadata.
2670 */
2671 uint32_t partial_result;
2672
Shuzhen Wang1d4c09e2017-12-31 16:57:11 -08002673 /**
2674 * >= CAMERA_DEVICE_API_VERSION_3_5:
2675 *
2676 * Specifies the number of physical camera metadata this capture result
2677 * contains. It must be equal to the number of physical cameras being
2678 * requested from.
2679 *
2680 * If the current camera device is not a logical multi-camera, or the
2681 * corresponding capture_request doesn't request on any physical camera,
2682 * this field must be 0.
2683 */
2684 uint32_t num_physcam_metadata;
2685
2686 /**
2687 * >= CAMERA_DEVICE_API_VERSION_3_5:
2688 *
2689 * An array of strings containing the physical camera ids for the returned
2690 * physical camera metadata. The length of the array is
2691 * num_physcam_metadata.
2692 */
2693 const char **physcam_ids;
2694
2695 /**
2696 * >= CAMERA_DEVICE_API_VERSION_3_5:
2697 *
2698 * The array of physical camera metadata for the physical cameras being
2699 * requested upon. This array should have a 1-to-1 mapping with the
2700 * physcam_ids. The length of the array is num_physcam_metadata.
2701 */
2702 const camera_metadata_t **physcam_metadata;
2703
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002704} camera3_capture_result_t;
2705
2706/**********************************************************************
2707 *
2708 * Callback methods for the HAL to call into the framework.
2709 *
2710 * These methods are used to return metadata and image buffers for a completed
2711 * or failed captures, and to notify the framework of asynchronous events such
2712 * as errors.
2713 *
2714 * The framework will not call back into the HAL from within these callbacks,
2715 * and these calls will not block for extended periods.
2716 *
2717 */
2718typedef struct camera3_callback_ops {
2719
2720 /**
2721 * process_capture_result:
2722 *
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002723 * Send results from a completed capture to the framework.
2724 * process_capture_result() may be invoked multiple times by the HAL in
2725 * response to a single capture request. This allows, for example, the
2726 * metadata and low-resolution buffers to be returned in one call, and
2727 * post-processed JPEG buffers in a later call, once it is available. Each
2728 * call must include the frame number of the request it is returning
2729 * metadata or buffers for.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002730 *
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002731 * A component (buffer or metadata) of the complete result may only be
2732 * included in one process_capture_result call. A buffer for each stream,
2733 * and the result metadata, must be returned by the HAL for each request in
2734 * one of the process_capture_result calls, even in case of errors producing
2735 * some of the output. A call to process_capture_result() with neither
2736 * output buffers or result metadata is not allowed.
2737 *
2738 * The order of returning metadata and buffers for a single result does not
2739 * matter, but buffers for a given stream must be returned in FIFO order. So
2740 * the buffer for request 5 for stream A must always be returned before the
2741 * buffer for request 6 for stream A. This also applies to the result
2742 * metadata; the metadata for request 5 must be returned before the metadata
2743 * for request 6.
2744 *
2745 * However, different streams are independent of each other, so it is
2746 * acceptable and expected that the buffer for request 5 for stream A may be
2747 * returned after the buffer for request 6 for stream B is. And it is
2748 * acceptable that the result metadata for request 6 for stream B is
2749 * returned before the buffer for request 5 for stream A is.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002750 *
2751 * The HAL retains ownership of result structure, which only needs to be
2752 * valid to access during this call. The framework will copy whatever it
2753 * needs before this call returns.
2754 *
2755 * The output buffers do not need to be filled yet; the framework will wait
2756 * on the stream buffer release sync fence before reading the buffer
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002757 * data. Therefore, this method should be called by the HAL as soon as
2758 * possible, even if some or all of the output buffers are still in
2759 * being filled. The HAL must include valid release sync fences into each
2760 * output_buffers stream buffer entry, or -1 if that stream buffer is
2761 * already filled.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002762 *
2763 * If the result buffer cannot be constructed for a request, the HAL should
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002764 * return an empty metadata buffer, but still provide the output buffers and
2765 * their sync fences. In addition, notify() must be called with an
2766 * ERROR_RESULT message.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002767 *
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08002768 * If an output buffer cannot be filled, its status field must be set to
2769 * STATUS_ERROR. In addition, notify() must be called with a ERROR_BUFFER
2770 * message.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002771 *
2772 * If the entire capture has failed, then this method still needs to be
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08002773 * called to return the output buffers to the framework. All the buffer
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07002774 * statuses should be STATUS_ERROR, and the result metadata should be an
2775 * empty buffer. In addition, notify() must be called with a ERROR_REQUEST
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002776 * message. In this case, individual ERROR_RESULT/ERROR_BUFFER messages
2777 * should not be sent.
2778 *
Zhijun He2dde4682014-01-09 09:11:49 -08002779 * Performance requirements:
2780 *
2781 * This is a non-blocking call. The framework will return this call in 5ms.
2782 *
2783 * The pipeline latency (see S7 for definition) should be less than or equal to
2784 * 4 frame intervals, and must be less than or equal to 8 frame intervals.
2785 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002786 */
2787 void (*process_capture_result)(const struct camera3_callback_ops *,
2788 const camera3_capture_result_t *result);
2789
2790 /**
2791 * notify:
2792 *
2793 * Asynchronous notification callback from the HAL, fired for various
2794 * reasons. Only for information independent of frame capture, or that
2795 * require specific timing. The ownership of the message structure remains
2796 * with the HAL, and the msg only needs to be valid for the duration of this
2797 * call.
2798 *
Igor Murashkin5df2f622014-01-10 14:18:45 -08002799 * Multiple threads may call notify() simultaneously.
2800 *
2801 * <= CAMERA_DEVICE_API_VERSION_3_1:
2802 *
Eino-Ville Talvala71af1022013-04-22 14:19:21 -07002803 * The notification for the start of exposure for a given request must be
2804 * sent by the HAL before the first call to process_capture_result() for
2805 * that request is made.
2806 *
Igor Murashkin5df2f622014-01-10 14:18:45 -08002807 * >= CAMERA_DEVICE_API_VERSION_3_2:
Zhijun He2dde4682014-01-09 09:11:49 -08002808 *
Igor Murashkin5df2f622014-01-10 14:18:45 -08002809 * Buffers delivered to the framework will not be dispatched to the
Chien-Yu Chen73b49eb2015-05-28 17:13:05 -07002810 * application layer until a start of exposure timestamp (or input image's
2811 * start of exposure timestamp for a reprocess request) has been received
2812 * via a SHUTTER notify() call. It is highly recommended to dispatch this
2813 * call as early as possible.
Igor Murashkin5df2f622014-01-10 14:18:45 -08002814 *
2815 * ------------------------------------------------------------------------
Zhijun He2dde4682014-01-09 09:11:49 -08002816 * Performance requirements:
2817 *
2818 * This is a non-blocking call. The framework will return this call in 5ms.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002819 */
2820 void (*notify)(const struct camera3_callback_ops *,
2821 const camera3_notify_msg_t *msg);
2822
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -07002823 /**
2824 * request_stream_buffers:
2825 *
2826 * <= CAMERA_DEVICE_API_VERISON_3_5:
2827 *
2828 * DO NOT USE: not defined and must be NULL.
2829 *
2830 * >= CAMERA_DEVICE_API_VERISON_3_6:
2831 *
2832 * Synchronous callback for HAL to ask for output buffer from camera service.
2833 *
2834 * This call may be serialized in camera service so it is strongly
2835 * recommended to only call this method from one thread.
2836 *
2837 * When camera device advertises
2838 * (android.info.supportedBufferManagementVersion ==
2839 * ANDROID_INFO_SUPPORTED_BUFFER_MANAGEMENT_VERSION_HIDL_DEVICE_3_5), HAL
2840 * can use this method to request buffers from camera service.
2841 *
2842 * Caller is responsible for allocating enough memory for returned_buf_reqs
2843 * argument (num_buffer_reqs * sizeof(camera3_stream_buffer_ret_t)) bytes
2844 * and also the memory for the output_buffers field in each
2845 * camera3_stream_buffer_ret_t
2846 * (num_buffers_requested * sizeof(camera3_stream_buffer_t)) bytes
2847 *
2848 * Performance requirements:
2849 * This is a blocking call that takes more time with more buffers requested.
2850 * HAL should not request large amount of buffers on a latency critical code
2851 * path. It is highly recommended to use a dedicated thread to perform
2852 * all requestStreamBuffer calls, and adjust the thread priority and/or
2853 * timing of making the call in order for buffers to arrive before HAL is
2854 * ready to fill the buffer.
2855 */
2856 camera3_buffer_request_status_t (*request_stream_buffers)(
2857 const struct camera3_callback_ops *,
2858 uint32_t num_buffer_reqs,
2859 const camera3_buffer_request_t *buffer_reqs,
2860 /*out*/uint32_t *num_returned_buf_reqs,
2861 /*out*/camera3_stream_buffer_ret_t *returned_buf_reqs);
2862
2863 /**
2864 * return_stream_buffers:
2865 *
2866 * <= CAMERA_DEVICE_API_VERISON_3_5:
2867 *
2868 * DO NOT USE: not defined and must be NULL.
2869 *
2870 * >= CAMERA_DEVICE_API_VERISON_3_6:
2871 *
2872 * Synchronous callback for HAL to return output buffers to camera service.
2873 *
2874 * If this method is called during a configure_streams() call, it will be
2875 * blocked until camera service finishes the ongoing configure_streams() call.
2876 */
2877 void (*return_stream_buffers)(
2878 const struct camera3_callback_ops *,
2879 uint32_t num_buffers,
2880 const camera3_stream_buffer_t* const* buffers);
2881
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002882} camera3_callback_ops_t;
2883
2884/**********************************************************************
2885 *
2886 * Camera device operations
2887 *
2888 */
2889typedef struct camera3_device_ops {
2890
2891 /**
2892 * initialize:
2893 *
2894 * One-time initialization to pass framework callback function pointers to
2895 * the HAL. Will be called once after a successful open() call, before any
2896 * other functions are called on the camera3_device_ops structure.
2897 *
Zhijun He2dde4682014-01-09 09:11:49 -08002898 * Performance requirements:
2899 *
2900 * This should be a non-blocking call. The HAL should return from this call
2901 * in 5ms, and must return from this call in 10ms.
2902 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002903 * Return values:
2904 *
2905 * 0: On successful initialization
2906 *
2907 * -ENODEV: If initialization fails. Only close() can be called successfully
2908 * by the framework after this.
2909 */
2910 int (*initialize)(const struct camera3_device *,
2911 const camera3_callback_ops_t *callback_ops);
2912
2913 /**********************************************************************
2914 * Stream management
2915 */
2916
2917 /**
2918 * configure_streams:
2919 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08002920 * CAMERA_DEVICE_API_VERSION_3_0 only:
2921 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002922 * Reset the HAL camera device processing pipeline and set up new input and
2923 * output streams. This call replaces any existing stream configuration with
2924 * the streams defined in the stream_list. This method will be called at
2925 * least once after initialize() before a request is submitted with
2926 * process_capture_request().
2927 *
2928 * The stream_list must contain at least one output-capable stream, and may
2929 * not contain more than one input-capable stream.
2930 *
2931 * The stream_list may contain streams that are also in the currently-active
2932 * set of streams (from the previous call to configure_stream()). These
2933 * streams will already have valid values for usage, max_buffers, and the
Igor Murashkin78aa1262014-01-09 16:23:43 -08002934 * private pointer.
2935 *
2936 * If such a stream has already had its buffers registered,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002937 * register_stream_buffers() will not be called again for the stream, and
2938 * buffers from the stream can be immediately included in input requests.
2939 *
2940 * If the HAL needs to change the stream configuration for an existing
2941 * stream due to the new configuration, it may rewrite the values of usage
Igor Murashkin78aa1262014-01-09 16:23:43 -08002942 * and/or max_buffers during the configure call.
2943 *
2944 * The framework will detect such a change, and will then reallocate the
2945 * stream buffers, and call register_stream_buffers() again before using
2946 * buffers from that stream in a request.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002947 *
2948 * If a currently-active stream is not included in stream_list, the HAL may
2949 * safely remove any references to that stream. It will not be reused in a
2950 * later configure() call by the framework, and all the gralloc buffers for
2951 * it will be freed after the configure_streams() call returns.
2952 *
2953 * The stream_list structure is owned by the framework, and may not be
2954 * accessed once this call completes. The address of an individual
2955 * camera3_stream_t structure will remain valid for access by the HAL until
2956 * the end of the first configure_stream() call which no longer includes
2957 * that camera3_stream_t in the stream_list argument. The HAL may not change
2958 * values in the stream structure outside of the private pointer, except for
2959 * the usage and max_buffers members during the configure_streams() call
2960 * itself.
2961 *
2962 * If the stream is new, the usage, max_buffer, and private pointer fields
2963 * of the stream structure will all be set to 0. The HAL device must set
2964 * these fields before the configure_streams() call returns. These fields
2965 * are then used by the framework and the platform gralloc module to
2966 * allocate the gralloc buffers for each stream.
2967 *
2968 * Before such a new stream can have its buffers included in a capture
2969 * request, the framework will call register_stream_buffers() with that
2970 * stream. However, the framework is not required to register buffers for
2971 * _all_ streams before submitting a request. This allows for quick startup
2972 * of (for example) a preview stream, with allocation for other streams
2973 * happening later or concurrently.
2974 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08002975 * ------------------------------------------------------------------------
2976 * CAMERA_DEVICE_API_VERSION_3_1 only:
2977 *
2978 * Reset the HAL camera device processing pipeline and set up new input and
2979 * output streams. This call replaces any existing stream configuration with
2980 * the streams defined in the stream_list. This method will be called at
2981 * least once after initialize() before a request is submitted with
2982 * process_capture_request().
2983 *
2984 * The stream_list must contain at least one output-capable stream, and may
2985 * not contain more than one input-capable stream.
2986 *
2987 * The stream_list may contain streams that are also in the currently-active
2988 * set of streams (from the previous call to configure_stream()). These
2989 * streams will already have valid values for usage, max_buffers, and the
2990 * private pointer.
2991 *
2992 * If such a stream has already had its buffers registered,
2993 * register_stream_buffers() will not be called again for the stream, and
2994 * buffers from the stream can be immediately included in input requests.
2995 *
2996 * If the HAL needs to change the stream configuration for an existing
2997 * stream due to the new configuration, it may rewrite the values of usage
2998 * and/or max_buffers during the configure call.
2999 *
3000 * The framework will detect such a change, and will then reallocate the
3001 * stream buffers, and call register_stream_buffers() again before using
3002 * buffers from that stream in a request.
3003 *
3004 * If a currently-active stream is not included in stream_list, the HAL may
3005 * safely remove any references to that stream. It will not be reused in a
3006 * later configure() call by the framework, and all the gralloc buffers for
3007 * it will be freed after the configure_streams() call returns.
3008 *
3009 * The stream_list structure is owned by the framework, and may not be
3010 * accessed once this call completes. The address of an individual
3011 * camera3_stream_t structure will remain valid for access by the HAL until
3012 * the end of the first configure_stream() call which no longer includes
3013 * that camera3_stream_t in the stream_list argument. The HAL may not change
3014 * values in the stream structure outside of the private pointer, except for
3015 * the usage and max_buffers members during the configure_streams() call
3016 * itself.
3017 *
3018 * If the stream is new, max_buffer, and private pointer fields of the
3019 * stream structure will all be set to 0. The usage will be set to the
3020 * consumer usage flags. The HAL device must set these fields before the
3021 * configure_streams() call returns. These fields are then used by the
3022 * framework and the platform gralloc module to allocate the gralloc
3023 * buffers for each stream.
3024 *
3025 * Before such a new stream can have its buffers included in a capture
3026 * request, the framework will call register_stream_buffers() with that
3027 * stream. However, the framework is not required to register buffers for
3028 * _all_ streams before submitting a request. This allows for quick startup
3029 * of (for example) a preview stream, with allocation for other streams
3030 * happening later or concurrently.
3031 *
3032 * ------------------------------------------------------------------------
3033 * >= CAMERA_DEVICE_API_VERSION_3_2:
3034 *
3035 * Reset the HAL camera device processing pipeline and set up new input and
3036 * output streams. This call replaces any existing stream configuration with
3037 * the streams defined in the stream_list. This method will be called at
3038 * least once after initialize() before a request is submitted with
3039 * process_capture_request().
3040 *
3041 * The stream_list must contain at least one output-capable stream, and may
3042 * not contain more than one input-capable stream.
3043 *
3044 * The stream_list may contain streams that are also in the currently-active
3045 * set of streams (from the previous call to configure_stream()). These
3046 * streams will already have valid values for usage, max_buffers, and the
3047 * private pointer.
3048 *
3049 * If the HAL needs to change the stream configuration for an existing
3050 * stream due to the new configuration, it may rewrite the values of usage
3051 * and/or max_buffers during the configure call.
3052 *
3053 * The framework will detect such a change, and may then reallocate the
3054 * stream buffers before using buffers from that stream in a request.
3055 *
3056 * If a currently-active stream is not included in stream_list, the HAL may
3057 * safely remove any references to that stream. It will not be reused in a
3058 * later configure() call by the framework, and all the gralloc buffers for
3059 * it will be freed after the configure_streams() call returns.
3060 *
3061 * The stream_list structure is owned by the framework, and may not be
3062 * accessed once this call completes. The address of an individual
3063 * camera3_stream_t structure will remain valid for access by the HAL until
3064 * the end of the first configure_stream() call which no longer includes
3065 * that camera3_stream_t in the stream_list argument. The HAL may not change
3066 * values in the stream structure outside of the private pointer, except for
3067 * the usage and max_buffers members during the configure_streams() call
3068 * itself.
3069 *
3070 * If the stream is new, max_buffer, and private pointer fields of the
3071 * stream structure will all be set to 0. The usage will be set to the
3072 * consumer usage flags. The HAL device must set these fields before the
3073 * configure_streams() call returns. These fields are then used by the
3074 * framework and the platform gralloc module to allocate the gralloc
3075 * buffers for each stream.
3076 *
3077 * Newly allocated buffers may be included in a capture request at any time
3078 * by the framework. Once a gralloc buffer is returned to the framework
3079 * with process_capture_result (and its respective release_fence has been
3080 * signaled) the framework may free or reuse it at any time.
3081 *
3082 * ------------------------------------------------------------------------
3083 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003084 * Preconditions:
3085 *
3086 * The framework will only call this method when no captures are being
3087 * processed. That is, all results have been returned to the framework, and
3088 * all in-flight input and output buffers have been returned and their
3089 * release sync fences have been signaled by the HAL. The framework will not
3090 * submit new requests for capture while the configure_streams() call is
3091 * underway.
3092 *
3093 * Postconditions:
3094 *
3095 * The HAL device must configure itself to provide maximum possible output
3096 * frame rate given the sizes and formats of the output streams, as
3097 * documented in the camera device's static metadata.
3098 *
Zhijun He2dde4682014-01-09 09:11:49 -08003099 * Performance requirements:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003100 *
3101 * This call is expected to be heavyweight and possibly take several hundred
3102 * milliseconds to complete, since it may require resetting and
3103 * reconfiguring the image sensor and the camera processing pipeline.
3104 * Nevertheless, the HAL device should attempt to minimize the
3105 * reconfiguration delay to minimize the user-visible pauses during
3106 * application operational mode changes (such as switching from still
3107 * capture to video recording).
3108 *
Zhijun He2dde4682014-01-09 09:11:49 -08003109 * The HAL should return from this call in 500ms, and must return from this
3110 * call in 1000ms.
3111 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003112 * Return values:
3113 *
3114 * 0: On successful stream configuration
3115 *
3116 * -EINVAL: If the requested stream configuration is invalid. Some examples
3117 * of invalid stream configurations include:
3118 *
3119 * - Including more than 1 input-capable stream (INPUT or
3120 * BIDIRECTIONAL)
3121 *
3122 * - Not including any output-capable streams (OUTPUT or
3123 * BIDIRECTIONAL)
3124 *
3125 * - Including streams with unsupported formats, or an unsupported
3126 * size for that format.
3127 *
3128 * - Including too many output streams of a certain format.
3129 *
Yin-Chia Yehe0042082015-03-09 12:15:36 -07003130 * - Unsupported rotation configuration (only applies to
3131 * devices with version >= CAMERA_DEVICE_API_VERSION_3_3)
3132 *
Zhijun He21126b72015-05-22 18:12:28 -07003133 * - Stream sizes/formats don't satisfy the
3134 * camera3_stream_configuration_t->operation_mode requirements for non-NORMAL mode,
3135 * or the requested operation_mode is not supported by the HAL.
3136 * (only applies to devices with version >= CAMERA_DEVICE_API_VERSION_3_3)
3137 *
Eino-Ville Talvala7effe0c2013-02-15 12:09:48 -08003138 * Note that the framework submitting an invalid stream
3139 * configuration is not normal operation, since stream
3140 * configurations are checked before configure. An invalid
3141 * configuration means that a bug exists in the framework code, or
3142 * there is a mismatch between the HAL's static metadata and the
3143 * requirements on streams.
3144 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003145 * -ENODEV: If there has been a fatal error and the device is no longer
3146 * operational. Only close() can be called successfully by the
3147 * framework after this error is returned.
3148 */
3149 int (*configure_streams)(const struct camera3_device *,
3150 camera3_stream_configuration_t *stream_list);
3151
3152 /**
3153 * register_stream_buffers:
3154 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08003155 * >= CAMERA_DEVICE_API_VERSION_3_2:
3156 *
3157 * DEPRECATED. This will not be called and must be set to NULL.
3158 *
3159 * <= CAMERA_DEVICE_API_VERSION_3_1:
3160 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003161 * Register buffers for a given stream with the HAL device. This method is
3162 * called by the framework after a new stream is defined by
3163 * configure_streams, and before buffers from that stream are included in a
3164 * capture request. If the same stream is listed in a subsequent
3165 * configure_streams() call, register_stream_buffers will _not_ be called
3166 * again for that stream.
3167 *
3168 * The framework does not need to register buffers for all configured
3169 * streams before it submits the first capture request. This allows quick
3170 * startup for preview (or similar use cases) while other streams are still
3171 * being allocated.
3172 *
3173 * This method is intended to allow the HAL device to map or otherwise
3174 * prepare the buffers for later use. The buffers passed in will already be
3175 * locked for use. At the end of the call, all the buffers must be ready to
3176 * be returned to the stream. The buffer_set argument is only valid for the
3177 * duration of this call.
3178 *
3179 * If the stream format was set to HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED,
3180 * the camera HAL should inspect the passed-in buffers here to determine any
3181 * platform-private pixel format information.
3182 *
Zhijun He2dde4682014-01-09 09:11:49 -08003183 * Performance requirements:
3184 *
3185 * This should be a non-blocking call. The HAL should return from this call
3186 * in 1ms, and must return from this call in 5ms.
3187 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003188 * Return values:
3189 *
3190 * 0: On successful registration of the new stream buffers
3191 *
3192 * -EINVAL: If the stream_buffer_set does not refer to a valid active
3193 * stream, or if the buffers array is invalid.
3194 *
3195 * -ENOMEM: If there was a failure in registering the buffers. The framework
3196 * must consider all the stream buffers to be unregistered, and can
3197 * try to register again later.
3198 *
3199 * -ENODEV: If there is a fatal error, and the device is no longer
3200 * operational. Only close() can be called successfully by the
3201 * framework after this error is returned.
3202 */
3203 int (*register_stream_buffers)(const struct camera3_device *,
3204 const camera3_stream_buffer_set_t *buffer_set);
3205
3206 /**********************************************************************
3207 * Request creation and submission
3208 */
3209
3210 /**
3211 * construct_default_request_settings:
3212 *
3213 * Create capture settings for standard camera use cases.
3214 *
3215 * The device must return a settings buffer that is configured to meet the
3216 * requested use case, which must be one of the CAMERA3_TEMPLATE_*
3217 * enums. All request control fields must be included.
3218 *
3219 * The HAL retains ownership of this structure, but the pointer to the
3220 * structure must be valid until the device is closed. The framework and the
3221 * HAL may not modify the buffer once it is returned by this call. The same
3222 * buffer may be returned for subsequent calls for the same template, or for
3223 * other templates.
3224 *
Zhijun He2dde4682014-01-09 09:11:49 -08003225 * Performance requirements:
3226 *
3227 * This should be a non-blocking call. The HAL should return from this call
3228 * in 1ms, and must return from this call in 5ms.
3229 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003230 * Return values:
3231 *
3232 * Valid metadata: On successful creation of a default settings
3233 * buffer.
3234 *
3235 * NULL: In case of a fatal error. After this is returned, only
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -07003236 * the close() method can be called successfully by the
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003237 * framework.
3238 */
3239 const camera_metadata_t* (*construct_default_request_settings)(
3240 const struct camera3_device *,
3241 int type);
3242
3243 /**
3244 * process_capture_request:
3245 *
3246 * Send a new capture request to the HAL. The HAL should not return from
3247 * this call until it is ready to accept the next request to process. Only
3248 * one call to process_capture_request() will be made at a time by the
3249 * framework, and the calls will all be from the same thread. The next call
3250 * to process_capture_request() will be made as soon as a new request and
3251 * its associated buffers are available. In a normal preview scenario, this
3252 * means the function will be called again by the framework almost
3253 * instantly.
3254 *
3255 * The actual request processing is asynchronous, with the results of
3256 * capture being returned by the HAL through the process_capture_result()
3257 * call. This call requires the result metadata to be available, but output
3258 * buffers may simply provide sync fences to wait on. Multiple requests are
3259 * expected to be in flight at once, to maintain full output frame rate.
3260 *
3261 * The framework retains ownership of the request structure. It is only
3262 * guaranteed to be valid during this call. The HAL device must make copies
Eino-Ville Talvala71af1022013-04-22 14:19:21 -07003263 * of the information it needs to retain for the capture processing. The HAL
3264 * is responsible for waiting on and closing the buffers' fences and
3265 * returning the buffer handles to the framework.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003266 *
3267 * The HAL must write the file descriptor for the input buffer's release
3268 * sync fence into input_buffer->release_fence, if input_buffer is not
3269 * NULL. If the HAL returns -1 for the input buffer release sync fence, the
3270 * framework is free to immediately reuse the input buffer. Otherwise, the
3271 * framework will wait on the sync fence before refilling and reusing the
3272 * input buffer.
3273 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08003274 * >= CAMERA_DEVICE_API_VERSION_3_2:
Zhijun He2dde4682014-01-09 09:11:49 -08003275 *
Igor Murashkin78aa1262014-01-09 16:23:43 -08003276 * The input/output buffers provided by the framework in each request
3277 * may be brand new (having never before seen by the HAL).
3278 *
3279 * ------------------------------------------------------------------------
3280 * Performance considerations:
3281 *
3282 * Handling a new buffer should be extremely lightweight and there should be
3283 * no frame rate degradation or frame jitter introduced.
3284 *
3285 * This call must return fast enough to ensure that the requested frame
3286 * rate can be sustained, especially for streaming cases (post-processing
3287 * quality settings set to FAST). The HAL should return this call in 1
3288 * frame interval, and must return from this call in 4 frame intervals.
Zhijun He2dde4682014-01-09 09:11:49 -08003289 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003290 * Return values:
3291 *
3292 * 0: On a successful start to processing the capture request
3293 *
3294 * -EINVAL: If the input is malformed (the settings are NULL when not
Emilian Peev92261ff2018-01-16 15:01:22 +00003295 * allowed, invalid physical camera settings,
3296 * there are 0 output buffers, etc) and capture processing
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003297 * cannot start. Failures during request processing should be
Eino-Ville Talvala71af1022013-04-22 14:19:21 -07003298 * handled by calling camera3_callback_ops_t.notify(). In case of
3299 * this error, the framework will retain responsibility for the
3300 * stream buffers' fences and the buffer handles; the HAL should
3301 * not close the fences or return these buffers with
3302 * process_capture_result.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003303 *
3304 * -ENODEV: If the camera device has encountered a serious error. After this
3305 * error is returned, only the close() method can be successfully
3306 * called by the framework.
3307 *
3308 */
3309 int (*process_capture_request)(const struct camera3_device *,
3310 camera3_capture_request_t *request);
3311
3312 /**********************************************************************
3313 * Miscellaneous methods
3314 */
3315
3316 /**
3317 * get_metadata_vendor_tag_ops:
3318 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -07003319 * Get methods to query for vendor extension metadata tag information. The
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003320 * HAL should fill in all the vendor tag operation methods, or leave ops
3321 * unchanged if no vendor tags are defined.
3322 *
3323 * The definition of vendor_tag_query_ops_t can be found in
3324 * system/media/camera/include/system/camera_metadata.h.
3325 *
Ruben Brunk61cf9eb2014-01-14 15:27:58 -08003326 * >= CAMERA_DEVICE_API_VERSION_3_2:
3327 * DEPRECATED. This function has been deprecated and should be set to
3328 * NULL by the HAL. Please implement get_vendor_tag_ops in camera_common.h
3329 * instead.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003330 */
3331 void (*get_metadata_vendor_tag_ops)(const struct camera3_device*,
3332 vendor_tag_query_ops_t* ops);
3333
3334 /**
3335 * dump:
3336 *
3337 * Print out debugging state for the camera device. This will be called by
3338 * the framework when the camera service is asked for a debug dump, which
3339 * happens when using the dumpsys tool, or when capturing a bugreport.
3340 *
3341 * The passed-in file descriptor can be used to write debugging text using
3342 * dprintf() or write(). The text should be in ASCII encoding only.
Zhijun He2dde4682014-01-09 09:11:49 -08003343 *
3344 * Performance requirements:
3345 *
3346 * This must be a non-blocking call. The HAL should return from this call
3347 * in 1ms, must return from this call in 10ms. This call must avoid
3348 * deadlocks, as it may be called at any point during camera operation.
3349 * Any synchronization primitives used (such as mutex locks or semaphores)
3350 * should be acquired with a timeout.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003351 */
3352 void (*dump)(const struct camera3_device *, int fd);
3353
Alex Ray5f2fd852013-06-24 11:28:05 -07003354 /**
3355 * flush:
3356 *
3357 * Flush all currently in-process captures and all buffers in the pipeline
3358 * on the given device. The framework will use this to dump all state as
3359 * quickly as possible in order to prepare for a configure_streams() call.
3360 *
3361 * No buffers are required to be successfully returned, so every buffer
Zhijun He5a5fbf42014-01-27 14:49:44 -08003362 * held at the time of flush() (whether successfully filled or not) may be
Alex Ray5f2fd852013-06-24 11:28:05 -07003363 * returned with CAMERA3_BUFFER_STATUS_ERROR. Note the HAL is still allowed
Zhijun He5a5fbf42014-01-27 14:49:44 -08003364 * to return valid (CAMERA3_BUFFER_STATUS_OK) buffers during this call,
3365 * provided they are successfully filled.
Alex Ray5f2fd852013-06-24 11:28:05 -07003366 *
3367 * All requests currently in the HAL are expected to be returned as soon as
3368 * possible. Not-in-process requests should return errors immediately. Any
3369 * interruptible hardware blocks should be stopped, and any uninterruptible
3370 * blocks should be waited on.
3371 *
Eino-Ville Talvala85fdb3f2015-06-10 14:58:32 -07003372 * flush() may be called concurrently to process_capture_request(), with the expectation that
3373 * process_capture_request will return quickly and the request submitted in that
3374 * process_capture_request call is treated like all other in-flight requests. Due to
3375 * concurrency issues, it is possible that from the HAL's point of view, a
3376 * process_capture_request() call may be started after flush has been invoked but has not
3377 * returned yet. If such a call happens before flush() returns, the HAL should treat the new
3378 * capture request like other in-flight pending requests (see #4 below).
3379 *
Zhijun He5a5fbf42014-01-27 14:49:44 -08003380 * More specifically, the HAL must follow below requirements for various cases:
3381 *
3382 * 1. For captures that are too late for the HAL to cancel/stop, and will be
3383 * completed normally by the HAL; i.e. the HAL can send shutter/notify and
3384 * process_capture_result and buffers as normal.
3385 *
3386 * 2. For pending requests that have not done any processing, the HAL must call notify
3387 * CAMERA3_MSG_ERROR_REQUEST, and return all the output buffers with
3388 * process_capture_result in the error state (CAMERA3_BUFFER_STATUS_ERROR).
3389 * The HAL must not place the release fence into an error state, instead,
3390 * the release fences must be set to the acquire fences passed by the framework,
3391 * or -1 if they have been waited on by the HAL already. This is also the path
3392 * to follow for any captures for which the HAL already called notify() with
3393 * CAMERA3_MSG_SHUTTER but won't be producing any metadata/valid buffers for.
3394 * After CAMERA3_MSG_ERROR_REQUEST, for a given frame, only process_capture_results with
3395 * buffers in CAMERA3_BUFFER_STATUS_ERROR are allowed. No further notifys or
3396 * process_capture_result with non-null metadata is allowed.
3397 *
3398 * 3. For partially completed pending requests that will not have all the output
3399 * buffers or perhaps missing metadata, the HAL should follow below:
3400 *
3401 * 3.1. Call notify with CAMERA3_MSG_ERROR_RESULT if some of the expected result
3402 * metadata (i.e. one or more partial metadata) won't be available for the capture.
3403 *
3404 * 3.2. Call notify with CAMERA3_MSG_ERROR_BUFFER for every buffer that won't
3405 * be produced for the capture.
3406 *
3407 * 3.3 Call notify with CAMERA3_MSG_SHUTTER with the capture timestamp before
3408 * any buffers/metadata are returned with process_capture_result.
3409 *
3410 * 3.4 For captures that will produce some results, the HAL must not call
3411 * CAMERA3_MSG_ERROR_REQUEST, since that indicates complete failure.
3412 *
3413 * 3.5. Valid buffers/metadata should be passed to the framework as normal.
3414 *
3415 * 3.6. Failed buffers should be returned to the framework as described for case 2.
3416 * But failed buffers do not have to follow the strict ordering valid buffers do,
3417 * and may be out-of-order with respect to valid buffers. For example, if buffers
3418 * A, B, C, D, E are sent, D and E are failed, then A, E, B, D, C is an acceptable
3419 * return order.
3420 *
3421 * 3.7. For fully-missing metadata, calling CAMERA3_MSG_ERROR_RESULT is sufficient, no
3422 * need to call process_capture_result with NULL metadata or equivalent.
3423 *
Eino-Ville Talvala85fdb3f2015-06-10 14:58:32 -07003424 * 4. If a flush() is invoked while a process_capture_request() invocation is active, that
3425 * process call should return as soon as possible. In addition, if a process_capture_request()
3426 * call is made after flush() has been invoked but before flush() has returned, the
3427 * capture request provided by the late process_capture_request call should be treated like
3428 * a pending request in case #2 above.
3429 *
Alex Ray5f2fd852013-06-24 11:28:05 -07003430 * flush() should only return when there are no more outstanding buffers or
Zhijun He5a5fbf42014-01-27 14:49:44 -08003431 * requests left in the HAL. The framework may call configure_streams (as
Alex Ray5f2fd852013-06-24 11:28:05 -07003432 * the HAL state is now quiesced) or may issue new requests.
3433 *
Zhijun He5a5fbf42014-01-27 14:49:44 -08003434 * Note that it's sufficient to only support fully-succeeded and fully-failed result cases.
3435 * However, it is highly desirable to support the partial failure cases as well, as it
3436 * could help improve the flush call overall performance.
3437 *
Zhijun He2dde4682014-01-09 09:11:49 -08003438 * Performance requirements:
3439 *
3440 * The HAL should return from this call in 100ms, and must return from this
3441 * call in 1000ms. And this call must not be blocked longer than pipeline
3442 * latency (see S7 for definition).
Alex Ray5f2fd852013-06-24 11:28:05 -07003443 *
3444 * Version information:
3445 *
3446 * only available if device version >= CAMERA_DEVICE_API_VERSION_3_1.
3447 *
3448 * Return values:
3449 *
3450 * 0: On a successful flush of the camera HAL.
3451 *
3452 * -EINVAL: If the input is malformed (the device is not valid).
3453 *
3454 * -ENODEV: If the camera device has encountered a serious error. After this
3455 * error is returned, only the close() method can be successfully
3456 * called by the framework.
3457 */
3458 int (*flush)(const struct camera3_device *);
3459
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -07003460 /**
3461 * signal_stream_flush:
3462 *
3463 * <= CAMERA_DEVICE_API_VERISON_3_5:
3464 *
3465 * Not defined and must be NULL
3466 *
3467 * >= CAMERA_DEVICE_API_VERISON_3_6:
3468 *
3469 * Signaling HAL camera service is about to perform configure_streams() call
3470 * and HAL must return all buffers of designated streams. HAL must finish
3471 * inflight requests normally and return all buffers belonging to the
3472 * designated streams through process_capture_result() or
3473 * return_stream_buffers() API in a timely manner, or camera service will run
3474 * into a fatal error.
3475 *
3476 * Note that this call serves as an optional hint and camera service may
3477 * skip calling this if all buffers are already returned.
3478 *
3479 * stream_configuration_counter: Note that this method may be called from
3480 * a different thread than configure_streams() and due to concurrency
3481 * issues, it is possible the signalStreamFlush call arrives later than
3482 * the corresponding configure_streams() call, so the HAL must check
3483 * stream_configuration_counter for such race condition. If the counter is
3484 * less than the counter in the last configure_streams() call HAL last
3485 * received, the call is stale and HAL should ignore this call.
3486 */
3487 void (*signal_stream_flush)(const struct camera3_device*,
3488 uint32_t stream_configuration_counter,
3489 uint32_t num_streams,
3490 const camera3_stream_t* const* streams);
3491
Alex Ray5f2fd852013-06-24 11:28:05 -07003492 /* reserved for future use */
Yin-Chia Yeh875df2a2018-09-20 15:05:13 -07003493 void *reserved[7];
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003494} camera3_device_ops_t;
3495
3496/**********************************************************************
3497 *
3498 * Camera device definition
3499 *
3500 */
3501typedef struct camera3_device {
3502 /**
3503 * common.version must equal CAMERA_DEVICE_API_VERSION_3_0 to identify this
3504 * device as implementing version 3.0 of the camera device HAL.
Zhijun He2dde4682014-01-09 09:11:49 -08003505 *
3506 * Performance requirements:
3507 *
Zhijun He06da1b32014-02-10 16:04:23 -08003508 * Camera open (common.module->common.methods->open) should return in 200ms, and must return
3509 * in 500ms.
Zhijun He2020ee22014-01-31 11:35:45 -08003510 * Camera close (common.close) should return in 200ms, and must return in 500ms.
3511 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08003512 */
3513 hw_device_t common;
3514 camera3_device_ops_t *ops;
3515 void *priv;
3516} camera3_device_t;
3517
3518__END_DECLS
3519
3520#endif /* #ifdef ANDROID_INCLUDE_CAMERA3_H */