comparison common.h @ 1509:750b460ceb66 libavcodec

recommit of #define DEBUG fix by (Glenn Maynard <g_sf at zewt dot org>)
author michael
date Sat, 11 Oct 2003 08:19:39 +0000
parents 958d9c0cedba
children 79dddc5cd990
comparison
equal deleted inserted replaced
1508:5a43bc31c2eb 1509:750b460ceb66
97 97
98 # ifndef __MINGW32__ 98 # ifndef __MINGW32__
99 # define int64_t_C(c) (c ## i64) 99 # define int64_t_C(c) (c ## i64)
100 # define uint64_t_C(c) (c ## i64) 100 # define uint64_t_C(c) (c ## i64)
101 101
102 # define inline __inline 102 # ifdef HAVE_AV_CONFIG_H
103 # define inline __inline
104 # endif
103 105
104 # else 106 # else
105 # define int64_t_C(c) (c ## LL) 107 # define int64_t_C(c) (c ## LL)
106 # define uint64_t_C(c) (c ## ULL) 108 # define uint64_t_C(c) (c ## ULL)
107 # endif /* __MINGW32__ */ 109 # endif /* __MINGW32__ */
108 110
109 # ifdef _DEBUG 111 # ifdef HAVE_AV_CONFIG_H
110 # define DEBUG 112 # ifdef _DEBUG
113 # define DEBUG
114 # endif
115
116 # define snprintf _snprintf
117 # define vsnprintf _vsnprintf
111 # endif 118 # endif
112
113 # define snprintf _snprintf
114 # define vsnprintf _vsnprintf
115 119
116 /* CONFIG_WIN32 end */ 120 /* CONFIG_WIN32 end */
117 #elif defined (CONFIG_OS2) 121 #elif defined (CONFIG_OS2)
118 /* OS/2 EMX */ 122 /* OS/2 EMX */
119 123