summaryrefslogtreecommitdiff
path: root/src/qcam/format_converter.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-03-22 12:53:13 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-03-24 10:33:42 +0200
commitacd02afab0298bc91099fa280f13775e8e5e315b (patch)
tree9108fc21b0e5b3d2d5239a97ab0d1e34b00b81b9 /src/qcam/format_converter.cpp
parentac02d741dceb081d1166b78e13f180a3a375579d (diff)
qcam: Use QSize through the code base
Qt has a QSize class to store sizes. Use it to replace width and height where applicable. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/qcam/format_converter.cpp')
-rw-r--r--src/qcam/format_converter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qcam/format_converter.cpp b/src/qcam/format_converter.cpp
index d8962a28..bf887ad4 100644
--- a/src/qcam/format_converter.cpp
+++ b/src/qcam/format_converter.cpp
@@ -26,7 +26,7 @@
#endif
int FormatConverter::configure(const libcamera::PixelFormat &format,
- unsigned int width, unsigned int height)
+ const QSize &size)
{
switch (format) {
case DRM_FORMAT_NV12:
@@ -139,8 +139,8 @@ int FormatConverter::configure(const libcamera::PixelFormat &format,
};
format_ = format;
- width_ = width;
- height_ = height;
+ width_ = size.width();
+ height_ = size.height();
return 0;
}