ipa: rkisp1: Use the new ISP parameters abstraction
Use the new ISP parameters abstraction class RkISP1Params to access the ISP parameters in the IPA algorithms. The class replaces the pointer to the rkisp1_params_cfg structure passed to the algorithms' prepare() function, and is used to access individual parameters blocks. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
This commit is contained in:
@@ -232,16 +232,14 @@ int DefectPixelClusterCorrection::init([[maybe_unused]] IPAContext &context,
|
||||
void DefectPixelClusterCorrection::prepare([[maybe_unused]] IPAContext &context,
|
||||
const uint32_t frame,
|
||||
[[maybe_unused]] IPAFrameContext &frameContext,
|
||||
rkisp1_params_cfg *params)
|
||||
RkISP1Params *params)
|
||||
{
|
||||
if (frame > 0)
|
||||
return;
|
||||
|
||||
params->others.dpcc_config = config_;
|
||||
|
||||
params->module_en_update |= RKISP1_CIF_ISP_MODULE_DPCC;
|
||||
params->module_ens |= RKISP1_CIF_ISP_MODULE_DPCC;
|
||||
params->module_cfg_update |= RKISP1_CIF_ISP_MODULE_DPCC;
|
||||
auto config = params->block<BlockType::Dpcc>();
|
||||
config.setEnabled(true);
|
||||
*config = config_;
|
||||
}
|
||||
|
||||
REGISTER_IPA_ALGORITHM(DefectPixelClusterCorrection, "DefectPixelClusterCorrection")
|
||||
|
||||
Reference in New Issue
Block a user