1 /* 2 * Copyright (c) 2019-2022 Rockchip Eletronics Co., Ltd. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 #ifndef _RK_AIQ_CGC_HANDLE_INT_H_ 17 #define _RK_AIQ_CGC_HANDLE_INT_H_ 18 19 #include "RkAiqHandle.h" 20 #include "acgc/rk_aiq_uapi_acgc_int.h" 21 #include "rk_aiq_api_private.h" 22 #include "rk_aiq_pool.h" 23 #include "xcam_mutex.h" 24 25 namespace RkCam { 26 #if RKAIQ_HAVE_CGC_V1 27 class RkAiqAcgcHandleInt : virtual public RkAiqHandle { 28 public: RkAiqAcgcHandleInt(RkAiqAlgoDesComm * des,RkAiqCore * aiqCore)29 explicit RkAiqAcgcHandleInt(RkAiqAlgoDesComm* des, RkAiqCore* aiqCore) 30 : RkAiqHandle(des, aiqCore){}; ~RkAiqAcgcHandleInt()31 virtual ~RkAiqAcgcHandleInt() { RkAiqHandle::deInit(); }; 32 virtual XCamReturn prepare(); 33 virtual XCamReturn preProcess(); 34 virtual XCamReturn processing(); 35 virtual XCamReturn postProcess(); 36 virtual XCamReturn updateConfig(bool needSync); 37 XCamReturn setAttrib(const rk_aiq_uapi_acgc_attrib_t* att); 38 XCamReturn getAttrib(rk_aiq_uapi_acgc_attrib_t* att); 39 virtual XCamReturn genIspResult(RkAiqFullParams* params, RkAiqFullParams* cur_params); 40 41 protected: 42 virtual void init(); deInit()43 virtual void deInit() { RkAiqHandle::deInit(); }; 44 45 private: 46 DECLARE_HANDLE_REGISTER_TYPE(RkAiqAcgcHandleInt); 47 48 #ifndef DISABLE_HANDLE_ATTRIB 49 rk_aiq_uapi_acgc_attrib_t mCurAtt; 50 rk_aiq_uapi_acgc_attrib_t mNewAtt; 51 #endif 52 }; 53 #endif 54 55 } // namespace RkCam 56 57 #endif 58