Skip to content

Commit 2e0cbf3

Browse files
committed
libcamera: sensor: Correct hblank and vblank delays for imx708
The correct values are 2, not 3. Signed-off-by: David Plowman <david.plowman@raspberrypi.com>
1 parent 9bbe0d8 commit 2e0cbf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcamera/sensor/camera_sensor_properties.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ const CameraSensorProperties *CameraSensorProperties::get(const std::string &sen
331331
.sensorDelays = {
332332
.exposureDelay = 2,
333333
.gainDelay = 2,
334-
.vblankDelay = 3,
335-
.hblankDelay = 3
334+
.vblankDelay = 2,
335+
.hblankDelay = 2
336336
},
337337
} },
338338
{ "ov2685", {

0 commit comments

Comments
 (0)