avc_types.h revision 609f1a00c96cf5605f4614e7bb6d0487c98969c5
1#ifndef AVC_TYPES_H_
2
3#define AVC_TYPES_H_
4
5#include <stdint.h>
6
7typedef uint8_t uint8;
8typedef uint16_t uint16;
9typedef int16_t int16;
10typedef uint32_t uint32;
11typedef int32_t int32;
12typedef unsigned int uint;
13
14#endif  // AVC_TYPES_H_
15