comparison libvo/video_out.c @ 10689:c6c54f467984

TGA image output VO module patch by Daniele Forghieri ( guru@digitalfantasy.it )
author arpi
date Sun, 24 Aug 2003 18:26:37 +0000
parents fdc349b9bd1d
children 7436a53876b0
comparison
equal deleted inserted replaced
10688:c2331e3ef96a 10689:c6c54f467984
102 extern vo_functions_t video_out_xvidix; 102 extern vo_functions_t video_out_xvidix;
103 #endif 103 #endif
104 #ifdef HAVE_TDFX_VID 104 #ifdef HAVE_TDFX_VID
105 extern vo_functions_t video_out_tdfx_vid; 105 extern vo_functions_t video_out_tdfx_vid;
106 #endif 106 #endif
107 #ifdef HAVE_TGA
108 extern vo_functions_t video_out_tga;
109 #endif
107 110
108 vo_functions_t* video_out_drivers[] = 111 vo_functions_t* video_out_drivers[] =
109 { 112 {
110 #ifdef HAVE_TDFX_VID 113 #ifdef HAVE_TDFX_VID
111 &video_out_tdfx_vid, 114 &video_out_tdfx_vid,
198 &video_out_dfbmga, 201 &video_out_dfbmga,
199 #endif 202 #endif
200 #endif 203 #endif
201 #if defined(CONFIG_VIDIX) && defined(HAVE_X11) 204 #if defined(CONFIG_VIDIX) && defined(HAVE_X11)
202 &video_out_xvidix, 205 &video_out_xvidix,
206 #endif
207 #ifdef HAVE_TGA
208 &video_out_tga,
203 #endif 209 #endif
204 NULL 210 NULL
205 }; 211 };
206 212
207 void list_video_out(){ 213 void list_video_out(){