diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-11-14 00:30:37 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-11-14 00:30:37 +0000 |
commit | b2d374c9587e48b9861e346bce4b12d96308c78d (patch) | |
tree | af16b74bac5625e56b70b310038c7d8e515ecfeb /postproc/rgb2rgb.c | |
parent | 52ceae062433244857d03d1f5c6d94bdd72bfc4e (diff) | |
download | ffmpeg-b2d374c9587e48b9861e346bce4b12d96308c78d.tar.gz |
Unify include paths, -I.. is in CFLAGS.
Originally committed as revision 16986 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.c')
-rw-r--r-- | postproc/rgb2rgb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/postproc/rgb2rgb.c b/postproc/rgb2rgb.c index c9af67e74c..94289a43bc 100644 --- a/postproc/rgb2rgb.c +++ b/postproc/rgb2rgb.c @@ -8,13 +8,13 @@ * palette & yuv & runtime cpu stuff by Michael (michaelni@gmx.at) (under GPL) */ #include <inttypes.h> -#include "../config.h" +#include "config.h" #include "rgb2rgb.h" #include "swscale.h" -#include "../cpudetect.h" -#include "../mangle.h" -#include "../bswap.h" -#include "../libvo/fastmemcpy.h" +#include "cpudetect.h" +#include "mangle.h" +#include "bswap.h" +#include "libvo/fastmemcpy.h" #define FAST_BGR2YV12 // use 7 bit coeffs instead of 15bit |