diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-08-15 22:33:03 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-08-15 22:33:03 +0000 |
commit | a74127c071fd46cdd40b9beca6721a9ca6338142 (patch) | |
tree | ce84b21312cf30edc838cd5fbfba62ac21912b9b /libavcodec/mpeg12.c | |
parent | d0a0b2483e7b62e0f72c3b60f0a5f24175d665ee (diff) | |
download | ffmpeg-a74127c071fd46cdd40b9beca6721a9ca6338142.tar.gz |
win32 fixes
Originally committed as revision 110 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index f0aecd9803..758124eea6 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -16,28 +16,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +//#define DEBUG #include "avcodec.h" #include "dsputil.h" #include "mpegvideo.h" #include "mpeg12data.h" -//#define DEBUG - -#ifndef CONFIG_WIN32 - -#ifdef DEBUG -#define dprintf(fmt,args...) printf(fmt, ## args) -#else -#define dprintf(fmt,args...) -#endif - -#else - -inline void dprintf(const char* fmt,...) {} - -#endif - /* Start codes. */ #define SEQ_END_CODE 0x000001b7 #define SEQ_START_CODE 0x000001b3 |