diff options
author | Luca Abeni <lucabe72@email.it> | 2006-07-20 12:13:57 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-07-20 12:13:57 +0000 |
commit | 94c4def23c3b212dd0f8fde902cecf47e5bee1c2 (patch) | |
tree | ba231cc7583e8f1a7b695517df31aa686034ac6a /libswscale/rgb2rgb.c | |
parent | 918a45917c4cab7f830c05d728f257a7c0ce2f34 (diff) | |
download | ffmpeg-94c4def23c3b212dd0f8fde902cecf47e5bee1c2.tar.gz |
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
Originally committed as revision 19148 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/rgb2rgb.c')
-rw-r--r-- | libswscale/rgb2rgb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libswscale/rgb2rgb.c b/libswscale/rgb2rgb.c index 049e105292..2e4cc2c0dc 100644 --- a/libswscale/rgb2rgb.c +++ b/libswscale/rgb2rgb.c @@ -11,10 +11,12 @@ #include "config.h" #include "rgb2rgb.h" #include "swscale.h" -#include "cpudetect.h" -#include "mangle.h" +#include "swscale_internal.h" +#include "x86_cpu.h" #include "bswap.h" +#ifdef USE_FASTMEMCPY #include "libvo/fastmemcpy.h" +#endif #define FAST_BGR2YV12 // use 7 bit coeffs instead of 15bit |