From 2d602b345bc2c5e216576a0be82e8416477c5f03 Mon Sep 17 00:00:00 2001 From: arpi Date: Thu, 31 Oct 2002 23:54:26 +0000 Subject: =?UTF-8?q?Here's=20a=20new=20vo=20plugin=20that=20uses=20DirectFB?= =?UTF-8?q?.=20It's=20meant=20for=20Matrox=20G400=20cards=20and=20TV=20out?= =?UTF-8?q?.=20It's=20works=20like=20DVDMax=20in=20Windows.=20Instructions?= =?UTF-8?q?=20on=20how=20to=20make=20it=20work=20are=20at:=20http://www.sc?= =?UTF-8?q?i.fi/~syrjala/directfb/readme.txt=20patch=20by=20Ville=20Syrj?= =?UTF-8?q?=C3=A4l=C3=A4=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8014 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/video_out.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'libvo/video_out.c') diff --git a/libvo/video_out.c b/libvo/video_out.c index ce0b3d9130..d426b4381d 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -90,7 +90,12 @@ extern vo_functions_t video_out_gif89a; #ifdef HAVE_VESA extern vo_functions_t video_out_vesa; #endif +#ifdef HAVE_DIRECTFB extern vo_functions_t video_out_directfb; +#if DIRECTFBVERSION >= 914 +extern vo_functions_t video_out_dfbmga; +#endif +#endif #ifdef CONFIG_VIDIX extern vo_functions_t video_out_xvidix; #endif @@ -177,7 +182,10 @@ vo_functions_t* video_out_drivers[] = #endif #ifdef HAVE_DIRECTFB &video_out_directfb, -#endif +#if DIRECTFBVERSION >= 914 + &video_out_dfbmga, +#endif +#endif #if defined(CONFIG_VIDIX) && defined(HAVE_X11) &video_out_xvidix, #endif -- cgit v1.2.3