2011-12-22 22:50:37 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_INCLUDE_CAMERA2_H
|
|
|
|
#define ANDROID_INCLUDE_CAMERA2_H
|
|
|
|
|
|
|
|
#include "camera_common.h"
|
2012-04-23 18:29:38 +02:00
|
|
|
#include "system/camera_metadata.h"
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-03-28 01:15:25 +02:00
|
|
|
* Camera device HAL 2.0 [ CAMERA_DEVICE_API_VERSION_2_0 ]
|
2011-12-22 22:50:37 +01:00
|
|
|
*
|
|
|
|
* EXPERIMENTAL.
|
|
|
|
*
|
|
|
|
* Supports both the android.hardware.ProCamera and
|
|
|
|
* android.hardware.Camera APIs.
|
|
|
|
*
|
|
|
|
* Camera devices that support this version of the HAL must return
|
2012-03-28 01:15:25 +02:00
|
|
|
* CAMERA_DEVICE_API_VERSION_2_0 in camera_device_t.common.version and in
|
2011-12-22 22:50:37 +01:00
|
|
|
* camera_info_t.device_version (from camera_module_t.get_camera_info).
|
|
|
|
*
|
|
|
|
* Camera modules that may contain version 2.0 devices must implement at least
|
|
|
|
* version 2.0 of the camera module interface (as defined by
|
|
|
|
* camera_module_t.common.module_api_version).
|
|
|
|
*
|
2012-04-23 18:29:38 +02:00
|
|
|
* See camera_common.h for more versioning details.
|
2011-12-22 22:50:37 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2012-03-22 21:11:05 +01:00
|
|
|
struct camera2_device;
|
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* Input/output stream buffer queue interface definitions
|
|
|
|
*
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Output image stream queue interface. A set of these methods is provided to
|
|
|
|
* the HAL device in allocate_stream(), and are used to interact with the
|
|
|
|
* gralloc buffer queue for that stream. They may not be called until after
|
|
|
|
* allocate_stream returns.
|
|
|
|
*/
|
2011-12-22 22:50:37 +01:00
|
|
|
typedef struct camera2_stream_ops {
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Get a buffer to fill from the queue. The size and format of the buffer
|
|
|
|
* are fixed for a given stream (defined in allocate_stream), and the stride
|
|
|
|
* should be queried from the platform gralloc module. The gralloc buffer
|
|
|
|
* will have been allocated based on the usage flags provided by
|
|
|
|
* allocate_stream, and will be locked for use.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*dequeue_buffer)(const struct camera2_stream_ops* w,
|
2012-04-23 18:29:38 +02:00
|
|
|
buffer_handle_t** buffer);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Push a filled buffer to the stream to be used by the consumer.
|
|
|
|
*
|
|
|
|
* The timestamp represents the time at start of exposure of the first row
|
|
|
|
* of the image; it must be from a monotonic clock, and is measured in
|
|
|
|
* nanoseconds. The timestamps do not need to be comparable between
|
|
|
|
* different cameras, or consecutive instances of the same camera. However,
|
|
|
|
* they must be comparable between streams from the same camera. If one
|
|
|
|
* capture produces buffers for multiple streams, each stream must have the
|
|
|
|
* same timestamp for that buffer, and that timestamp must match the
|
|
|
|
* timestamp in the output frame metadata.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*enqueue_buffer)(const struct camera2_stream_ops* w,
|
2012-04-23 18:29:38 +02:00
|
|
|
int64_t timestamp,
|
|
|
|
buffer_handle_t* buffer);
|
|
|
|
/**
|
|
|
|
* Return a buffer to the queue without marking it as filled.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*cancel_buffer)(const struct camera2_stream_ops* w,
|
2012-04-23 18:29:38 +02:00
|
|
|
buffer_handle_t* buffer);
|
|
|
|
/**
|
|
|
|
* Set the crop window for subsequently enqueued buffers. The parameters are
|
|
|
|
* measured in pixels relative to the buffer width and height.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*set_crop)(const struct camera2_stream_ops *w,
|
2012-04-23 18:29:38 +02:00
|
|
|
int left, int top, int right, int bottom);
|
|
|
|
|
2011-12-22 22:50:37 +01:00
|
|
|
} camera2_stream_ops_t;
|
|
|
|
|
2012-08-28 23:01:26 +02:00
|
|
|
/**
|
|
|
|
* Temporary definition during transition. TODO: Remove once HALs no longer
|
|
|
|
* reference this */
|
2012-04-23 18:29:38 +02:00
|
|
|
enum {
|
2012-08-28 23:01:26 +02:00
|
|
|
CAMERA2_HAL_PIXEL_FORMAT_OPAQUE = HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED
|
2012-04-23 18:29:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Input reprocess stream queue management. A set of these methods is provided
|
2012-05-22 19:41:20 +02:00
|
|
|
* to the HAL device in allocate_reprocess_stream(); they are used to interact
|
|
|
|
* with the reprocess stream's input gralloc buffer queue.
|
2012-04-23 18:29:38 +02:00
|
|
|
*/
|
|
|
|
typedef struct camera2_stream_in_ops {
|
|
|
|
/**
|
|
|
|
* Get the next buffer of image data to reprocess. The width, height, and
|
|
|
|
* format of the buffer is fixed in allocate_reprocess_stream(), and the
|
|
|
|
* stride and other details should be queried from the platform gralloc
|
|
|
|
* module as needed. The buffer will already be locked for use.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*acquire_buffer)(const struct camera2_stream_in_ops *w,
|
2012-04-23 18:29:38 +02:00
|
|
|
buffer_handle_t** buffer);
|
|
|
|
/**
|
|
|
|
* Return a used buffer to the buffer queue for reuse.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*release_buffer)(const struct camera2_stream_in_ops *w,
|
2012-04-23 18:29:38 +02:00
|
|
|
buffer_handle_t* buffer);
|
|
|
|
|
|
|
|
} camera2_stream_in_ops_t;
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
*
|
2011-12-22 22:50:37 +01:00
|
|
|
* Metadata queue management, used for requests sent to HAL module, and for
|
|
|
|
* frames produced by the HAL.
|
2012-03-22 21:11:05 +01:00
|
|
|
*
|
2012-04-23 18:29:38 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
enum {
|
|
|
|
CAMERA2_REQUEST_QUEUE_IS_BOTTOMLESS = -1
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Request input queue protocol:
|
2012-03-22 21:11:05 +01:00
|
|
|
*
|
2012-04-23 18:29:38 +02:00
|
|
|
* The framework holds the queue and its contents. At start, the queue is empty.
|
2012-03-22 21:11:05 +01:00
|
|
|
*
|
2012-04-23 18:29:38 +02:00
|
|
|
* 1. When the first metadata buffer is placed into the queue, the framework
|
|
|
|
* signals the device by calling notify_request_queue_not_empty().
|
2012-03-22 21:11:05 +01:00
|
|
|
*
|
2012-04-23 18:29:38 +02:00
|
|
|
* 2. After receiving notify_request_queue_not_empty, the device must call
|
2012-03-22 21:11:05 +01:00
|
|
|
* dequeue() once it's ready to handle the next buffer.
|
|
|
|
*
|
2012-04-23 18:29:38 +02:00
|
|
|
* 3. Once the device has processed a buffer, and is ready for the next buffer,
|
|
|
|
* it must call dequeue() again instead of waiting for a notification. If
|
|
|
|
* there are no more buffers available, dequeue() will return NULL. After
|
|
|
|
* this point, when a buffer becomes available, the framework must call
|
|
|
|
* notify_request_queue_not_empty() again. If the device receives a NULL
|
|
|
|
* return from dequeue, it does not need to query the queue again until a
|
|
|
|
* notify_request_queue_not_empty() call is received from the source.
|
|
|
|
*
|
|
|
|
* 4. If the device calls buffer_count() and receives 0, this does not mean that
|
|
|
|
* the framework will provide a notify_request_queue_not_empty() call. The
|
|
|
|
* framework will only provide such a notification after the device has
|
|
|
|
* received a NULL from dequeue, or on initial startup.
|
2012-03-22 21:11:05 +01:00
|
|
|
*
|
2012-04-23 18:29:38 +02:00
|
|
|
* 5. The dequeue() call in response to notify_request_queue_not_empty() may be
|
|
|
|
* on the same thread as the notify_request_queue_not_empty() call, and may
|
|
|
|
* be performed from within the notify call.
|
2012-03-22 21:11:05 +01:00
|
|
|
*
|
2012-04-23 18:29:38 +02:00
|
|
|
* 6. All dequeued request buffers must be returned to the framework by calling
|
|
|
|
* free_request, including when errors occur, a device flush is requested, or
|
|
|
|
* when the device is shutting down.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
typedef struct camera2_request_queue_src_ops {
|
2011-12-22 22:50:37 +01:00
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Get the count of request buffers pending in the queue. May return
|
|
|
|
* CAMERA2_REQUEST_QUEUE_IS_BOTTOMLESS if a repeating request (stream
|
|
|
|
* request) is currently configured. Calling this method has no effect on
|
|
|
|
* whether the notify_request_queue_not_empty() method will be called by the
|
|
|
|
* framework.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*request_count)(const struct camera2_request_queue_src_ops *q);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Get a metadata buffer from the framework. Returns OK if there is no
|
|
|
|
* error. If the queue is empty, returns NULL in buffer. In that case, the
|
|
|
|
* device must wait for a notify_request_queue_not_empty() message before
|
|
|
|
* attempting to dequeue again. Buffers obtained in this way must be
|
|
|
|
* returned to the framework with free_request().
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*dequeue_request)(const struct camera2_request_queue_src_ops *q,
|
2011-12-22 22:50:37 +01:00
|
|
|
camera_metadata_t **buffer);
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Return a metadata buffer to the framework once it has been used, or if
|
|
|
|
* an error or shutdown occurs.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*free_request)(const struct camera2_request_queue_src_ops *q,
|
2011-12-22 22:50:37 +01:00
|
|
|
camera_metadata_t *old_buffer);
|
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
} camera2_request_queue_src_ops_t;
|
2011-12-22 22:50:37 +01:00
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Frame output queue protocol:
|
|
|
|
*
|
|
|
|
* The framework holds the queue and its contents. At start, the queue is empty.
|
|
|
|
*
|
|
|
|
* 1. When the device is ready to fill an output metadata frame, it must dequeue
|
|
|
|
* a metadata buffer of the required size.
|
|
|
|
*
|
|
|
|
* 2. It should then fill the metadata buffer, and place it on the frame queue
|
|
|
|
* using enqueue_frame. The framework takes ownership of the frame.
|
|
|
|
*
|
|
|
|
* 3. In case of an error, a request to flush the pipeline, or shutdown, the
|
|
|
|
* device must return any affected dequeued frames to the framework by
|
|
|
|
* calling cancel_frame.
|
|
|
|
*/
|
|
|
|
typedef struct camera2_frame_queue_dst_ops {
|
2011-12-22 22:50:37 +01:00
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Get an empty metadata buffer to fill from the framework. The new metadata
|
|
|
|
* buffer will have room for entries number of metadata entries, plus
|
|
|
|
* data_bytes worth of extra storage. Frames dequeued here must be returned
|
|
|
|
* to the framework with either cancel_frame or enqueue_frame.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*dequeue_frame)(const struct camera2_frame_queue_dst_ops *q,
|
2012-04-23 18:29:38 +02:00
|
|
|
size_t entries, size_t data_bytes,
|
|
|
|
camera_metadata_t **buffer);
|
2012-03-22 21:11:05 +01:00
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Return a dequeued metadata buffer to the framework for reuse; do not mark it as
|
|
|
|
* filled. Use when encountering errors, or flushing the internal request queue.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*cancel_frame)(const struct camera2_frame_queue_dst_ops *q,
|
2012-04-23 18:29:38 +02:00
|
|
|
camera_metadata_t *buffer);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Place a completed metadata frame on the frame output queue.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*enqueue_frame)(const struct camera2_frame_queue_dst_ops *q,
|
2012-04-23 18:29:38 +02:00
|
|
|
camera_metadata_t *buffer);
|
|
|
|
|
|
|
|
} camera2_frame_queue_dst_ops_t;
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* Notification callback and message definition, and trigger definitions
|
|
|
|
*
|
|
|
|
*/
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Asynchronous notification callback from the HAL, fired for various
|
|
|
|
* reasons. Only for information independent of frame capture, or that require
|
2012-04-23 18:29:38 +02:00
|
|
|
* specific timing. The user pointer must be the same one that was passed to the
|
|
|
|
* device in set_notify_callback().
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
|
|
|
typedef void (*camera2_notify_callback)(int32_t msg_type,
|
|
|
|
int32_t ext1,
|
|
|
|
int32_t ext2,
|
2012-04-23 18:29:38 +02:00
|
|
|
int32_t ext3,
|
2011-12-22 22:50:37 +01:00
|
|
|
void *user);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Possible message types for camera2_notify_callback
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* An error has occurred. Argument ext1 contains the error code, and
|
|
|
|
* ext2 and ext3 contain any error-specific information.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-03-22 21:09:56 +01:00
|
|
|
CAMERA2_MSG_ERROR = 0x0001,
|
2011-12-22 22:50:37 +01:00
|
|
|
/**
|
|
|
|
* The exposure of a given request has begun. Argument ext1 contains the
|
2012-04-23 18:29:38 +02:00
|
|
|
* frame number, and ext2 and ext3 contain the low-order and high-order
|
|
|
|
* bytes of the timestamp for when exposure began.
|
|
|
|
* (timestamp = (ext3 << 32 | ext2))
|
|
|
|
*/
|
|
|
|
CAMERA2_MSG_SHUTTER = 0x0010,
|
|
|
|
/**
|
|
|
|
* The autofocus routine has changed state. Argument ext1 contains the new
|
|
|
|
* state; the values are the same as those for the metadata field
|
2012-08-03 19:56:57 +02:00
|
|
|
* android.control.afState. Ext2 contains the latest trigger ID passed to
|
|
|
|
* trigger_action(CAMERA2_TRIGGER_AUTOFOCUS) or
|
|
|
|
* trigger_action(CAMERA2_TRIGGER_CANCEL_AUTOFOCUS), or 0 if trigger has not
|
|
|
|
* been called with either of those actions.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
CAMERA2_MSG_AUTOFOCUS = 0x0020,
|
|
|
|
/**
|
|
|
|
* The autoexposure routine has changed state. Argument ext1 contains the
|
|
|
|
* new state; the values are the same as those for the metadata field
|
2012-08-03 19:56:57 +02:00
|
|
|
* android.control.aeState. Ext2 contains the latest trigger ID value passed to
|
2012-04-23 18:29:38 +02:00
|
|
|
* trigger_action(CAMERA2_TRIGGER_PRECAPTURE_METERING), or 0 if that method
|
|
|
|
* has not been called.
|
|
|
|
*/
|
|
|
|
CAMERA2_MSG_AUTOEXPOSURE = 0x0021,
|
|
|
|
/**
|
|
|
|
* The auto-whitebalance routine has changed state. Argument ext1 contains
|
|
|
|
* the new state; the values are the same as those for the metadata field
|
2012-08-03 19:56:57 +02:00
|
|
|
* android.control.awbState. Ext2 contains the latest trigger ID passed to
|
|
|
|
* trigger_action(CAMERA2_TRIGGER_PRECAPTURE_METERING), or 0 if that method
|
|
|
|
* has not been called.
|
2012-04-23 18:29:38 +02:00
|
|
|
*/
|
|
|
|
CAMERA2_MSG_AUTOWB = 0x0022
|
2011-12-22 22:50:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Error codes for CAMERA_MSG_ERROR
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
/**
|
|
|
|
* A serious failure occured. Camera device may not work without reboot, and
|
|
|
|
* no further frames or buffer streams will be produced by the
|
|
|
|
* device. Device should be treated as closed.
|
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
CAMERA2_MSG_ERROR_HARDWARE = 0x0001,
|
2011-12-22 22:50:37 +01:00
|
|
|
/**
|
|
|
|
* A serious failure occured. No further frames or buffer streams will be
|
|
|
|
* produced by the device. Device should be treated as closed. The client
|
|
|
|
* must reopen the device to use it again.
|
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
CAMERA2_MSG_ERROR_DEVICE,
|
2011-12-22 22:50:37 +01:00
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* An error has occurred in processing a request. No output (metadata or
|
|
|
|
* buffers) will be produced for this request. ext2 contains the frame
|
|
|
|
* number of the request. Subsequent requests are unaffected, and the device
|
|
|
|
* remains operational.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
CAMERA2_MSG_ERROR_REQUEST,
|
|
|
|
/**
|
|
|
|
* An error has occurred in producing an output frame metadata buffer for a
|
|
|
|
* request, but image buffers for it will still be available. Subsequent
|
|
|
|
* requests are unaffected, and the device remains operational. ext2
|
|
|
|
* contains the frame number of the request.
|
|
|
|
*/
|
|
|
|
CAMERA2_MSG_ERROR_FRAME,
|
|
|
|
/**
|
|
|
|
* An error has occurred in placing an output buffer into a stream for a
|
|
|
|
* request. The frame metadata and other buffers may still be
|
|
|
|
* available. Subsequent requests are unaffected, and the device remains
|
|
|
|
* operational. ext2 contains the frame number of the request, and ext3
|
|
|
|
* contains the stream id.
|
|
|
|
*/
|
|
|
|
CAMERA2_MSG_ERROR_STREAM,
|
|
|
|
/**
|
|
|
|
* Number of error types
|
|
|
|
*/
|
|
|
|
CAMERA2_MSG_NUM_ERRORS
|
2011-12-22 22:50:37 +01:00
|
|
|
};
|
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Possible trigger ids for trigger_action()
|
|
|
|
*/
|
|
|
|
enum {
|
2011-12-22 22:50:37 +01:00
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Trigger an autofocus cycle. The effect of the trigger depends on the
|
|
|
|
* autofocus mode in effect when the trigger is received, which is the mode
|
2012-08-03 19:56:57 +02:00
|
|
|
* listed in the latest capture request to be dequeued by the HAL. If the
|
|
|
|
* mode is OFF, EDOF, or FIXED, the trigger has no effect. In AUTO, MACRO,
|
|
|
|
* or CONTINUOUS_* modes, see below for the expected behavior. The state of
|
2012-04-23 18:29:38 +02:00
|
|
|
* the autofocus cycle can be tracked in android.control.afMode and the
|
2012-08-03 19:56:57 +02:00
|
|
|
* corresponding notifications.
|
|
|
|
*
|
|
|
|
**
|
|
|
|
* In AUTO or MACRO mode, the AF state transitions (and notifications)
|
|
|
|
* when calling with trigger ID = N with the previous ID being K are:
|
|
|
|
*
|
|
|
|
* Initial state Transitions
|
|
|
|
* INACTIVE (K) -> ACTIVE_SCAN (N) -> AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* AF_FOCUSED (K) -> ACTIVE_SCAN (N) -> AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* AF_NOT_FOCUSED (K) -> ACTIVE_SCAN (N) -> AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* ACTIVE_SCAN (K) -> AF_FOCUSED(N) or AF_NOT_FOCUSED(N)
|
|
|
|
* PASSIVE_SCAN (K) Not used in AUTO/MACRO mode
|
|
|
|
* PASSIVE_FOCUSED (K) Not used in AUTO/MACRO mode
|
|
|
|
*
|
|
|
|
**
|
|
|
|
* In CONTINUOUS_PICTURE mode, triggering AF must lock the AF to the current
|
|
|
|
* lens position and transition the AF state to either AF_FOCUSED or
|
|
|
|
* NOT_FOCUSED. If a passive scan is underway, that scan must complete and
|
|
|
|
* then lock the lens position and change AF state. TRIGGER_CANCEL_AUTOFOCUS
|
|
|
|
* will allow the AF to restart its operation.
|
|
|
|
*
|
|
|
|
* Initial state Transitions
|
|
|
|
* INACTIVE (K) -> immediate AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* PASSIVE_FOCUSED (K) -> immediate AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* PASSIVE_SCAN (K) -> AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* AF_FOCUSED (K) no effect except to change next notification ID to N
|
|
|
|
* AF_NOT_FOCUSED (K) no effect except to change next notification ID to N
|
|
|
|
*
|
|
|
|
**
|
|
|
|
* In CONTINUOUS_VIDEO mode, triggering AF must lock the AF to the current
|
|
|
|
* lens position and transition the AF state to either AF_FOCUSED or
|
|
|
|
* NOT_FOCUSED. If a passive scan is underway, it must immediately halt, in
|
|
|
|
* contrast with CONTINUOUS_PICTURE mode. TRIGGER_CANCEL_AUTOFOCUS will
|
|
|
|
* allow the AF to restart its operation.
|
|
|
|
*
|
|
|
|
* Initial state Transitions
|
|
|
|
* INACTIVE (K) -> immediate AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* PASSIVE_FOCUSED (K) -> immediate AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* PASSIVE_SCAN (K) -> immediate AF_FOCUSED (N) or AF_NOT_FOCUSED (N)
|
|
|
|
* AF_FOCUSED (K) no effect except to change next notification ID to N
|
|
|
|
* AF_NOT_FOCUSED (K) no effect except to change next notification ID to N
|
|
|
|
*
|
|
|
|
* Ext1 is an ID that must be returned in subsequent auto-focus state change
|
|
|
|
* notifications through camera2_notify_callback() and stored in
|
|
|
|
* android.control.afTriggerId.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
CAMERA2_TRIGGER_AUTOFOCUS = 0x0001,
|
2012-08-03 19:56:57 +02:00
|
|
|
/**
|
|
|
|
* Send a cancel message to the autofocus algorithm. The effect of the
|
|
|
|
* cancellation depends on the autofocus mode in effect when the trigger is
|
|
|
|
* received, which is the mode listed in the latest capture request to be
|
|
|
|
* dequeued by the HAL. If the AF mode is OFF or EDOF, the cancel has no
|
|
|
|
* effect. For other modes, the lens should return to its default position,
|
|
|
|
* any current autofocus scan must be canceled, and the AF state should be
|
|
|
|
* set to INACTIVE.
|
|
|
|
*
|
|
|
|
* The state of the autofocus cycle can be tracked in android.control.afMode
|
|
|
|
* and the corresponding notification. Continuous autofocus modes may resume
|
|
|
|
* focusing operations thereafter exactly as if the camera had just been set
|
|
|
|
* to a continuous AF mode.
|
|
|
|
*
|
|
|
|
* Ext1 is an ID that must be returned in subsequent auto-focus state change
|
|
|
|
* notifications through camera2_notify_callback() and stored in
|
|
|
|
* android.control.afTriggerId.
|
|
|
|
*/
|
|
|
|
CAMERA2_TRIGGER_CANCEL_AUTOFOCUS,
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Trigger a pre-capture metering cycle, which may include firing the flash
|
|
|
|
* to determine proper capture parameters. Typically, this trigger would be
|
|
|
|
* fired for a half-depress of a camera shutter key, or before a snapshot
|
|
|
|
* capture in general. The state of the metering cycle can be tracked in
|
|
|
|
* android.control.aeMode and the corresponding notification. If the
|
2012-08-03 19:56:57 +02:00
|
|
|
* auto-exposure mode is OFF, the trigger does nothing.
|
|
|
|
*
|
|
|
|
* Ext1 is an ID that must be returned in subsequent
|
|
|
|
* auto-exposure/auto-white balance state change notifications through
|
|
|
|
* camera2_notify_callback() and stored in android.control.aePrecaptureId.
|
2012-04-23 18:29:38 +02:00
|
|
|
*/
|
|
|
|
CAMERA2_TRIGGER_PRECAPTURE_METERING
|
|
|
|
};
|
2011-12-22 22:50:37 +01:00
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Possible template types for construct_default_request()
|
|
|
|
*/
|
|
|
|
enum {
|
2011-12-22 22:50:37 +01:00
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Standard camera preview operation with 3A on auto.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
CAMERA2_TEMPLATE_PREVIEW = 1,
|
|
|
|
/**
|
|
|
|
* Standard camera high-quality still capture with 3A and flash on auto.
|
|
|
|
*/
|
|
|
|
CAMERA2_TEMPLATE_STILL_CAPTURE,
|
|
|
|
/**
|
|
|
|
* Standard video recording plus preview with 3A on auto, torch off.
|
|
|
|
*/
|
|
|
|
CAMERA2_TEMPLATE_VIDEO_RECORD,
|
|
|
|
/**
|
|
|
|
* High-quality still capture while recording video. Application will
|
|
|
|
* include preview, video record, and full-resolution YUV or JPEG streams in
|
|
|
|
* request. Must not cause stuttering on video stream. 3A on auto.
|
|
|
|
*/
|
|
|
|
CAMERA2_TEMPLATE_VIDEO_SNAPSHOT,
|
|
|
|
/**
|
|
|
|
* Zero-shutter-lag mode. Application will request preview and
|
2012-08-03 19:56:57 +02:00
|
|
|
* full-resolution data for each frame, and reprocess it to JPEG when a
|
2012-04-23 18:29:38 +02:00
|
|
|
* still image is requested by user. Settings should provide highest-quality
|
|
|
|
* full-resolution images without compromising preview frame rate. 3A on
|
|
|
|
* auto.
|
|
|
|
*/
|
2012-05-15 00:25:27 +02:00
|
|
|
CAMERA2_TEMPLATE_ZERO_SHUTTER_LAG,
|
|
|
|
|
|
|
|
/* Total number of templates */
|
|
|
|
CAMERA2_TEMPLATE_COUNT
|
2012-04-23 18:29:38 +02:00
|
|
|
};
|
2011-12-22 22:50:37 +01:00
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* Camera device operations
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
typedef struct camera2_device_ops {
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Request and frame queue setup and management methods
|
|
|
|
*/
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Pass in input request queue interface methods.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*set_request_queue_src_ops)(const struct camera2_device *,
|
|
|
|
const camera2_request_queue_src_ops_t *request_src_ops);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**
|
|
|
|
* Notify device that the request queue is no longer empty. Must only be
|
|
|
|
* called when the first buffer is added a new queue, or after the source
|
|
|
|
* has returned NULL in response to a dequeue call.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*notify_request_queue_not_empty)(const struct camera2_device *);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Pass in output frame queue interface methods
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*set_frame_queue_dst_ops)(const struct camera2_device *,
|
|
|
|
const camera2_frame_queue_dst_ops_t *frame_dst_ops);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Number of camera requests being processed by the device at the moment
|
|
|
|
* (captures/reprocesses that have had their request dequeued, but have not
|
|
|
|
* yet been enqueued onto output pipeline(s) ). No streams may be released
|
|
|
|
* by the framework until the in-progress count is 0.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*get_in_progress_count)(const struct camera2_device *);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Flush all in-progress captures. This includes all dequeued requests
|
|
|
|
* (regular or reprocessing) that have not yet placed any outputs into a
|
|
|
|
* stream or the frame queue. Partially completed captures must be completed
|
2012-04-23 18:29:38 +02:00
|
|
|
* normally. No new requests may be dequeued from the request queue until
|
|
|
|
* the flush completes.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*flush_captures_in_progress)(const struct camera2_device *);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Create a filled-in default request for standard camera use cases.
|
|
|
|
*
|
|
|
|
* The device must return a complete request that is configured to meet the
|
|
|
|
* requested use case, which must be one of the CAMERA2_TEMPLATE_*
|
|
|
|
* enums. All request control fields must be included, except for
|
2012-05-22 19:41:20 +02:00
|
|
|
* android.request.outputStreams.
|
2012-04-23 18:29:38 +02:00
|
|
|
*
|
|
|
|
* The metadata buffer returned must be allocated with
|
|
|
|
* allocate_camera_metadata. The framework takes ownership of the buffer.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*construct_default_request)(const struct camera2_device *,
|
2012-04-23 18:29:38 +02:00
|
|
|
int request_template,
|
|
|
|
camera_metadata_t **request);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**********************************************************************
|
|
|
|
* Stream management
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* allocate_stream:
|
|
|
|
*
|
|
|
|
* Allocate a new output stream for use, defined by the output buffer width,
|
|
|
|
* height, target, and possibly the pixel format. Returns the new stream's
|
|
|
|
* ID, gralloc usage flags, minimum queue buffer count, and possibly the
|
|
|
|
* pixel format, on success. Error conditions:
|
|
|
|
*
|
|
|
|
* - Requesting a width/height/format combination not listed as
|
|
|
|
* supported by the sensor's static characteristics
|
|
|
|
*
|
|
|
|
* - Asking for too many streams of a given format type (2 bayer raw
|
|
|
|
* streams, for example).
|
|
|
|
*
|
|
|
|
* Input parameters:
|
|
|
|
*
|
|
|
|
* - width, height, format: Specification for the buffers to be sent through
|
2012-08-28 23:01:26 +02:00
|
|
|
* this stream. Format is a value from the HAL_PIXEL_FORMAT_* list. If
|
|
|
|
* HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED is used, then the platform
|
|
|
|
* gralloc module will select a format based on the usage flags provided
|
|
|
|
* by the camera HAL and the consumer of the stream. The camera HAL should
|
|
|
|
* inspect the buffers handed to it in the register_stream_buffers call to
|
|
|
|
* obtain the implementation-specific format if necessary.
|
2012-04-23 18:29:38 +02:00
|
|
|
*
|
|
|
|
* - stream_ops: A structure of function pointers for obtaining and queuing
|
|
|
|
* up buffers for this stream. The underlying stream will be configured
|
|
|
|
* based on the usage and max_buffers outputs. The methods in this
|
|
|
|
* structure may not be called until after allocate_stream returns.
|
|
|
|
*
|
|
|
|
* Output parameters:
|
|
|
|
*
|
|
|
|
* - stream_id: An unsigned integer identifying this stream. This value is
|
|
|
|
* used in incoming requests to identify the stream, and in releasing the
|
|
|
|
* stream.
|
|
|
|
*
|
|
|
|
* - usage: The gralloc usage mask needed by the HAL device for producing
|
|
|
|
* the requested type of data. This is used in allocating new gralloc
|
|
|
|
* buffers for the stream buffer queue.
|
|
|
|
*
|
|
|
|
* - max_buffers: The maximum number of buffers the HAL device may need to
|
|
|
|
* have dequeued at the same time. The device may not dequeue more buffers
|
|
|
|
* than this value at the same time.
|
|
|
|
*
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
int (*allocate_stream)(
|
2012-05-18 02:54:56 +02:00
|
|
|
const struct camera2_device *,
|
2012-04-23 18:29:38 +02:00
|
|
|
// inputs
|
|
|
|
uint32_t width,
|
|
|
|
uint32_t height,
|
|
|
|
int format,
|
2012-05-18 02:54:56 +02:00
|
|
|
const camera2_stream_ops_t *stream_ops,
|
2012-04-23 18:29:38 +02:00
|
|
|
// outputs
|
|
|
|
uint32_t *stream_id,
|
2012-08-28 23:01:26 +02:00
|
|
|
uint32_t *format_actual, // IGNORED, will be removed
|
2012-04-23 18:29:38 +02:00
|
|
|
uint32_t *usage,
|
|
|
|
uint32_t *max_buffers);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Register buffers for a given stream. This is called after a successful
|
|
|
|
* allocate_stream call, and before the first request referencing the stream
|
|
|
|
* is enqueued. This method is intended to allow the HAL device to map or
|
|
|
|
* otherwise prepare the buffers for later use. num_buffers is guaranteed to
|
|
|
|
* be at least max_buffers (from allocate_stream), but may be larger. The
|
|
|
|
* buffers will already be locked for use. At the end of the call, all the
|
2012-08-28 23:01:26 +02:00
|
|
|
* buffers must be ready to be returned to the queue. If the stream format
|
|
|
|
* was set to HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, the camera HAL should
|
|
|
|
* inspect the passed-in buffers here to determine any platform-private
|
|
|
|
* pixel format information.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
2012-04-23 18:29:38 +02:00
|
|
|
int (*register_stream_buffers)(
|
2012-05-18 02:54:56 +02:00
|
|
|
const struct camera2_device *,
|
2012-04-23 18:29:38 +02:00
|
|
|
uint32_t stream_id,
|
|
|
|
int num_buffers,
|
|
|
|
buffer_handle_t *buffers);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-04-23 18:29:38 +02:00
|
|
|
* Release a stream. Returns an error if called when get_in_progress_count
|
|
|
|
* is non-zero, or if the stream id is invalid.
|
2011-12-22 22:50:37 +01:00
|
|
|
*/
|
|
|
|
int (*release_stream)(
|
2012-05-18 02:54:56 +02:00
|
|
|
const struct camera2_device *,
|
2012-04-23 18:29:38 +02:00
|
|
|
uint32_t stream_id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* allocate_reprocess_stream:
|
|
|
|
*
|
|
|
|
* Allocate a new input stream for use, defined by the output buffer width,
|
|
|
|
* height, and the pixel format. Returns the new stream's ID, gralloc usage
|
|
|
|
* flags, and required simultaneously acquirable buffer count, on
|
|
|
|
* success. Error conditions:
|
|
|
|
*
|
|
|
|
* - Requesting a width/height/format combination not listed as
|
|
|
|
* supported by the sensor's static characteristics
|
|
|
|
*
|
|
|
|
* - Asking for too many reprocessing streams to be configured at once.
|
|
|
|
*
|
|
|
|
* Input parameters:
|
|
|
|
*
|
|
|
|
* - width, height, format: Specification for the buffers to be sent through
|
|
|
|
* this stream. Format must be a value from the HAL_PIXEL_FORMAT_* list.
|
|
|
|
*
|
|
|
|
* - reprocess_stream_ops: A structure of function pointers for acquiring
|
|
|
|
* and releasing buffers for this stream. The underlying stream will be
|
|
|
|
* configured based on the usage and max_buffers outputs.
|
|
|
|
*
|
|
|
|
* Output parameters:
|
|
|
|
*
|
|
|
|
* - stream_id: An unsigned integer identifying this stream. This value is
|
|
|
|
* used in incoming requests to identify the stream, and in releasing the
|
|
|
|
* stream. These ids are numbered separately from the input stream ids.
|
|
|
|
*
|
|
|
|
* - consumer_usage: The gralloc usage mask needed by the HAL device for
|
|
|
|
* consuming the requested type of data. This is used in allocating new
|
|
|
|
* gralloc buffers for the stream buffer queue.
|
|
|
|
*
|
|
|
|
* - max_buffers: The maximum number of buffers the HAL device may need to
|
|
|
|
* have acquired at the same time. The device may not have more buffers
|
|
|
|
* acquired at the same time than this value.
|
|
|
|
*
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*allocate_reprocess_stream)(const struct camera2_device *,
|
2012-04-23 18:29:38 +02:00
|
|
|
uint32_t width,
|
|
|
|
uint32_t height,
|
|
|
|
uint32_t format,
|
2012-05-18 02:54:56 +02:00
|
|
|
const camera2_stream_in_ops_t *reprocess_stream_ops,
|
2012-04-23 18:29:38 +02:00
|
|
|
// outputs
|
|
|
|
uint32_t *stream_id,
|
|
|
|
uint32_t *consumer_usage,
|
|
|
|
uint32_t *max_buffers);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Release a reprocessing stream. Returns an error if called when
|
|
|
|
* get_in_progress_count is non-zero, or if the stream id is not
|
|
|
|
* valid.
|
|
|
|
*/
|
|
|
|
int (*release_reprocess_stream)(
|
2012-05-18 02:54:56 +02:00
|
|
|
const struct camera2_device *,
|
2012-04-23 18:29:38 +02:00
|
|
|
uint32_t stream_id);
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Miscellaneous methods
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Trigger asynchronous activity. This is used for triggering special
|
|
|
|
* behaviors of the camera 3A routines when they are in use. See the
|
|
|
|
* documentation for CAMERA2_TRIGGER_* above for details of the trigger ids
|
|
|
|
* and their arguments.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*trigger_action)(const struct camera2_device *,
|
2012-04-23 18:29:38 +02:00
|
|
|
uint32_t trigger_id,
|
2012-08-03 19:56:57 +02:00
|
|
|
int32_t ext1,
|
|
|
|
int32_t ext2);
|
2012-04-23 18:29:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Notification callback setup
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*set_notify_callback)(const struct camera2_device *,
|
2012-04-23 18:29:38 +02:00
|
|
|
camera2_notify_callback notify_cb,
|
|
|
|
void *user);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
2012-03-22 21:11:05 +01:00
|
|
|
/**
|
|
|
|
* Get methods to query for vendor extension metadata tag infomation. May
|
|
|
|
* set ops to NULL if no vendor extension tags are defined.
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*get_metadata_vendor_tag_ops)(const struct camera2_device*,
|
2012-03-22 21:11:05 +01:00
|
|
|
vendor_tag_query_ops_t **ops);
|
|
|
|
|
2011-12-22 22:50:37 +01:00
|
|
|
/**
|
|
|
|
* Dump state of the camera hardware
|
|
|
|
*/
|
2012-05-18 02:54:56 +02:00
|
|
|
int (*dump)(const struct camera2_device *, int fd);
|
2011-12-22 22:50:37 +01:00
|
|
|
|
|
|
|
} camera2_device_ops_t;
|
|
|
|
|
2012-04-23 18:29:38 +02:00
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* Camera device definition
|
|
|
|
*
|
|
|
|
*/
|
2011-12-22 22:50:37 +01:00
|
|
|
typedef struct camera2_device {
|
|
|
|
/**
|
2012-03-28 01:15:25 +02:00
|
|
|
* common.version must equal CAMERA_DEVICE_API_VERSION_2_0 to identify
|
2011-12-22 22:50:37 +01:00
|
|
|
* this device as implementing version 2.0 of the camera device HAL.
|
|
|
|
*/
|
|
|
|
hw_device_t common;
|
|
|
|
camera2_device_ops_t *ops;
|
|
|
|
void *priv;
|
|
|
|
} camera2_device_t;
|
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* #ifdef ANDROID_INCLUDE_CAMERA2_H */
|