diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-10-12 03:05:09 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-10-15 05:05:46 +0300 |
commit | 2f75a7e5b8c6258dc12e9e3128cb30133f66b4f9 (patch) | |
tree | 353fcff20b894720435cd4f30928fec834016e3c | |
parent | 211d6f5ca6adfa5d90a73e753d17478123ba887f (diff) |
libcamera: v4l2_subdevice: Set format field to V4L2_FIELD_NONE
libcamera doesn't support interlaced formats, set the field to
V4L2_FIELD_NONE explicitly instead of relying on drivers to interpret
V4L2_FIELD_ANY the way we want it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | src/libcamera/v4l2_subdevice.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcamera/v4l2_subdevice.cpp b/src/libcamera/v4l2_subdevice.cpp index 8fe5e45b..023e2328 100644 --- a/src/libcamera/v4l2_subdevice.cpp +++ b/src/libcamera/v4l2_subdevice.cpp @@ -425,6 +425,7 @@ int V4L2Subdevice::setFormat(unsigned int pad, V4L2SubdeviceFormat *format, subdevFmt.format.width = format->size.width; subdevFmt.format.height = format->size.height; subdevFmt.format.code = format->mbus_code; + subdevFmt.format.field = V4L2_FIELD_NONE; int ret = ioctl(VIDIOC_SUBDEV_S_FMT, &subdevFmt); if (ret) { |