diff libvo/video_out.c @ 8013:bd100a3d486f

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>
author arpi
date Thu, 31 Oct 2002 23:54:26 +0000
parents 3dc0b71630ff
children 5b39e79af5fe
line wrap: on
line diff
--- a/libvo/video_out.c	Thu Oct 31 23:37:38 2002 +0000
+++ b/libvo/video_out.c	Thu Oct 31 23:54:26 2002 +0000
@@ -90,7 +90,12 @@
 #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 @@
 #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