summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-31 23:54:26 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-31 23:54:26 +0000
commit2d602b345bc2c5e216576a0be82e8416477c5f03 (patch)
tree785786e0957acfa16fdbb0946ffa22f5b469ca92 /libvo/video_out.c
parent304cac4da3048b961d9ed500ccac657a4d82db00 (diff)
downloadmpv-2d602b345bc2c5e216576a0be82e8416477c5f03.tar.bz2
mpv-2d602b345bc2c5e216576a0be82e8416477c5f03.tar.xz
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
cards and TV out. It's works like DVDMax in Windows. Instructions on how to make it work are at: http://www.sci.fi/~syrjala/directfb/readme.txt patch by Ville Syrjälä <syrjala@sci.fi> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8014 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c10
1 files changed, 9 insertions, 1 deletions
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