hc
2023-12-06 d38611ca164021d018c1b23eee65bbebc09c63e0
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __RGA_TYPE_H__
#define __RGA_TYPE_H__
 
 
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif /* __cplusplus */
 
typedef  unsigned int     UWORD32;
typedef  unsigned int     uint32;
typedef  unsigned int     RK_U32;
 
typedef  unsigned short   UWORD16;
typedef  unsigned short   RK_U16;
 
typedef  unsigned char    UBYTE;
typedef  unsigned char    RK_U8;
 
typedef  int              WORD32;
typedef  int              RK_S32;
 
typedef  short            WORD16;
typedef  short            RK_S16;
 
typedef  char             BYTE;
typedef  char             RK_S8;
 
 
#ifndef NULL
#define NULL              0L
#endif
 
#ifndef TRUE
#define TRUE              1L
#endif
 
 
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif /* __cplusplus */
 
 
#endif /* __RGA_TYPR_H__ */