[libcamera-devel] [PATCH v5 04/10] libcamera: camera_sensor: Default analogue crop rectangle
Jacopo Mondi
jacopo at jmondi.org
Thu Jan 7 09:03:27 CET 2021
Hi Laurent, Niklas,
On Thu, Jan 07, 2021 at 04:44:59AM +0200, Laurent Pinchart wrote:
> Hi Jacopo,
>
> Thank you for the patch.
>
> On Wed, Jan 06, 2021 at 11:50:41AM +0100, Niklas Söderlund wrote:
> > On 2021-01-05 13:31:22 +0100, Jacopo Mondi wrote:
> > > As support for the V4L2_SEL_TGT_CROP selection target, used to read the
> > > sensor analogue crop rectangle is schedule to become mandatory but is
> > > still optional, cache a default value equal to the sensor's active area
> > > size at sensor validation time to allow the creation of the
> > > CameraSensorInfo in the case the driver does not support it.
> > >
> > > Signed-off-by: Jacopo Mondi <jacopo at jmondi.org>
> > > ---
> > > include/libcamera/internal/camera_sensor.h | 1 +
> > > src/libcamera/camera_sensor.cpp | 27 ++++++++++++++--------
> > > 2 files changed, 19 insertions(+), 9 deletions(-)
> > >
> > > diff --git a/include/libcamera/internal/camera_sensor.h b/include/libcamera/internal/camera_sensor.h
> > > index 86902b85ada8..de6a0202d19a 100644
> > > --- a/include/libcamera/internal/camera_sensor.h
> > > +++ b/include/libcamera/internal/camera_sensor.h
> > > @@ -86,6 +86,7 @@ private:
> > >
> > > Size pixelArraySize_;
> > > Rectangle activeArea_;
> > > + Rectangle analogueCrop_;
> > >
> > > ControlList properties_;
> > > };
> > > diff --git a/src/libcamera/camera_sensor.cpp b/src/libcamera/camera_sensor.cpp
> > > index 92c90862215d..eda41980aa22 100644
> > > --- a/src/libcamera/camera_sensor.cpp
> > > +++ b/src/libcamera/camera_sensor.cpp
> > > @@ -289,8 +289,10 @@ int CameraSensor::validateSensorDriver()
> > >
> > > ret = subdev_->getSelection(pad_, V4L2_SEL_TGT_CROP, &rect);
> > > if (ret) {
> > > + analogueCrop_ = activeArea_;
> > > LOG(CameraSensor, Warning)
> > > - << "Failed to retrieve the sensor crop rectangle";
> > > + << "The analogue crop rectangle has been defaulted to: "
> > > + << analogueCrop_.toString();
> > > err = -EINVAL;
> > > }
> > >
> > > @@ -643,13 +645,20 @@ int CameraSensor::sensorInfo(CameraSensorInfo *info) const
> > > */
> > > info->activeAreaSize = { activeArea_.width, activeArea_.height };
> > >
> > > - /* It's mandatory for the subdevice to report its crop rectangle. */
> > > - int ret = subdev_->getSelection(pad_, V4L2_SEL_TGT_CROP, &info->analogCrop);
> > > - if (ret) {
> > > - LOG(CameraSensor, Error)
> > > - << "Failed to construct camera sensor info: "
> > > - << "the camera sensor does not report the crop rectangle";
> > > - return ret;
> > > + /*
> > > + * \todo Support for retreiving the crop rectangle is scheduled to
> > > + * become mandatory. For the time being use the default value if it has
> > > + * been initialized at sensor driver validation time.
> > > + */
> > > + if (!analogueCrop_.isNull()) {
> > > + info->analogCrop = analogueCrop_;
> > > + } else {
> > > + int ret = subdev_->getSelection(pad_, V4L2_SEL_TGT_CROP, &info->analogCrop);
> > > + if (ret) {
> > > + LOG(CameraSensor, Error)
> > > + << "Failed to retrieve the sensor crop rectangle.";
> > > + return -EINVAL;
> > > + }
> >
> > As I understand 3/10 activeArea_ is static right? Would it make more
> > sens to use it here instead of adding and caching it in analogueCrop_?
> > This would align the code here to always call getSelection() and
> > huddling the defaulting in the if (ret) code block? I think this would
> > make the code cleaner as the default as you point out is a temporary
> > work around.
>
> I like this a bit better too. With if possible, or without this change,
>
Yeah, makes sense, I'll fixe
> Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
>
> > > }
> > >
> > > /*
> > > @@ -664,7 +673,7 @@ int CameraSensor::sensorInfo(CameraSensorInfo *info) const
> > >
> > > /* The bit depth and image size depend on the currently applied format. */
> > > V4L2SubdeviceFormat format{};
> > > - ret = subdev_->getFormat(pad_, &format);
> > > + int ret = subdev_->getFormat(pad_, &format);
> > > if (ret)
> > > return ret;
> > > info->bitsPerPixel = format.bitsPerPixel();
>
> --
> Regards,
>
> Laurent Pinchart
More information about the libcamera-devel
mailing list