summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2023-02-05 14:49:17 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2023-02-09 21:40:45 +0200
commitec392360f65639d6fbc9d2c54fe119baa49248cb (patch)
tree70feeb224877d4aeb4951532389c3ed12ffc74a5
parentfb344abda93cdf6f459a71d9829fcf4777a1284a (diff)
libcamera: camera_sensor: Fix typo in comment
Fix a typo introduced in a comment when refactoring transformation handling in the CameraSensor class. Fixes: 1a614866a29c ("libcamera: camera_sensor: Validate Transform") Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
-rw-r--r--src/libcamera/camera_sensor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/camera_sensor.cpp b/src/libcamera/camera_sensor.cpp
index 11117502..274ed419 100644
--- a/src/libcamera/camera_sensor.cpp
+++ b/src/libcamera/camera_sensor.cpp
@@ -1023,8 +1023,8 @@ Transform CameraSensor::validateTransform(Transform *transform) const
/*
* We combine the platform and user transform, but must "adjust away"
- * any combined result that includes a transform, as we can't do those.
- * In this case, flipping only the transpose bit is helpful to
+ * any combined result that includes a transposition, as we can't do
+ * those. In this case, flipping only the transpose bit is helpful to
* applications - they either get the transform they requested, or have
* to do a simple transpose themselves (they don't have to worry about
* the other possible cases).