[libcamera-devel] [PATCH 4/4] android: camera_device: Add ANDROID_REQUEST_MAX_NUM_INPUT_STREAMS

Jacopo Mondi jacopo at jmondi.org
Fri Jul 24 10:46:09 CEST 2020


Hi Niklas,

On Thu, Jul 23, 2020 at 07:39:42PM +0200, Niklas Söderlund wrote:
> Define the ANDROID_REQUEST_MAX_NUM_INPUT_STREAMS to zero to inform users
> the HAL does not support any reprocessing.
>
> Signed-off-by: Niklas Söderlund <niklas.soderlund at ragnatech.se>
> ---
>  src/android/camera_device.cpp | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/src/android/camera_device.cpp b/src/android/camera_device.cpp
> index d9fdaf44b2803399..0e9fc216d2b54a1a 100644
> --- a/src/android/camera_device.cpp
> +++ b/src/android/camera_device.cpp
> @@ -370,8 +370,8 @@ std::tuple<uint32_t, uint32_t> CameraDevice::calculateStaticMetadataSize()
>  	 * \todo Keep this in sync with the actual number of entries.
>  	 * Currently: 50 entries, 647 bytes of static metadata
>  	 */
> -	uint32_t numEntries = 49;
> -	uint32_t byteSize = 647;
> +	uint32_t numEntries = 50;
> +	uint32_t byteSize = 648;

According to the above comment, this should be 651 (647 + 4)
>
>  	/*
>  	 * Calculate space occupation in bytes for dynamically built metadata
> @@ -699,6 +699,11 @@ const camera_metadata_t *CameraDevice::getStaticMetadata()
>  	staticMetadata_->addEntry(ANDROID_REQUEST_PIPELINE_MAX_DEPTH,
>  				  &maxPipelineDepth, 1);
>
> +	/* LIMITED does not support reprocessing. */
> +	uint8_t maxNumInputStreams = 0;

I see this being of type int32_t

Before leaving a tag, can I ask what use cases requires this ? It's a
tag required for FULL level, which we don't claim to support at the
moment.

Thanks
   j

> +	staticMetadata_->addEntry(ANDROID_REQUEST_MAX_NUM_INPUT_STREAMS,
> +				  &maxNumInputStreams, 1);
> +
>  	std::vector<uint8_t> availableCapabilities = {
>  		ANDROID_REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE,
>  	};
> @@ -752,6 +757,7 @@ const camera_metadata_t *CameraDevice::getStaticMetadata()
>  		ANDROID_INFO_SUPPORTED_HARDWARE_LEVEL,
>  		ANDROID_REQUEST_PARTIAL_RESULT_COUNT,
>  		ANDROID_REQUEST_PIPELINE_MAX_DEPTH,
> +		ANDROID_REQUEST_MAX_NUM_INPUT_STREAMS,
>  		ANDROID_REQUEST_AVAILABLE_CAPABILITIES,
>  	};
>  	staticMetadata_->addEntry(ANDROID_REQUEST_AVAILABLE_CHARACTERISTICS_KEYS,
> --
> 2.27.0
>
> _______________________________________________
> libcamera-devel mailing list
> libcamera-devel at lists.libcamera.org
> https://lists.libcamera.org/listinfo/libcamera-devel


More information about the libcamera-devel mailing list