Home | History | Annotate | Download | only in include
      1 #ifndef AVC_TYPES_H_
      2 
      3 #define AVC_TYPES_H_
      4 
      5 #include <stdint.h>
      6 
      7 typedef uint8_t uint8;
      8 typedef uint16_t uint16;
      9 typedef int16_t int16;
     10 typedef uint32_t uint32;
     11 typedef int32_t int32;
     12 typedef unsigned int uint;
     13 
     14 #endif  // AVC_TYPES_H_
     15