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_GAIN_HANDLE_INT_H_ 17 #define _RK_AIQ_GAIN_HANDLE_INT_H_ 18 19 #include "RkAiqHandle.h" 20 #include "again/rk_aiq_uapi_again_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_GAIN_V1 27 28 class RkAiqAgainHandleInt : virtual public RkAiqHandle { 29 public: RkAiqAgainHandleInt(RkAiqAlgoDesComm * des,RkAiqCore * aiqCore)30 explicit RkAiqAgainHandleInt(RkAiqAlgoDesComm* des, RkAiqCore* aiqCore) 31 : RkAiqHandle(des, aiqCore) {} ~RkAiqAgainHandleInt()32 virtual ~RkAiqAgainHandleInt() { 33 RkAiqHandle::deInit(); 34 }; 35 virtual XCamReturn updateConfig(bool needSync); 36 virtual XCamReturn prepare(); 37 virtual XCamReturn preProcess(); 38 virtual XCamReturn processing(); 39 virtual XCamReturn postProcess(); 40 virtual XCamReturn genIspResult(RkAiqFullParams* params, RkAiqFullParams* cur_params); 41 42 protected: 43 virtual void init(); deInit()44 virtual void deInit() { 45 RkAiqHandle::deInit(); 46 }; 47 48 private: 49 DECLARE_HANDLE_REGISTER_TYPE(RkAiqAgainHandleInt); 50 }; 51 #endif 52 } // namespace RkCam 53 54 #endif 55