summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-14 20:00:55 +0000
committerMåns Rullgård <mans@mansr.com>2006-11-14 20:00:55 +0000
commit576a85f7c909353657acf12ca90f5a8bb2978fe6 (patch)
tree72daac26ab8f22e4eccd4bad223063a241b0ef43 /libavutil
parentb3625676058184f35ccf2531555ef1ed980bcc20 (diff)
remove workaround for missing inttypes.h
Originally committed as revision 7068 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/common.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/libavutil/common.h b/libavutil/common.h
index 4b6ad25840..0dbebfb8d2 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -84,18 +84,7 @@
#endif
#endif
-#ifdef HAVE_INTTYPES
# include <inttypes.h>
-#else
- typedef signed char int8_t;
- typedef signed short int16_t;
- typedef signed int int32_t;
- typedef unsigned char uint8_t;
- typedef unsigned short uint16_t;
- typedef unsigned int uint32_t;
- typedef signed long long int64_t;
- typedef unsigned long long uint64_t;
-#endif /* HAVE_INTTYPES */
#ifndef PRId64
#define PRId64 "lld"
@@ -157,16 +146,6 @@
#define UINT64_MAX uint64_t_C(0xFFFFFFFFFFFFFFFF)
#endif
-#ifndef HAVE_FAST_INT
-typedef signed char int_fast8_t;
-typedef signed int int_fast16_t;
-typedef signed int int_fast32_t;
-typedef unsigned char uint_fast8_t;
-typedef unsigned int uint_fast16_t;
-typedef unsigned int uint_fast32_t;
-typedef uint64_t uint_fast64_t;
-#endif
-
#ifndef INT_BIT
# if INT_MAX != 2147483647
# define INT_BIT 64