diff libvo/video_out.c @ 3275:38344371432f

vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
author arpi
date Mon, 03 Dec 2001 01:09:36 +0000
parents 039a973b3dda
children 4435dc3b8bef
line wrap: on
line diff
--- a/libvo/video_out.c	Mon Dec 03 01:03:17 2001 +0000
+++ b/libvo/video_out.c	Mon Dec 03 01:09:36 2001 +0000
@@ -77,6 +77,7 @@
 #ifdef TARGET_LINUX
 extern vo_functions_t video_out_vesa;
 #endif
+extern vo_functions_t video_out_directfb;
 vo_functions_t* video_out_drivers[] =
 {
 #ifdef HAVE_XMGA
@@ -138,6 +139,9 @@
 #if defined( ARCH_X86 ) && defined( TARGET_LINUX )
 	&video_out_vesa,
 #endif
+#ifdef HAVE_DIRECTFB
+	&video_out_directfb,
+#endif	
         NULL
 };