1 #ifndef _RK_AIQ_UAPI_ACP_INT_H_ 2 #define _RK_AIQ_UAPI_ACP_INT_H_ 3 4 #include "base/xcam_common.h" 5 #include "rk_aiq_algo_des.h" 6 #include "acp_uapi_head.h" 7 8 // need_sync means the implementation should consider 9 // the thread synchronization 10 // if called by RkAiqAdebayerHandleInt, 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 rk_aiq_uapi_acp_SetAttrib(RkAiqAlgoContext* ctx, 16 const acp_attrib_t* attr, 17 bool need_sync); 18 19 XCamReturn rk_aiq_uapi_acp_GetAttrib(RkAiqAlgoContext* ctx, 20 acp_attrib_t* attr); 21 22 #endif//_RK_AIQ_UAPI_ACP_INT_H_ 23