1 /* 2 *rk_aiq_types_acsm_algo_prvt.h 3 * 4 * Copyright (c) 2022 Rockchip Corporation 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 * 18 */ 19 #ifndef __RKAIQ_TYPES_ALGO_ACSM_PRVT_H__ 20 #define __RKAIQ_TYPES_ALGO_ACSM_PRVT_H__ 21 22 #include "base/xcam_common.h" 23 #include "RkAiqCalibDbTypes.h" 24 #include "RkAiqCalibDbTypesV2.h" 25 #include "RkAiqCalibDbV2Helper.h" 26 #include "xcam_log.h" 27 #include "rk_aiq_types_acsm_algo.h" 28 29 typedef struct AcsmContext_s { 30 CamCalibDbV2Context_t *calibv2; 31 rk_aiq_acsm_params_t params; 32 bool isReCal_; 33 } AcsmContext_t; 34 35 typedef struct _RkAiqAlgoContext { 36 AcsmContext_t acsmCtx; 37 } RkAiqAlgoContext; 38 39 #endif//__RKAIQ_TYPES_ALGO_ACSM_PRVT_H__ 40