From 229667606e4d30e03d530341baf1ee528e7f2e95 Mon Sep 17 00:00:00 2001 From: Naushir Patuck Date: Mon, 9 Dec 2024 10:47:23 +0000 Subject: ipa: rpi: Fix wrong frame integration difference value for OV9281 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The frameIntegrationDiff value should be 25, otherwise we see invalid frames when integration times are set to large values. Signed-off-by: Naushir Patuck Reviewed-by: Laurent Pinchart Tested-by: Dave Stevenson Reviewed-by: Kieran Bingham Signed-off-by: Barnabás Pőcze --- src/ipa/rpi/cam_helper/cam_helper_ov9281.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ipa/rpi') diff --git a/src/ipa/rpi/cam_helper/cam_helper_ov9281.cpp b/src/ipa/rpi/cam_helper/cam_helper_ov9281.cpp index a65c8ac0..96f7fff4 100644 --- a/src/ipa/rpi/cam_helper/cam_helper_ov9281.cpp +++ b/src/ipa/rpi/cam_helper/cam_helper_ov9281.cpp @@ -25,7 +25,7 @@ private: * Smallest difference between the frame length and integration time, * in units of lines. */ - static constexpr int frameIntegrationDiff = 4; + static constexpr int frameIntegrationDiff = 25; }; /* -- cgit v1.2.1