diff options
author | Nick Kurshev <nickols_k@mail.ru> | 2001-08-02 08:29:38 +0000 |
---|---|---|
committer | Nick Kurshev <nickols_k@mail.ru> | 2001-08-02 08:29:38 +0000 |
commit | 54329dd5a5f8435c5a2747201af6c11b506ca50a (patch) | |
tree | 49b6c8ca2d25d8c6c12fa51065fe8bfcaed8d15f /libavcodec/mpeg12.c | |
parent | 9aa435b5ba250488f44f4a9310a2c10f4f1ef101 (diff) | |
download | ffmpeg-54329dd5a5f8435c5a2747201af6c11b506ca50a.tar.gz |
Adding fastmemcpy stuff to speedup mplayer project
Originally committed as revision 27 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 326f043863..d497d14c6c 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -25,6 +25,14 @@ #include "mpeg12data.h" +/* Stuff below is useful only for mplayer project */ +#ifdef HAVE_CONFIG_H +#include "../config.h" +#endif + +#ifdef USE_FASTMEMCPY +#include "fastmemcpy.h" +#endif //#define DEBUG #ifdef DEBUG |