1 #ifndef _RK_AIQ_UAPI_ASD_INT_H_ 2 #define _RK_AIQ_UAPI_ASD_INT_H_ 3 4 #include "base/xcam_common.h" 5 #include "rk_aiq_algo_des.h" 6 7 typedef struct asd_attrib_s { 8 float cur_m2r; 9 } asd_attrib_t; 10 11 XCamReturn 12 rk_aiq_uapi_asd_SetAttrib 13 ( 14 RkAiqAlgoContext* ctx, 15 asd_attrib_t attr, 16 bool need_sync 17 ); 18 19 XCamReturn 20 rk_aiq_uapi_asd_GetAttrib 21 ( 22 RkAiqAlgoContext* ctx, 23 asd_attrib_t* attr 24 ); 25 26 #endif//_RK_AIQ_UAPI_ASD_INT_H_