libcamera: mali-c55: Add stride and size to rawConfig

Complete the RAW StreamConfiguration by populating the frame stride and
the frame size.

Set the minimum required alignment to 4 bytes as the Mali C55 ISP output
expands RAW output to 16 bits and a RAW Bayer macro-pixel requires
two samples to be complete.

Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
This commit is contained in:
Daniel Scally 2024-11-15 10:13:26 +00:00
parent 313bebc492
commit 9b68a14bfd

View file

@ -366,6 +366,10 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()
maxSize = rawSize;
const PixelFormatInfo &info = PixelFormatInfo::info(rawConfig->pixelFormat);
rawConfig->stride = info.stride(rawConfig->size.width, 0, 4);
rawConfig->frameSize = info.frameSize(rawConfig->size, 4);
rawConfig->setStream(const_cast<Stream *>(&data_->frStream_));
frPipeAvailable = false;
}