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_ASD_INT_H_
| #define _RK_AIQ_UAPI_ASD_INT_H_
|
| #include "base/xcam_common.h"
| #include "rk_aiq_algo_des.h"
|
| typedef struct asd_attrib_s {
| float cur_m2r;
| } asd_attrib_t;
|
| XCamReturn
| rk_aiq_uapi_asd_SetAttrib
| (
| RkAiqAlgoContext* ctx,
| asd_attrib_t attr,
| bool need_sync
| );
|
| XCamReturn
| rk_aiq_uapi_asd_GetAttrib
| (
| RkAiqAlgoContext* ctx,
| asd_attrib_t* attr
| );
|
| #endif//_RK_AIQ_UAPI_ASD_INT_H_
|
|