summaryrefslogtreecommitdiff
path: root/src/libcamera/v4l2_subdevice.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-03-15 02:56:20 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-03-19 15:08:14 +0200
commita69414529f463ba1d2f0fa4a9e80538193f9b099 (patch)
tree1f642863e783ea0f18a905e164a40de420ea3351 /src/libcamera/v4l2_subdevice.cpp
parent4ff18e95063bbb70f6e0971774fcd2a1b0ad2b58 (diff)
libcamera: geometry: Construct SizeRange from Size
The SizeRange constructors take minimum and maximum width and height values as separate arguments. We have a Size class to convey size information, use it in the constructors, and update the callers. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/libcamera/v4l2_subdevice.cpp')
-rw-r--r--src/libcamera/v4l2_subdevice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/v4l2_subdevice.cpp b/src/libcamera/v4l2_subdevice.cpp
index f2bcd7f7..8b9da81e 100644
--- a/src/libcamera/v4l2_subdevice.cpp
+++ b/src/libcamera/v4l2_subdevice.cpp
@@ -313,8 +313,8 @@ std::vector<SizeRange> V4L2Subdevice::enumPadSizes(unsigned int pad,
if (ret)
break;
- sizes.emplace_back(sizeEnum.min_width, sizeEnum.min_height,
- sizeEnum.max_width, sizeEnum.max_height);
+ sizes.emplace_back(Size{ sizeEnum.min_width, sizeEnum.min_height },
+ Size{ sizeEnum.max_width, sizeEnum.max_height });
}
if (ret < 0 && ret != -EINVAL && ret != -ENOTTY) {