changeset 26670:e6774798e913

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 12:00:25 +0000
parents 0b65caad7fb0
children 24e6708e030c
files libswscale/rgb2rgb.c libswscale/swscale-example.c libswscale/swscale.c libswscale/swscale_internal.h
diffstat 4 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libswscale/rgb2rgb.c	Fri May 09 00:02:27 2008 +0000
+++ b/libswscale/rgb2rgb.c	Fri May 09 12:00:25 2008 +0000
@@ -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
 
--- a/libswscale/swscale-example.c	Fri May 09 00:02:27 2008 +0000
+++ b/libswscale/swscale-example.c	Fri May 09 12:00:25 2008 +0000
@@ -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"
--- a/libswscale/swscale.c	Fri May 09 00:02:27 2008 +0000
+++ b/libswscale/swscale.c	Fri May 09 12:00:25 2008 +0000
@@ -69,9 +69,9 @@
 #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
--- a/libswscale/swscale_internal.h	Fri May 09 00:02:27 2008 +0000
+++ b/libswscale/swscale_internal.h	Fri May 09 12:00:25 2008 +0000
@@ -27,7 +27,7 @@
 #include <altivec.h>
 #endif
 
-#include "avutil.h"
+#include "libavutil/avutil.h"
 
 #define MAX_FILTER_SIZE 256