[Mplayer-cvslog] CVS: main/libmpcodecs vf.c,1.75,1.76 vf_bmovl.c,1.7,1.8

Sascha Sommer CVS faust3 at mplayerhq.hu
Fri Apr 4 22:12:44 CEST 2003


Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv23350

Modified Files:
	vf.c vf_bmovl.c 
Log Message:
disable vf_bmovl for systems without posix select

Index: vf.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf.c,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- vf.c	15 Mar 2003 18:01:02 -0000	1.75
+++ vf.c	4 Apr 2003 20:12:24 -0000	1.76
@@ -19,7 +19,9 @@
 
 extern vf_info_t vf_info_vo;
 extern vf_info_t vf_info_rectangle;
+#ifndef HAVE_NO_POSIX_SELECT
 extern vf_info_t vf_info_bmovl;
+#endif
 extern vf_info_t vf_info_crop;
 extern vf_info_t vf_info_expand;
 extern vf_info_t vf_info_pp;
@@ -65,7 +67,9 @@
 // list of available filters:
 static vf_info_t* filter_list[]={
     &vf_info_rectangle,
+#ifndef HAVE_NO_POSIX_SELECT
     &vf_info_bmovl,
+#endif
     &vf_info_crop,
     &vf_info_expand,
 #ifdef USE_LIBAVCODEC

Index: vf_bmovl.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_bmovl.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- vf_bmovl.c	15 Mar 2003 18:01:02 -0000	1.7
+++ vf_bmovl.c	4 Apr 2003 20:12:24 -0000	1.8
@@ -66,6 +66,9 @@
 #include "mp_image.h"
 #include "vf.h"
 #include "img_format.h"
+#include "../config.h"
+
+#ifndef HAVE_NO_POSIX_SELECT
 
 #include "../mp_msg.h"
 
@@ -455,3 +458,5 @@
     vf_open,
     NULL
 };
+
+#endif



More information about the MPlayer-cvslog mailing list