summaryrefslogtreecommitdiff
path: root/src/ipa
diff options
context:
space:
mode:
authorSebastian Fricke <sebastian.fricke@posteo.net>2021-03-28 19:03:03 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-03-29 23:49:33 +0300
commit6b98965877a87deffc87388c66f62bb28539aaed (patch)
treea6f660b67ddd6a93177ebe82b95bc01ddf3ca525 /src/ipa
parente99fc4b0d52957cf4ec493a55f2855d2d6ae201b (diff)
ipa: raspberrypi: Fix typo and improve wording
s/Return the validated limits out though metadata./ Return the validated limits via metadata./ Signed-off-by: Sebastian Fricke <sebastian.fricke@posteo.net> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Naushir Patuck <naush@raspberrypi.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/ipa')
-rw-r--r--src/ipa/raspberrypi/raspberrypi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp
index ed2d9a54..dad6395f 100644
--- a/src/ipa/raspberrypi/raspberrypi.cpp
+++ b/src/ipa/raspberrypi/raspberrypi.cpp
@@ -1066,7 +1066,7 @@ void IPARPi::applyFrameDurations(double minFrameDuration, double maxFrameDuratio
minSensorFrameDuration, maxSensorFrameDuration);
maxFrameDuration_ = std::max(maxFrameDuration_, minFrameDuration_);
- /* Return the validated limits out though metadata. */
+ /* Return the validated limits via metadata. */
libcameraMetadata_.set(controls::FrameDurations,
{ static_cast<int64_t>(minFrameDuration_),
static_cast<int64_t>(maxFrameDuration_) });