1
mirror of https://github.com/mpv-player/mpv synced 2024-09-12 23:45:53 +02:00

disable vf_bmovl for systems without posix select

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9833 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2003-04-04 20:12:24 +00:00
parent 21c0799280
commit 425b08fcc6
2 changed files with 9 additions and 0 deletions

View File

@ -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 @@ extern vf_info_t vf_info_tfields;
// 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

View File

@ -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_info_t vf_info_bmovl = {
vf_open,
NULL
};
#endif