comparison 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
comparison
equal deleted inserted replaced
8012:a53966ed8afb 8013:bd100a3d486f
88 extern vo_functions_t video_out_gif89a; 88 extern vo_functions_t video_out_gif89a;
89 #endif 89 #endif
90 #ifdef HAVE_VESA 90 #ifdef HAVE_VESA
91 extern vo_functions_t video_out_vesa; 91 extern vo_functions_t video_out_vesa;
92 #endif 92 #endif
93 #ifdef HAVE_DIRECTFB
93 extern vo_functions_t video_out_directfb; 94 extern vo_functions_t video_out_directfb;
95 #if DIRECTFBVERSION >= 914
96 extern vo_functions_t video_out_dfbmga;
97 #endif
98 #endif
94 #ifdef CONFIG_VIDIX 99 #ifdef CONFIG_VIDIX
95 extern vo_functions_t video_out_xvidix; 100 extern vo_functions_t video_out_xvidix;
96 #endif 101 #endif
97 102
98 vo_functions_t* video_out_drivers[] = 103 vo_functions_t* video_out_drivers[] =
175 #ifdef HAVE_VESA 180 #ifdef HAVE_VESA
176 &video_out_vesa, 181 &video_out_vesa,
177 #endif 182 #endif
178 #ifdef HAVE_DIRECTFB 183 #ifdef HAVE_DIRECTFB
179 &video_out_directfb, 184 &video_out_directfb,
180 #endif 185 #if DIRECTFBVERSION >= 914
186 &video_out_dfbmga,
187 #endif
188 #endif
181 #if defined(CONFIG_VIDIX) && defined(HAVE_X11) 189 #if defined(CONFIG_VIDIX) && defined(HAVE_X11)
182 &video_out_xvidix, 190 &video_out_xvidix,
183 #endif 191 #endif
184 NULL 192 NULL
185 }; 193 };