diff libmpcodecs/vf.c @ 9832:298e261aecd7

disable vf_bmovl for systems without posix select
author faust3
date Fri, 04 Apr 2003 20:12:24 +0000
parents e9a2af584986
children 3548701a13fe
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Fri Apr 04 20:02:53 2003 +0000
+++ b/libmpcodecs/vf.c	Fri Apr 04 20:12:24 2003 +0000
@@ -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