summaryrefslogtreecommitdiff
path: root/libavutil/internal.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-08-14 20:40:36 +0000
committerDiego Biurrun <diego@biurrun.de>2008-08-14 20:40:36 +0000
commit2b409ca9d68cd9af474e6354660646353210e95a (patch)
tree1d13ddc21132ed8267c9285e393e0a6083051ffe /libavutil/internal.h
parent1e8bd10c579615dde74fe02c797cc4beeeb29ad1 (diff)
Remove hackish support for fastmemcpy from MPlayer.
Originally committed as revision 14764 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 71a353ecda..798c55b87a 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -102,11 +102,6 @@
# define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
#endif
-#ifdef CONFIG_FASTMEMCPY
-# include "libvo/fastmemcpy.h"
-# define memcpy(a,b,c) fast_memcpy(a,b,c)
-#endif
-
// Use rip-relative addressing if compiling PIC code on x86-64.
#if defined(ARCH_X86_64) && defined(PIC)
# define LOCAL_MANGLE(a) #a "(%%rip)"