mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-24 17:15:07 +03:00
libcamera: camera_sensor: Adjust CameraSensorInfo::analogCrop
The CameraSensorInfo::analogCrop top-left corner is defined relatively to the sensor active area. The analogCrop rectangle is constucted by retrieving the V4L2 selection target V4L2_SEL_TGT_CROP which is instead defined relatively to the whole sensor's pixel array size. Adjust the the analogCrop rectangle subtracting from its top-left corner the active area distance from the full pixel array. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
parent
c5b732b2ca
commit
b33a5c4153
1 changed files with 10 additions and 0 deletions
|
@ -527,6 +527,16 @@ int CameraSensor::sensorInfo(CameraSensorInfo *info) const
|
|||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* CameraSensorInfo::analogCrop::x and CameraSensorInfo::analogCrop::y
|
||||
* are defined relatively to the active pixel area, while V4L2's
|
||||
* TGT_CROP target is defined in respect to the full pixel array.
|
||||
*
|
||||
* Compensate it by subtracting the active areas offset.
|
||||
*/
|
||||
info->analogCrop.x -= rect.x;
|
||||
info->analogCrop.y -= rect.y;
|
||||
|
||||
/* The bit depth and image size depend on the currently applied format. */
|
||||
V4L2SubdeviceFormat format{};
|
||||
ret = subdev_->getFormat(pad_, &format);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue