comparison mpeg12.c @ 17:b69fe46fd708 libavcodec

Adding fastmemcpy stuff to speedup mplayer project
author nickols_k
date Thu, 02 Aug 2001 08:29:38 +0000
parents 4d50c7d89e0f
children 1d2077091e88
comparison
equal deleted inserted replaced
16:89bc3bf1a031 17:b69fe46fd708
23 #include "dsputil.h" 23 #include "dsputil.h"
24 #include "mpegvideo.h" 24 #include "mpegvideo.h"
25 25
26 #include "mpeg12data.h" 26 #include "mpeg12data.h"
27 27
28 /* Stuff below is useful only for mplayer project */
29 #ifdef HAVE_CONFIG_H
30 #include "../config.h"
31 #endif
32
33 #ifdef USE_FASTMEMCPY
34 #include "fastmemcpy.h"
35 #endif
28 //#define DEBUG 36 //#define DEBUG
29 37
30 #ifdef DEBUG 38 #ifdef DEBUG
31 #define dprintf(fmt,args...) printf(fmt, ## args) 39 #define dprintf(fmt,args...) printf(fmt, ## args)
32 #else 40 #else