JLChen
2021-11-04 1443556e9ccb1a19ed8e6710c16c8adc4d4f4fb3
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
 
#ifndef AVGLOBAL_H
#define AVGLOBAL_H
 
typedef int                    AV_int32;    
typedef unsigned int        AV_uint32;    
 
#ifndef __OBJC__
typedef int                    AV_BOOL;
#else
typedef BOOL                AV_BOOL;
#endif
        
typedef void*                AV_HANDLE;        
typedef unsigned char        AV_BYTE;    
typedef float                AV_float;
 
#ifdef WIN32
typedef __int64                AV_int64;    
typedef unsigned __int64    AV_uint64;    
#else
typedef long long            AV_int64;
typedef unsigned long long    AV_uint64;
#endif    
    
#endif