[Mplayer-cvslog] CVS: main/libvo Makefile,1.21,1.22 vo_aa.c,1.14,1.15 vo_dga.c,1.32,1.33 vo_dxr3.c,1.1,1.2 vo_fbdev.c,1.49,1.50 vo_fsdga.c,1.4,1.5 vo_ggi.c,1.10,1.11 vo_gl.c,1.14,1.15 vo_gl2.c,1.7,1.8 vo_png.c,1.5,1.6 vo_svga.c,1.37,1.38 vo_tdfxfb.c,1.2,1.3 vo_vesa.c,1.39,1.40 vo_x11.c,1.38,1.39

Nick Kurshev nick at mplayer.dev.hu
Tue Nov 6 12:21:11 CET 2001


Update of /cvsroot/mplayer/main/libvo
In directory mplayer:/var/tmp.root/cvs-serv31917

Modified Files:
	Makefile vo_aa.c vo_dga.c vo_dxr3.c vo_fbdev.c vo_fsdga.c 
	vo_ggi.c vo_gl.c vo_gl2.c vo_png.c vo_svga.c vo_tdfxfb.c 
	vo_vesa.c vo_x11.c 
Log Message:
Move yuv2rgb to postprocess

Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/Makefile,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- Makefile	5 Nov 2001 21:49:20 -0000	1.21
+++ Makefile	6 Nov 2001 11:21:08 -0000	1.22
@@ -3,17 +3,16 @@
 
 LIBNAME = libvo.a
 
-SRCS=aspect.c aclib.c osd.c font_load.c yuv2rgb.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c x11_common.c $(OPTIONAL_SRCS) img_format.c
+SRCS=aspect.c aclib.c osd.c font_load.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c x11_common.c $(OPTIONAL_SRCS) img_format.c
 OBJS=$(SRCS:.c=.o)
 
 ifeq ($(TARGET_ARCH_X86),yes)
-SRCS += yuv2rgb_mmx.c
 ifeq ($(TARGET_OS),Linux)
 SRCS += vo_vesa.c
 endif
 endif
 
-CFLAGS  = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(MLIB_INC) $(DVB_INC) -DMPG12PLAY #-Wall
+CFLAGS  = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DVB_INC) -DMPG12PLAY #-Wall
 # -I/usr/X11R6/include/
 
 .SUFFIXES: .c .o

Index: vo_aa.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_aa.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- vo_aa.c	27 Oct 2001 14:30:43 -0000	1.14
+++ vo_aa.c	6 Nov 2001 11:21:08 -0000	1.15
@@ -25,7 +25,7 @@
 #include "config.h"
 #include "video_out.h"
 #include "video_out_internal.h"
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 #include "sub.h"
 
 #include "linux/keycodes.h"

Index: vo_dga.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_dga.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- vo_dga.c	2 Nov 2001 15:27:38 -0000	1.32
+++ vo_dga.c	6 Nov 2001 11:21:08 -0000	1.33
@@ -23,8 +23,8 @@
  * - works only on x86 architectures
  *
  * $Log$
- * Revision 1.32  2001/11/02 15:27:38  nick
- * *** empty log message ***
+ * Revision 1.33  2001/11/06 11:21:08  nick
+ * Move yuv2rgb to postprocess
  *
  *
  * Revision 1.31  2001/10/30 17:04:31  nick
@@ -145,7 +145,7 @@
 #include "config.h"
 #include "video_out.h"
 #include "video_out_internal.h"
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 
 LIBVO_EXTERN( dga )
 

Index: vo_dxr3.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_dxr3.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vo_dxr3.c	3 Nov 2001 02:38:10 -0000	1.1
+++ vo_dxr3.c	6 Nov 2001 11:21:08 -0000	1.2
@@ -24,7 +24,7 @@
 #include "video_out.h"
 #include "video_out_internal.h"
 
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 #ifdef HAVE_MMX
 #include "mmx.h"
 #endif

Index: vo_fbdev.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_fbdev.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- vo_fbdev.c	30 Oct 2001 17:04:31 -0000	1.49
+++ vo_fbdev.c	6 Nov 2001 11:21:08 -0000	1.50
@@ -27,7 +27,6 @@
 #include "video_out_internal.h"
 #include "fastmemcpy.h"
 #include "sub.h"
