diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-13 23:47:16 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-13 23:47:16 +0000 |
commit | b2b48c77caefa0641ea75d4d3f8dfc808dbb6d08 (patch) | |
tree | d618ff00bdab9d5e9035ddc0e241053d17ebb540 /libavutil/common.h | |
parent | 43756fa17f9b143fa3d330e8d9e6357840d52da9 (diff) | |
download | ffmpeg-b2b48c77caefa0641ea75d4d3f8dfc808dbb6d08.tar.gz |
remove old msvc cruft
Originally committed as revision 5735 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r-- | libavutil/common.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index d07f5f1277..32cada44ae 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -94,14 +94,8 @@ typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; - -# ifdef __MINGW32__ - typedef signed __int64 int64_t; - typedef unsigned __int64 uint64_t; -# else /* other OS */ - typedef signed long long int64_t; - typedef unsigned long long uint64_t; -# endif /* other OS */ + typedef signed long long int64_t; + typedef unsigned long long uint64_t; #endif /* EMULATE_INTTYPES */ #ifndef PRId64 |