[Mplayer-cvslog] CVS: main/libvo Makefile,1.27,1.28 video_out.c,1.31,1.32
Alex Beregszaszi
alex at mplayer.dev.hu
Sun Jan 13 00:30:22 CET 2002
Update of /cvsroot/mplayer/main/libvo
In directory mplayer:/var/tmp.root/cvs-serv11282
Modified Files:
Makefile video_out.c
Log Message:
added vo_xvidix
Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/Makefile,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- Makefile 11 Jan 2002 17:20:43 -0000 1.27
+++ Makefile 12 Jan 2002 23:30:20 -0000 1.28
@@ -7,7 +7,7 @@
OBJS=$(SRCS:.c=.o)
ifeq ($(VIDIX),yes)
-SRCS += vosub_vidix.c
+SRCS += vosub_vidix.c vo_xvidix.c
endif
CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DVB_INC) -DMPG12PLAY #-Wall
Index: video_out.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/video_out.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- video_out.c 11 Jan 2002 16:06:45 -0000 1.31
+++ video_out.c 12 Jan 2002 23:30:20 -0000 1.32
@@ -78,6 +78,10 @@
extern vo_functions_t video_out_vesa;
#endif
extern vo_functions_t video_out_directfb;
+#ifdef CONFIG_VIDIX
+extern vo_functions_t video_out_xvidix;
+#endif
+
vo_functions_t* video_out_drivers[] =
{
#ifdef HAVE_XMGA
@@ -142,5 +146,8 @@
#ifdef HAVE_DIRECTFB
&video_out_directfb,
#endif
+#ifdef CONFIG_VIDIX
+ &video_out_xvidix,
+#endif
NULL
};
More information about the MPlayer-cvslog
mailing list