-#include "yuv2rgb.h"
 #include "../postproc/rgb2rgb.h"
 
 LIBVO_EXTERN(fbdev)

Index: vo_fsdga.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_fsdga.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vo_fsdga.c	13 Aug 2001 11:08:18 -0000	1.4
+++ vo_fsdga.c	6 Nov 2001 11:21:08 -0000	1.5
@@ -28,7 +28,7 @@
 #include "config.h"
 #include "video_out.h"
 #include "video_out_internal.h"
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 
 LIBVO_EXTERN( fsdga )
 

Index: vo_ggi.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_ggi.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- vo_ggi.c	13 Aug 2001 11:08:18 -0000	1.10
+++ vo_ggi.c	6 Nov 2001 11:21:08 -0000	1.11
@@ -32,7 +32,7 @@
 #undef GGI_PLANAR_NOCONV
 
 #ifndef GGI_PLANAR_NOCONV
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 #endif
 
 LIBVO_EXTERN (ggi)

Index: vo_gl.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_gl.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- vo_gl.c	18 Oct 2001 02:42:20 -0000	1.14
+++ vo_gl.c	6 Nov 2001 11:21:08 -0000	1.15
@@ -28,7 +28,7 @@
 //#include <X11/keysym.h>
 #include <GL/glx.h>
 #include <errno.h>
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 
 #include <GL/gl.h>
 

Index: vo_gl2.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_gl2.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- vo_gl2.c	24 Oct 2001 17:04:08 -0000	1.7
+++ vo_gl2.c	6 Nov 2001 11:21:08 -0000	1.8
@@ -22,7 +22,7 @@
 //#include <X11/keysym.h>
 #include <GL/glx.h>
 #include <errno.h>
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 
 #include <GL/gl.h>
 

Index: vo_png.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_png.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vo_png.c	13 Aug 2001 11:08:18 -0000	1.5
+++ vo_png.c	6 Nov 2001 11:21:08 -0000	1.6
@@ -22,7 +22,7 @@
 #include "video_out.h"
 #include "video_out_internal.h"
 
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 
 LIBVO_EXTERN (png)
 

Index: vo_svga.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_svga.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- vo_svga.c	31 Oct 2001 18:46:30 -0000	1.37
+++ vo_svga.c	6 Nov 2001 11:21:08 -0000	1.38
@@ -18,8 +18,6 @@
 #include "video_out.h"
 #include "video_out_internal.h"
 
-#include "yuv2rgb.h"
-
 #include "sub.h"
 #include "../postproc/rgb2rgb.h"
 

Index: vo_tdfxfb.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_tdfxfb.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vo_tdfxfb.c	21 Oct 2001 20:03:00 -0000	1.2
+++ vo_tdfxfb.c	6 Nov 2001 11:21:08 -0000	1.3
@@ -77,7 +77,7 @@
 #endif
 
 #ifdef YV12_CONV_METH
-#include "yuv2rgb.h"
+#include "../postproc/rgb2rgb.h"
 #endif
 
 static vo_info_t vo_info = 

Index: vo_vesa.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_vesa.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- vo_vesa.c	5 Nov 2001 17:35:28 -0000	1.39
+++ vo_vesa.c	6 Nov 2001 11:21:08 -0000	1.40
@@ -30,7 +30,6 @@
 #endif
 
 #include "fastmemcpy.h"
-#include "yuv2rgb.h"
 #include "sub.h"
 #include "linux/vbelib.h"
 #include "bswap.h"

Index: vo_x11.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_x11.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- vo_x11.c	30 Oct 2001 17:04:31 -0000	1.38
+++ vo_x11.c	6 Nov 2001 11:21:08 -0000	1.39
@@ -32,7 +32,6 @@
 #include <X11/extensions/xf86vmode.h>
 #endif
 #include <errno.h>
-#include "yuv2rgb.h"
 
 #include "x11_common.h"
 




More information about the MPlayer-cvslog mailing list