mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-24 17:15:07 +03:00
pipeline: ipa: raspberrypi: Tidy-ups after IPAInterface changes
This commit addresses a couple of tidy-ups after the IPAInterface rework: - Rename ConfigStaggeredWrite -> ConfigSensorParams - Rename setIsp -> setIspControls There is no functional change in this commit. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
a13d229086
commit
22a33aa48f
3 changed files with 14 additions and 14 deletions
|
@ -16,7 +16,7 @@ enum BufferMask {
|
|||
const uint32 MaxLsGridSize = 0x8000;
|
||||
|
||||
enum ConfigOutputParameters {
|
||||
ConfigStaggeredWrite = 0x01,
|
||||
ConfigSensorParams = 0x01,
|
||||
};
|
||||
|
||||
struct SensorConfig {
|
||||
|
@ -27,8 +27,8 @@ struct SensorConfig {
|
|||
};
|
||||
|
||||
struct ISPConfig {
|
||||
uint32 embeddedbufferId;
|
||||
uint32 bayerbufferId;
|
||||
uint32 embeddedBufferId;
|
||||
uint32 bayerBufferId;
|
||||
};
|
||||
|
||||
struct ConfigInput {
|
||||
|
@ -126,6 +126,6 @@ interface IPARPiEventInterface {
|
|||
statsMetadataComplete(uint32 bufferId, ControlList controls);
|
||||
runIsp(uint32 bufferId);
|
||||
embeddedComplete(uint32 bufferId);
|
||||
setIsp(ControlList controls);
|
||||
setIspControls(ControlList controls);
|
||||
setDelayedControls(ControlList controls);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue