ipa: rpi: Fix wrong frame integration difference value for OV9281

The frameIntegrationDiff value should be 25, otherwise we see invalid
frames when integration times are set to large values.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Tested-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Barnabás Pőcze <barnabas.pocze@ideasonboard.com>
This commit is contained in:
Naushir Patuck 2024-12-09 10:47:23 +00:00 committed by Barnabás Pőcze
parent 65dd707f74
commit 229667606e

View file

@ -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;
};
/*