mirror of https://github.com/mpv-player/mpv
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:
parent
21c0799280
commit
425b08fcc6
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue