libcamera: software_isp: Call Algorithm::configure
This patch adds Algorithm::configure call for the defined algorithms. This is preparation only since there are currently no Algorithm based algorithms defined. A part of this change is passing IPAConfigInfo instead of ControlInfoMap to configure() calls as this is what Algorithm::configure expects. Signed-off-by: Milan Zamazal <mzamazal@redhat.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
committed by
Kieran Bingham
parent
97f9961e1b
commit
ecbc05c4c5
@@ -222,16 +222,17 @@ SoftwareIsp::strideAndFrameSize(const PixelFormat &outputFormat, const Size &siz
|
||||
* \brief Configure the SoftwareIsp object according to the passed in parameters
|
||||
* \param[in] inputCfg The input configuration
|
||||
* \param[in] outputCfgs The output configurations
|
||||
* \param[in] sensorControls ControlInfoMap of the controls supported by the sensor
|
||||
* \param[in] configInfo The IPA configuration data, received from the pipeline
|
||||
* handler
|
||||
* \return 0 on success, a negative errno on failure
|
||||
*/
|
||||
int SoftwareIsp::configure(const StreamConfiguration &inputCfg,
|
||||
const std::vector<std::reference_wrapper<StreamConfiguration>> &outputCfgs,
|
||||
const ControlInfoMap &sensorControls)
|
||||
const ipa::soft::IPAConfigInfo &configInfo)
|
||||
{
|
||||
ASSERT(ipa_ && debayer_);
|
||||
|
||||
int ret = ipa_->configure(sensorControls);
|
||||
int ret = ipa_->configure(configInfo);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user