This repository was archived by the owner on Jul 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
media/libyuv/include/libyuv Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313
1414#include <stddef.h> // for NULL, size_t
1515
16- #if defined(__ANDROID__ ) || (defined(_MSC_VER ) && (_MSC_VER < 1600 ))
17- #include <sys/types.h> // for uintptr_t on x86
18- #else
16+ #if !(defined(_MSC_VER ) && (_MSC_VER < 1600 ))
1917#include <stdint.h> // for uintptr_t
2018#endif
2119
20+ typedef uint64_t uint64 ;
21+ typedef int64_t int64 ;
22+ #if defined(_MSC_VER )
23+ // nsprpub/pr/include/obsolete/protypes.h defines these weirdly
24+ typedef long int32 ;
25+ typedef unsigned long uint32 ;
26+ #else
27+ typedef uint32_t uint32 ;
28+ typedef int32_t int32 ;
29+ #endif
30+ typedef uint16_t uint16 ;
31+ typedef int16_t int16 ;
32+ typedef uint8_t uint8 ;
33+ typedef int8_t int8 ;
34+ #define INT_TYPES_DEFINED 1
35+
2236#ifndef GG_LONGLONG
2337#ifndef INT_TYPES_DEFINED
2438#define INT_TYPES_DEFINED
You can’t perform that action at this time.
0 commit comments