Mercurial > mplayer.hg
diff libmpcodecs/vf_fspp.c @ 17012:6ff3379a0862
Unify include path handling, -I.. is in CFLAGS.
| author | diego |
|---|---|
| date | Fri, 18 Nov 2005 14:39:25 +0000 |
| parents | bdf1b4ecb906 |
| children | a2b24e0d7772 |
line wrap: on
line diff
--- a/libmpcodecs/vf_fspp.c Fri Nov 18 14:14:21 2005 +0000 +++ b/libmpcodecs/vf_fspp.c Fri Nov 18 14:39:25 2005 +0000 @@ -36,19 +36,19 @@ #include <inttypes.h> #include <math.h> -#include "../config.h" +#include "config.h" #ifdef USE_LIBAVCODEC -#include "../mp_msg.h" -#include "../cpudetect.h" +#include "mp_msg.h" +#include "cpudetect.h" #ifdef USE_LIBAVCODEC_SO #include <ffmpeg/avcodec.h> #include <ffmpeg/dsputil.h> #else -#include "../libavcodec/avcodec.h" -#include "../libavcodec/dsputil.h" +#include "libavcodec/avcodec.h" +#include "libavcodec/dsputil.h" #endif #ifdef HAVE_MALLOC_H @@ -58,7 +58,7 @@ #include "img_format.h" #include "mp_image.h" #include "vf.h" -#include "../libvo/fastmemcpy.h" +#include "libvo/fastmemcpy.h" //===========================================================================// #define BLOCKSZ 12 @@ -690,7 +690,7 @@ //Specific spp's dct, idct and threshold functions //I'd prefer to have them in the separate file. -#include "../mangle.h" +#include "mangle.h" //#define MANGLE(a) #a //typedef int16_t DCTELEM; //! only int16_t
