ipa: raspberrypi: Add pixel clock rate to the CameraMode structure

The pixel clock rate will be used in subsequent commits to calculate
line length durations.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Tested-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Naushir Patuck
2022-10-06 14:17:40 +01:00
committed by Laurent Pinchart
parent aa2fe6a86f
commit 5661c934ec
2 changed files with 3 additions and 0 deletions
@@ -46,4 +46,6 @@ struct CameraMode {
uint32_t maxFrameLength;
/* sensitivity of this mode */
double sensitivity;
/* pixel clock rate */
uint64_t pixelRate;
};