mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-19 18:35:07 +03:00
libcamera: control_serializer: Simplify serialization of ControlValue
Use the ControlValue::data() function to access raw data stored in the control value and simplify serialization. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.binghm@ideasonboard.com>
This commit is contained in:
parent
44ff5a18e4
commit
5467d61925
1 changed files with 1 additions and 34 deletions
|
@ -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 ControlTypeByte: {
|
||||
uint8_t data = value.get<uint8_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());
|
||||
}
|
||||
|
||||
void ControlSerializer::store(const ControlRange &range,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue