hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _RK_AIQ_UAPI_ACCM_INT_H_
#define _RK_AIQ_UAPI_ACCM_INT_H_
 
#include "base/xcam_common.h"
#include "rk_aiq_algo_des.h"
#include "accm/rk_aiq_types_accm_algo_int.h"
 
// need_sync means the implementation should consider
// the thread synchronization
// if called by RkAiqAccmHandleInt, the sync has been done
// in framework. And if called by user app directly,
// sync should be done in inner. now we just need implement
// the case of need_sync == false; need_sync is for future usage.
 
XCamReturn
rk_aiq_uapi_accm_SetAttrib(RkAiqAlgoContext *ctx,
                           rk_aiq_ccm_attrib_t attr,
                           bool need_sync);
XCamReturn
rk_aiq_uapi_accm_GetAttrib(const RkAiqAlgoContext *ctx,
                           rk_aiq_ccm_attrib_t *attr);
XCamReturn
rk_aiq_uapi_accm_QueryCcmInfo(const RkAiqAlgoContext *ctx,
                              rk_aiq_ccm_querry_info_t *ccm_querry_info );
 
#endif