mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-14 16:09:51 +03:00
libcamera: ipa: raspberrypi: Allow SwitchMode method to return camera settings
This commit adds a Metadata parameter to the SwitchMode method enabling it to return camera and other settings to the caller (usually the configure method, just after the camera mode has been selected). In future this will allow the Raspberry Pi IPAs to take those settings (such as exposure and analogue gain) and program them directly into the camera or ISP before the camera is even started. Signed-off-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
1023107b64
commit
ff291b3c15
11 changed files with 20 additions and 12 deletions
|
@ -173,8 +173,10 @@ void Alsc::Initialise()
|
|||
lambda_r_[i] = lambda_b_[i] = 1.0;
|
||||
}
|
||||
|
||||
void Alsc::SwitchMode(CameraMode const &camera_mode)
|
||||
void Alsc::SwitchMode(CameraMode const &camera_mode, Metadata *metadata)
|
||||
{
|
||||
(void)metadata;
|
||||
|
||||
// There's a bit of a question what we should do if the "crop" of the
|
||||
// camera mode has changed. Any calculation currently in flight would
|
||||
// not be useful to the new mode, so arguably we should abort it, and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue