diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-09 12:00:25 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-09 12:00:25 +0000 |
commit | 83da2c6f268acc04c61b76629055764dc462c4a3 (patch) | |
tree | 7e4269af700158a2ef2ebcdaa81196d27e149a48 /libswscale/swscale.c | |
parent | 2343a0409284b8076609562ec64cbaf318910436 (diff) | |
download | ffmpeg-83da2c6f268acc04c61b76629055764dc462c4a3.tar.gz |
Use full path for #includes from another directory.
Originally committed as revision 26702 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index a74963f32c..a30ebe9477 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -69,9 +69,9 @@ untested special converters #endif #include "swscale.h" #include "swscale_internal.h" -#include "x86_cpu.h" -#include "bswap.h" #include "rgb2rgb.h" +#include "libavutil/x86_cpu.h" +#include "libavutil/bswap.h" #include "libavcodec/opt.h" #undef MOVNTQ |