xref: /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/aiq_core/algo_handlers/RkAiqAmdHandle.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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_MD_HANDLE_INT_H_
17 #define _RK_AIQ_MD_HANDLE_INT_H_
18 
19 #include "RkAiqHandle.h"
20 #include "rk_aiq_api_private.h"
21 #include "rk_aiq_pool.h"
22 #include "xcam_mutex.h"
23 
24 namespace RkCam {
25 #if RKAIQ_HAVE_AMD_V1
26 
27 class RkAiqAmdHandleInt : virtual public RkAiqHandle {
28 public:
RkAiqAmdHandleInt(RkAiqAlgoDesComm * des,RkAiqCore * aiqCore)29     explicit RkAiqAmdHandleInt(RkAiqAlgoDesComm* des, RkAiqCore* aiqCore)
30         : RkAiqHandle(des, aiqCore), mProcResShared(nullptr) {};
~RkAiqAmdHandleInt()31     virtual ~RkAiqAmdHandleInt() {
32         RkAiqHandle::deInit();
33     };
34     virtual XCamReturn updateConfig(bool needSync);
35     virtual XCamReturn prepare();
36     virtual XCamReturn preProcess();
37     virtual XCamReturn processing();
38     virtual XCamReturn postProcess();
39     virtual XCamReturn genIspResult(RkAiqFullParams* params, RkAiqFullParams* cur_params);
40 
41 protected:
42     virtual void init();
deInit()43     virtual void deInit() {
44         RkAiqHandle::deInit();
45     };
46 
47 private:
48     SmartPtr<RkAiqAlgoProcResAmdIntShared> mProcResShared;
49 
50 private:
51     DECLARE_HANDLE_REGISTER_TYPE(RkAiqAmdHandleInt);
52 };
53 #endif
54 }  // namespace RkCam
55 
56 #endif
57