hc
2024-05-10 23fa18eaa71266feff7ba8d83022d9e1cc83c65a
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
27
28
29
30
31
32
33
34
#ifndef _RK_AIQ_UAPI_AIE_INT_H_
#define _RK_AIQ_UAPI_AIE_INT_H_
 
#include "base/xcam_common.h"
#include "rk_aiq_algo_des.h"
#include "rk_aiq_types_aie_algo.h"
 
typedef struct aie_attrib_s {
    rk_aiq_ie_effect_t mode;
} aie_attrib_t;
 
// need_sync means the implementation should consider
// the thread synchronization
// if called by RkAiqAdebayerHandleInt, 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_aie_SetAttrib
(
    RkAiqAlgoContext* ctx,
    aie_attrib_t attr,
    bool need_sync
);
 
XCamReturn
rk_aiq_uapi_aie_GetAttrib
(
    RkAiqAlgoContext*  ctx,
    aie_attrib_t* attr
);
 
#endif//_RK_AIQ_UAPI_aie_INT_H_