diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-06-17 11:23:13 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-06-29 17:21:12 +0300 |
commit | d22c0020ef48a92e88c62e01cecc624b8674b8ed (patch) | |
tree | c0da6a0f11f3cf755b1dac377d8ab6919c60cc54 /src/ipa | |
parent | 011a4668fb5e17026626b7abdfe86bccb2fdb743 (diff) |
ipa: rkisp1: Register algorithms
To prepare for dynamic instantiation of algorithms from the tuning file,
register the algorithms with the Module class.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'src/ipa')
-rw-r--r-- | src/ipa/rkisp1/algorithms/agc.cpp | 2 | ||||
-rw-r--r-- | src/ipa/rkisp1/algorithms/awb.cpp | 2 | ||||
-rw-r--r-- | src/ipa/rkisp1/algorithms/blc.cpp | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/ipa/rkisp1/algorithms/agc.cpp b/src/ipa/rkisp1/algorithms/agc.cpp index b5a184d9..a1bb7d97 100644 --- a/src/ipa/rkisp1/algorithms/agc.cpp +++ b/src/ipa/rkisp1/algorithms/agc.cpp @@ -355,6 +355,8 @@ void Agc::prepare(IPAContext &context, rkisp1_params_cfg *params) params->module_en_update |= RKISP1_CIF_ISP_MODULE_HST; } +REGISTER_IPA_ALGORITHM(Agc, "Agc") + } /* namespace ipa::rkisp1::algorithms */ } /* namespace libcamera */ diff --git a/src/ipa/rkisp1/algorithms/awb.cpp b/src/ipa/rkisp1/algorithms/awb.cpp index 88441382..9f00364d 100644 --- a/src/ipa/rkisp1/algorithms/awb.cpp +++ b/src/ipa/rkisp1/algorithms/awb.cpp @@ -175,6 +175,8 @@ void Awb::process([[maybe_unused]] IPAContext &context, << " and for blue: " << context.frameContext.awb.gains.blue; } +REGISTER_IPA_ALGORITHM(Awb, "Awb") + } /* namespace ipa::rkisp1::algorithms */ } /* namespace libcamera */ diff --git a/src/ipa/rkisp1/algorithms/blc.cpp b/src/ipa/rkisp1/algorithms/blc.cpp index 0c5948ff..3542f61c 100644 --- a/src/ipa/rkisp1/algorithms/blc.cpp +++ b/src/ipa/rkisp1/algorithms/blc.cpp @@ -52,6 +52,8 @@ void BlackLevelCorrection::prepare(IPAContext &context, params->module_cfg_update |= RKISP1_CIF_ISP_MODULE_BLS; } +REGISTER_IPA_ALGORITHM(BlackLevelCorrection, "BlackLevelCorrection") + } /* namespace ipa::rkisp1::algorithms */ } /* namespace libcamera */ |