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/imgconvert.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/imgconvert.c')
-rw-r--r-- | libavcodec/imgconvert.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 01289d4d83..be2470b7bd 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -21,6 +21,14 @@ #include <string.h> #include "avcodec.h" +/* Stuff below is useful only for mplayer project */ +#ifdef HAVE_CONFIG_H +#include "../config.h" +#endif + +#ifdef USE_FASTMEMCPY +#include "fastmemcpy.h" +#endif /* XXX: totally non optimized */ static void yuv422_to_yuv420p(UINT8 *lum, UINT8 *cb, UINT8 *cr, |