[MPlayer-cvslog] CVS: main/postproc cs_test.c, 1.5, 1.6 rgb2rgb.c, 1.64, 1.65 swscale-example.c, 1.5, 1.6 swscale.c, 1.159, 1.160 swscale_internal.h, 1.13, 1.14 yuv2rgb.c, 1.27, 1.28 yuv2rgb_altivec.c, 1.4, 1.5 yuv2rgb_mlib.c, 1.8, 1.9
Diego Biurrun CVS
syncmail at mplayerhq.hu
Mon Nov 14 01:30:40 CET 2005
- Previous message: [MPlayer-cvslog] CVS: main/osdep fseeko.c, 1.2, 1.3 getch2-win.c, 1.6, 1.7 getch2.c, 1.19, 1.20 gettimeofday.c, 1.2, 1.3 glob-win.c, 1.2, 1.3 glob.h, 1.1, 1.2 scandir.c, 1.2, 1.3 shmem.c, 1.12, 1.13 strl.c, 1.3, 1.4 strsep.c, 1.1, 1.2 swab.c, 1.1, 1.2 timer-darwin.c, 1.6, 1.7 timer-lx.c, 1.10, 1.11 vsscanf.c, 1.1, 1.2
- Next message: [MPlayer-cvslog] CVS: main/mp3lib dct36_3dnow.c, 1.2, 1.3 dct64_3dnow.c, 1.8, 1.9 dct64_MMX.c, 1.5, 1.6 dct64_k7.c, 1.10, 1.11 decod386.c, 1.19, 1.20 decode_MMX.c, 1.10, 1.11 decode_i586.c, 1.9, 1.10 mpg123.h, 1.10, 1.11 sr1.c, 1.32, 1.33 tabinit_MMX.c, 1.7, 1.8 test.c, 1.4, 1.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
CVS change done by Diego Biurrun CVS
Update of /cvsroot/mplayer/main/postproc
In directory mail:/var2/tmp/cvs-serv14984/postproc
Modified Files:
cs_test.c rgb2rgb.c swscale-example.c swscale.c
swscale_internal.h yuv2rgb.c yuv2rgb_altivec.c yuv2rgb_mlib.c
Log Message:
Unify include paths, -I.. is in CFLAGS.
Index: cs_test.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/cs_test.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cs_test.c 27 Jun 2004 00:07:15 -0000 1.5
+++ cs_test.c 14 Nov 2005 00:30:37 -0000 1.6
@@ -22,7 +22,7 @@
#include "swscale.h"
#include "rgb2rgb.h"
-#include "../cpudetect.h"
+#include "cpudetect.h"
#define SIZE 1000
#define srcByte 0x55
Index: rgb2rgb.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/rgb2rgb.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- rgb2rgb.c 12 Oct 2005 12:11:27 -0000 1.64
+++ rgb2rgb.c 14 Nov 2005 00:30:37 -0000 1.65
@@ -8,13 +8,13 @@
* palette & yuv & runtime cpu stuff by Michael (michaelni at 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
Index: swscale-example.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/swscale-example.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- swscale-example.c 21 Oct 2004 11:55:20 -0000 1.5
+++ swscale-example.c 14 Nov 2005 00:30:37 -0000 1.6
@@ -22,10 +22,10 @@
#include <inttypes.h>
#include <stdarg.h>
-#include "../config.h"
+#include "config.h"
#include "swscale.h"
-#include "../libvo/img_format.h"
+#include "libvo/img_format.h"
static int testFormat[]={
IMGFMT_YVU9,
Index: swscale.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/swscale.c,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- swscale.c 17 Oct 2005 05:05:51 -0000 1.159
+++ swscale.c 14 Nov 2005 00:30:37 -0000 1.160
@@ -54,8 +54,8 @@
#include <math.h>
#include <stdio.h>
#include <unistd.h>
-#include "../config.h"
-#include "../mangle.h"
+#include "config.h"
+#include "mangle.h"
#include <assert.h>
#ifdef HAVE_MALLOC_H
#include <malloc.h>
@@ -70,11 +70,11 @@
#endif
#include "swscale.h"
#include "swscale_internal.h"
-#include "../cpudetect.h"
-#include "../bswap.h"
-#include "../libvo/img_format.h"
+#include "cpudetect.h"
+#include "bswap.h"
+#include "libvo/img_format.h"
#include "rgb2rgb.h"
-#include "../libvo/fastmemcpy.h"
+#include "libvo/fastmemcpy.h"
#undef MOVNTQ
#undef PAVGB
Index: swscale_internal.h
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/swscale_internal.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- swscale_internal.h 24 Apr 2005 07:47:41 -0000 1.13
+++ swscale_internal.h 14 Nov 2005 00:30:37 -0000 1.14
@@ -29,7 +29,7 @@
#define AVV(x...) {x}
#endif
-#include "../mp_msg.h"
+#include "mp_msg.h"
#define MSG_WARN(args...) mp_msg(MSGT_SWS,MSGL_WARN, ##args )
#define MSG_FATAL(args...) mp_msg(MSGT_SWS,MSGL_FATAL, ##args )
Index: yuv2rgb.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/yuv2rgb.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- yuv2rgb.c 21 Oct 2004 11:55:20 -0000 1.27
+++ yuv2rgb.c 14 Nov 2005 00:30:37 -0000 1.28
@@ -40,8 +40,8 @@
#include "rgb2rgb.h"
#include "swscale.h"
#include "swscale_internal.h"
-#include "../mangle.h"
-#include "../libvo/img_format.h" //FIXME try to reduce dependency of such stuff
+#include "mangle.h"
+#include "libvo/img_format.h" //FIXME try to reduce dependency of such stuff
#ifdef HAVE_MLIB
#include "yuv2rgb_mlib.c"
Index: yuv2rgb_altivec.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/yuv2rgb_altivec.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- yuv2rgb_altivec.c 5 Oct 2004 19:11:00 -0000 1.4
+++ yuv2rgb_altivec.c 14 Nov 2005 00:30:37 -0000 1.5
@@ -71,8 +71,8 @@
#include "rgb2rgb.h"
#include "swscale.h"
#include "swscale_internal.h"
-#include "../mangle.h"
-#include "../libvo/img_format.h" //FIXME try to reduce dependency of such stuff
+#include "mangle.h"
+#include "libvo/img_format.h" //FIXME try to reduce dependency of such stuff
#undef PROFILE_THE_BEAST
#undef INC_SCALING
Index: yuv2rgb_mlib.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/yuv2rgb_mlib.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- yuv2rgb_mlib.c 7 Oct 2003 22:41:56 -0000 1.8
+++ yuv2rgb_mlib.c 14 Nov 2005 00:30:37 -0000 1.9
@@ -30,7 +30,7 @@
#include <stdlib.h>
#include <assert.h>
-#include "../libvo/img_format.h" //FIXME try to reduce dependency of such stuff
+#include "libvo/img_format.h" //FIXME try to reduce dependency of such stuff
#include "swscale.h"
static int mlib_YUV2ARGB420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
- Previous message: [MPlayer-cvslog] CVS: main/osdep fseeko.c, 1.2, 1.3 getch2-win.c, 1.6, 1.7 getch2.c, 1.19, 1.20 gettimeofday.c, 1.2, 1.3 glob-win.c, 1.2, 1.3 glob.h, 1.1, 1.2 scandir.c, 1.2, 1.3 shmem.c, 1.12, 1.13 strl.c, 1.3, 1.4 strsep.c, 1.1, 1.2 swab.c, 1.1, 1.2 timer-darwin.c, 1.6, 1.7 timer-lx.c, 1.10, 1.11 vsscanf.c, 1.1, 1.2
- Next message: [MPlayer-cvslog] CVS: main/mp3lib dct36_3dnow.c, 1.2, 1.3 dct64_3dnow.c, 1.8, 1.9 dct64_MMX.c, 1.5, 1.6 dct64_k7.c, 1.10, 1.11 decod386.c, 1.19, 1.20 decode_MMX.c, 1.10, 1.11 decode_i586.c, 1.9, 1.10 mpg123.h, 1.10, 1.11 sr1.c, 1.32, 1.33 tabinit_MMX.c, 1.7, 1.8 test.c, 1.4, 1.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list