avglobal.h 476 B

12345678910111213141516171819202122232425262728
  1. #ifndef AVGLOBAL_H
  2. #define AVGLOBAL_H
  3. typedef int AV_int32;
  4. typedef unsigned int AV_uint32;
  5. #ifndef __OBJC__
  6. typedef int AV_BOOL;
  7. #else
  8. typedef BOOL AV_BOOL;
  9. #endif
  10. typedef void* AV_HANDLE;
  11. typedef unsigned char AV_BYTE;
  12. typedef float AV_float;
  13. #ifdef WIN32
  14. typedef __int64 AV_int64;
  15. typedef unsigned __int64 AV_uint64;
  16. #else
  17. typedef long long AV_int64;
  18. typedef unsigned long long AV_uint64;
  19. #endif
  20. #endif