@@ -33,6 +33,6 @@ interface IPASoftInterface {
interface IPASoftEventInterface {
setSensorControls(libcamera.ControlList sensorControls);
- setIspParams();
+ paramsComputed();
metadataReady(uint32 frame, libcamera.ControlList metadata);
};
@@ -292,7 +292,7 @@ void IPASoftSimple::computeParams(const uint32_t frame)
algo->prepare(context_, frame, frameContext, params_);
params_->combinedMatrix = context_.activeState.combinedMatrix;
- setIspParams.emit();
+ paramsComputed.emit();
}
void IPASoftSimple::processStats(const uint32_t frame,
@@ -164,7 +164,7 @@ SoftwareIsp::SoftwareIsp(PipelineHandler *pipe, const CameraSensor *sensor,
return;
}
- ipa_->setIspParams.connect(this, &SoftwareIsp::saveIspParams);
+ ipa_->paramsComputed.connect(this, &SoftwareIsp::saveIspParams);
ipa_->metadataReady.connect(this,
[this](uint32_t frame, const ControlList &metadata) {
metadataReady.emit(frame, metadata);
For better consistency with other pipelines. Signed-off-by: Milan Zamazal <mzamazal@redhat.com> --- include/libcamera/ipa/soft.mojom | 2 +- src/ipa/simple/soft_simple.cpp | 2 +- src/libcamera/software_isp/software_isp.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)