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:
parent
9cacf4e420
commit
9861678f23
24 changed files with 163 additions and 193 deletions
|
@ -113,7 +113,7 @@ int BlackLevelCorrection::init(IPAContext &context, const YamlObject &tuningData
|
|||
void BlackLevelCorrection::prepare([[maybe_unused]] IPAContext &context,
|
||||
const uint32_t frame,
|
||||
[[maybe_unused]] IPAFrameContext &frameContext,
|
||||
rkisp1_params_cfg *params)
|
||||
RkISP1Params *params)
|
||||
{
|
||||
if (context.configuration.raw)
|
||||
return;
|
||||
|
@ -124,16 +124,15 @@ void BlackLevelCorrection::prepare([[maybe_unused]] IPAContext &context,
|
|||
if (!tuningParameters_)
|
||||
return;
|
||||
|
||||
params->others.bls_config.enable_auto = 0;
|
||||
/* The rkisp1 uses 12bit based black levels. Scale down accordingly. */
|
||||
params->others.bls_config.fixed_val.r = blackLevelRed_ >> 4;
|
||||
params->others.bls_config.fixed_val.gr = blackLevelGreenR_ >> 4;
|
||||
params->others.bls_config.fixed_val.gb = blackLevelGreenB_ >> 4;
|
||||
params->others.bls_config.fixed_val.b = blackLevelBlue_ >> 4;
|
||||
auto config = params->block<BlockType::Bls>();
|
||||
config.setEnabled(true);
|
||||
|
||||
params->module_en_update |= RKISP1_CIF_ISP_MODULE_BLS;
|
||||
params->module_ens |= RKISP1_CIF_ISP_MODULE_BLS;
|
||||
params->module_cfg_update |= RKISP1_CIF_ISP_MODULE_BLS;
|
||||
config->enable_auto = 0;
|
||||
/* The rkisp1 uses 12bit based black levels. Scale down accordingly. */
|
||||
config->fixed_val.r = blackLevelRed_ >> 4;
|
||||
config->fixed_val.gr = blackLevelGreenR_ >> 4;
|
||||
config->fixed_val.gb = blackLevelGreenB_ >> 4;
|
||||
config->fixed_val.b = blackLevelBlue_ >> 4;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue