Merge "Revert "Add reprocess method, redefine gralloc ZSL usage flag"" into jb-mr1-dev
This commit is contained in:
commit
49b1d6baeb
2 changed files with 1 additions and 45 deletions
|
@ -666,48 +666,6 @@ typedef struct camera2_device_ops {
|
||||||
uint32_t *consumer_usage,
|
uint32_t *consumer_usage,
|
||||||
uint32_t *max_buffers);
|
uint32_t *max_buffers);
|
||||||
|
|
||||||
/**
|
|
||||||
* allocate_reprocess_stream_from_stream:
|
|
||||||
*
|
|
||||||
* Allocate a new input stream for use, which will use the buffers allocated
|
|
||||||
* for an existing output stream. That is, after the HAL enqueues a buffer
|
|
||||||
* onto the output stream, it may see that same buffer handed to it from
|
|
||||||
* this input reprocessing stream. After the HAL releases the buffer back to
|
|
||||||
* the reprocessing stream, it will be returned to the output queue for
|
|
||||||
* reuse.
|
|
||||||
*
|
|
||||||
* Error conditions:
|
|
||||||
*
|
|
||||||
* - Using an output stream of unsuitable size/format for the basis of the
|
|
||||||
* reprocessing stream.
|
|
||||||
*
|
|
||||||
* - Attempting to allocatee too many reprocessing streams at once.
|
|
||||||
*
|
|
||||||
* Input parameters:
|
|
||||||
*
|
|
||||||
* - output_stream_id: The ID of an existing output stream which has
|
|
||||||
* a size and format suitable for reprocessing.
|
|
||||||
*
|
|
||||||
* - reprocess_stream_ops: A structure of function pointers for acquiring
|
|
||||||
* and releasing buffers for this stream. The underlying stream will use
|
|
||||||
* the same graphics buffer handles as the output stream uses.
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*
|
|
||||||
* The HAL client must always release the reprocessing stream before it
|
|
||||||
* releases the output stream it is based on.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
int (*allocate_reprocess_stream_from_stream)(const struct camera2_device *,
|
|
||||||
uint32_t output_stream_id,
|
|
||||||
const camera2_stream_in_ops_t *reprocess_stream_ops,
|
|
||||||
// outputs
|
|
||||||
uint32_t *stream_id);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Release a reprocessing stream. Returns an error if called when
|
* Release a reprocessing stream. Returns an error if called when
|
||||||
* get_in_progress_count is non-zero, or if the stream id is not
|
* get_in_progress_count is non-zero, or if the stream id is not
|
||||||
|
|
|
@ -81,9 +81,7 @@ enum {
|
||||||
/* buffer will be read by the HW camera pipeline */
|
/* buffer will be read by the HW camera pipeline */
|
||||||
GRALLOC_USAGE_HW_CAMERA_READ = 0x00040000,
|
GRALLOC_USAGE_HW_CAMERA_READ = 0x00040000,
|
||||||
/* buffer will be used as part of zero-shutter-lag queue */
|
/* buffer will be used as part of zero-shutter-lag queue */
|
||||||
GRALLOC_USAGE_HW_CAMERA_ZSL = 0x00060000,
|
GRALLOC_USAGE_HW_CAMERA_ZSL = 0x00080000,
|
||||||
/* mask for the camera access values */
|
|
||||||
GRALLOC_USAGE_HW_CAMERA_MASK = 0x00060000,
|
|
||||||
/* mask for the software usage bit-mask */
|
/* mask for the software usage bit-mask */
|
||||||
GRALLOC_USAGE_HW_MASK = 0x00071F00,
|
GRALLOC_USAGE_HW_MASK = 0x00071F00,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue