diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-28 09:30:41 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-28 09:30:41 +0000 |
commit | 42610c4983c14cf320267ad4fad5db7c95f203b5 (patch) | |
tree | acdb8753ebad4baaf3ac2215173b6601bee3cc99 /libavcodec | |
parent | d5aa01cd302c4cb6562f054257f864ba47ccdce1 (diff) | |
download | ffmpeg-42610c4983c14cf320267ad4fad5db7c95f203b5.tar.gz |
Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.
Originally committed as revision 9145 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/imgconvert.c | 4 | ||||
-rw-r--r-- | libavcodec/imgresample.c | 4 | ||||
-rw-r--r-- | libavcodec/mpegvideo.c | 4 | ||||
-rw-r--r-- | libavcodec/xvmcvideo.c | 4 |
4 files changed, 0 insertions, 16 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 41383c07a1..b72d0ee8cf 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -33,10 +33,6 @@ #include "avcodec.h" #include "dsputil.h" -#ifdef USE_FASTMEMCPY -#include "libvo/fastmemcpy.h" -#endif - #ifdef HAVE_MMX #include "i386/mmx.h" #endif diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index 8d20dd463b..8174d38e01 100644 --- a/libavcodec/imgresample.c +++ b/libavcodec/imgresample.c @@ -28,10 +28,6 @@ #include "swscale.h" #include "dsputil.h" -#ifdef USE_FASTMEMCPY -#include "libvo/fastmemcpy.h" -#endif - #define NB_COMPONENTS 3 #define PHASE_BITS 4 diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index fb4c76a000..2667ad0010 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -35,10 +35,6 @@ #include "faandct.h" #include <limits.h> -#ifdef USE_FASTMEMCPY -#include "libvo/fastmemcpy.h" -#endif - //#undef NDEBUG //#include <assert.h> diff --git a/libavcodec/xvmcvideo.c b/libavcodec/xvmcvideo.c index 4a0677f6e5..ff56ceb3f5 100644 --- a/libavcodec/xvmcvideo.c +++ b/libavcodec/xvmcvideo.c @@ -29,10 +29,6 @@ #undef NDEBUG #include <assert.h> -#ifdef USE_FASTMEMCPY -#include "libvo/fastmemcpy.h" -#endif - #ifdef HAVE_XVMC //X11 includes are in the xvmc_render.h |