summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/fastmemcpy.h
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-04-16 00:18:35 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-04-16 00:18:35 +0000
commit1d0821178b1c27e35595f72bd9adda5945c7be8b (patch)
tree217e2a8eb9c63b36c22f90486752b09fc9aa00ea /src/libffmpeg/libavcodec/fastmemcpy.h
parented5ec90442b4dda3918372b43072205fb4ea6167 (diff)
downloadxine-lib-1d0821178b1c27e35595f72bd9adda5945c7be8b.tar.gz
xine-lib-1d0821178b1c27e35595f72bd9adda5945c7be8b.tar.bz2
ffmpeg update, add new files/decoders, use our fastmemcpy
tested ok with usual files (wmv7, mpeg4, divx, svq1...) CVS patchset: 4618 CVS date: 2003/04/16 00:18:35
Diffstat (limited to 'src/libffmpeg/libavcodec/fastmemcpy.h')
-rw-r--r--src/libffmpeg/libavcodec/fastmemcpy.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/fastmemcpy.h b/src/libffmpeg/libavcodec/fastmemcpy.h
new file mode 100644
index 000000000..ed34007ff
--- /dev/null
+++ b/src/libffmpeg/libavcodec/fastmemcpy.h
@@ -0,0 +1,8 @@
+#ifndef __FASTMEMCPY_H__
+#define __FASTMEMCPY_H__
+
+#include "xineutils.h"
+
+#define memcpy(a,b,c) xine_fast_memcpy(a,b,c)
+
+#endif