comparison libmpcodecs/vf_bmovl.c @ 22752:936f98562a5f

Conditionally compile vf_bmovl.c instead of enclosing all of the file in #ifdef HAVE_POSIX_SELECT.
author diego
date Wed, 21 Mar 2007 08:29:46 +0000
parents 3d83d77f5a6b
children a124f3abc1ec
comparison
equal deleted inserted replaced
22751:3d83d77f5a6b 22752:936f98562a5f
65 #include <fcntl.h> 65 #include <fcntl.h>
66 #include "config.h" 66 #include "config.h"
67 #include "mp_image.h" 67 #include "mp_image.h"
68 #include "vf.h" 68 #include "vf.h"
69 #include "img_format.h" 69 #include "img_format.h"
70
71 #ifdef HAVE_POSIX_SELECT
72 70
73 #include "mp_msg.h" 71 #include "mp_msg.h"
74 #include "libavutil/common.h" 72 #include "libavutil/common.h"
75 73
76 #include "libvo/fastmemcpy.h" 74 #include "libvo/fastmemcpy.h"
477 "Per Wigren", 475 "Per Wigren",
478 "", 476 "",
479 vf_open, 477 vf_open,
480 NULL 478 NULL
481 }; 479 };
482
483 #endif