diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-07-02 16:14:24 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-08-27 12:29:04 +0300 |
commit | 974dccd45b41fc70e605826df31e4fb4f629f55d (patch) | |
tree | e811155277c46539f6ca8c23dfd32c2dce3ed947 /src/ipa/rkisp1/params.h | |
parent | b43a06d1244784d0df96b0a8b3afe67f92eafc21 (diff) |
ipa: rkisp1: params: Add companding blocks
Extend the RkISP1 parameters helper with support for the new companding
blocks.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'src/ipa/rkisp1/params.h')
-rw-r--r-- | src/ipa/rkisp1/params.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ipa/rkisp1/params.h b/src/ipa/rkisp1/params.h index 28a781bc..40450e34 100644 --- a/src/ipa/rkisp1/params.h +++ b/src/ipa/rkisp1/params.h @@ -37,6 +37,9 @@ enum class BlockType { Hst, Aec, Afc, + CompandBls, + CompandExpand, + CompandCompress, }; namespace details { @@ -68,6 +71,9 @@ RKISP1_DEFINE_BLOCK_TYPE(Awb, awb_meas) RKISP1_DEFINE_BLOCK_TYPE(Hst, hst) RKISP1_DEFINE_BLOCK_TYPE(Aec, aec) RKISP1_DEFINE_BLOCK_TYPE(Afc, afc) +RKISP1_DEFINE_BLOCK_TYPE(CompandBls, compand_bls) +RKISP1_DEFINE_BLOCK_TYPE(CompandExpand, compand_curve) +RKISP1_DEFINE_BLOCK_TYPE(CompandCompress, compand_curve) } /* namespace details */ |