diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-07-11 14:15:56 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-07-11 14:15:56 +0000 |
commit | 4bbefe6b5e7d5853a0b87320f253bfe09c74e1ea (patch) | |
tree | c2b85de1a01042e996b9b3d1f082eb8b84be4891 /libavutil | |
parent | 8a85f46d2bfcac447d7a3c52f7722ae37bd56f14 (diff) | |
download | ffmpeg-4bbefe6b5e7d5853a0b87320f253bfe09c74e1ea.tar.gz |
Remove old MSVC remnants.
Originally committed as revision 5709 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/common.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index bdc3cc35b4..403280d94f 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -6,14 +6,6 @@ #ifndef COMMON_H #define COMMON_H -#if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) -# define CONFIG_WIN32 -#endif - -#if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(EMULATE_INTTYPES) -# define EMULATE_INTTYPES -#endif - #ifndef M_PI #define M_PI 3.14159265358979323846 #endif @@ -292,19 +284,12 @@ typedef uint64_t uint_fast64_t; # include <assert.h> /* dprintf macros */ -# if defined(CONFIG_WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) - -inline void dprintf(const char* fmt,...) {} - -# else - # ifdef DEBUG # define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__) # else # define dprintf(fmt,...) # endif -# endif /* !CONFIG_WIN32 */ # ifdef CONFIG_WINCE # define abort() # endif |