diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-14 04:02:58 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-14 04:02:58 +0000 |
commit | 81dc56e76e32fc680d1b9637f878434c06bb814f (patch) | |
tree | eb945082fd115e5a198213bfd726e24f057cf7ad /libavutil/common.h | |
parent | 2e1913b193b67f974de82922ef4852bc742a5100 (diff) | |
download | ffmpeg-81dc56e76e32fc680d1b9637f878434c06bb814f.tar.gz |
clean up inttypes.h and int_fastxx_t types detection
Originally committed as revision 7050 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r-- | libavutil/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index 6b61d82547..4b6ad25840 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -84,7 +84,7 @@ #endif #endif -#ifndef EMULATE_INTTYPES +#ifdef HAVE_INTTYPES # include <inttypes.h> #else typedef signed char int8_t; @@ -95,7 +95,7 @@ typedef unsigned int uint32_t; typedef signed long long int64_t; typedef unsigned long long uint64_t; -#endif /* EMULATE_INTTYPES */ +#endif /* HAVE_INTTYPES */ #ifndef PRId64 #define PRId64 "lld" @@ -157,7 +157,7 @@ #define UINT64_MAX uint64_t_C(0xFFFFFFFFFFFFFFFF) #endif -#ifdef EMULATE_FAST_INT +#ifndef HAVE_FAST_INT typedef signed char int_fast8_t; typedef signed int int_fast16_t; typedef signed int int_fast32_t; |