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:
Naushir Patuck 2021-02-18 12:48:22 +00:00 committed by Kieran Bingham
parent a13d229086
commit 22a33aa48f
3 changed files with 14 additions and 14 deletions

View file

@ -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);
};