1 #ifndef _RK_AIQ_UAPI_CAMGROUP_ABAYERTNR_INT_V2_H
2 #define _RK_AIQ_UAPI_CAMGROUP_ABAYERTNR_INT_V2_H
3 
4 #include "base/xcam_common.h"
5 #include "rk_aiq_algo_des.h"
6 #include "abayertnr2/rk_aiq_types_abayertnr_algo_prvt_v2.h"
7 
8 // need_sync means the implementation should consider
9 // the thread synchronization
10 // if called by RkAiqAlscHandleInt, the sync has been done
11 // in framework. And if called by user app directly,
12 // sync should be done in inner. now we just need implement
13 // the case of need_sync == false; need_sync is for future usage.
14 
15 XCamReturn
16 rk_aiq_uapi_camgroup_abayertnrV2_SetAttrib(RkAiqAlgoContext *ctx,
17         rk_aiq_bayertnr_attrib_v2_t *attr,
18         bool need_sync);
19 
20 XCamReturn
21 rk_aiq_uapi_camgroup_abayertnrV2_GetAttrib(const RkAiqAlgoContext *ctx,
22         rk_aiq_bayertnr_attrib_v2_t *attr);
23 
24 XCamReturn
25 rk_aiq_uapi_camgroup_abayertnrV2_SetStrength(const RkAiqAlgoContext *ctx,
26         rk_aiq_bayertnr_strength_v2_t *pStrength);
27 
28 XCamReturn
29 rk_aiq_uapi_camgroup_abayertnrV2_GetStrength(const RkAiqAlgoContext *ctx,
30         rk_aiq_bayertnr_strength_v2_t *pStrength);
31 
32 XCamReturn
33 rk_aiq_uapi_camgroup_abayertnrV2_GetInfo(const RkAiqAlgoContext *ctx,
34         rk_aiq_bayertnr_info_v2_t *pInfo);
35 
36 #endif