Browse Source

Use full path for #includes from another directory.

Originally committed as revision 26702 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diego Biurrun 17 years ago
parent
commit
83da2c6f26
4 changed files with 6 additions and 6 deletions
  1. 2 2
      libswscale/rgb2rgb.c
  2. 1 1
      libswscale/swscale-example.c
  3. 2 2
      libswscale/swscale.c
  4. 1 1
      libswscale/swscale_internal.h

+ 2 - 2
libswscale/rgb2rgb.c

@@ -27,11 +27,11 @@
  */
 #include <inttypes.h>
 #include "config.h"
+#include "libavutil/x86_cpu.h"
+#include "libavutil/bswap.h"
 #include "rgb2rgb.h"
 #include "swscale.h"
 #include "swscale_internal.h"
-#include "x86_cpu.h"
-#include "bswap.h"
 
 #define FAST_BGR2YV12 // use 7 bit coeffs instead of 15bit
 

+ 1 - 1
libswscale/swscale-example.c

@@ -25,7 +25,7 @@
 #include <stdarg.h>
 
 #undef HAVE_AV_CONFIG_H
-#include "avutil.h"
+#include "libavutil/avutil.h"
 #include "swscale.h"
 #include "swscale_internal.h"
 #include "rgb2rgb.h"

+ 2 - 2
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

+ 1 - 1
libswscale/swscale_internal.h

@@ -27,7 +27,7 @@
 #include <altivec.h>
 #endif
 
-#include "avutil.h"
+#include "libavutil/avutil.h"
 
 #define MAX_FILTER_SIZE 256