[libcamera-devel] [PATCH 25/31] libcamera: control_serializer: Simplify serialization of ControlValue

Kieran Bingham kieran.bingham at ideasonboard.com
Thu Mar 5 17:45:32 CET 2020


On 29/02/2020 16:42, Laurent Pinchart wrote:
> Use the ControlValue::data() function to access raw data stored in the
> control value and simplify serialization.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>

That poor overworked buffer.write() call ;)

Reviewed-by: Kieran Bingham <kieran.binghm at ideasonboard.com>

> ---
>  src/libcamera/control_serializer.cpp | 35 +---------------------------
>  1 file changed, 1 insertion(+), 34 deletions(-)
> 
> diff --git a/src/libcamera/control_serializer.cpp b/src/libcamera/control_serializer.cpp
> index 5537c5466025..dc87b96f384b 100644
> --- a/src/libcamera/control_serializer.cpp
> +++ b/src/libcamera/control_serializer.cpp
> @@ -146,40 +146,7 @@ size_t ControlSerializer::binarySize(const ControlList &list)
>  void ControlSerializer::store(const ControlValue &value,
>  			      ByteStreamBuffer &buffer)
>  {
> -	switch (value.type()) {
> -	case ControlTypeBool: {
> -		bool data = value.get<bool>();
> -		buffer.write(&data);
> -		break;
> -	}
> -
> -	case ControlTypeInteger8: {
> -		int8_t data = value.get<int8_t>();
> -		buffer.write(&data);
> -		break;
> -	}
> -
> -	case ControlTypeInteger32: {
> -		int32_t data = value.get<int32_t>();
> -		buffer.write(&data);
> -		break;
> -	}
> -
> -	case ControlTypeInteger64: {
> -		uint64_t data = value.get<int64_t>();
> -		buffer.write(&data);
> -		break;
> -	}
> -
> -	case ControlTypeFloat: {
> -		float data = value.get<float>();
> -		buffer.write(&data);
> -		break;
> -	}
> -
> -	default:
> -		break;
> -	}
> +	buffer.write(value.data());

What?

One poor overworked line expected to do all the work of 34? ;-)


>  }
>  
>  void ControlSerializer::store(const ControlRange &range,
> 

-- 
Regards
--
Kieran


More information about the libcamera-devel mailing list