comparison libvo/video_out.c @ 13397:6cfffb50ea42

This patch enables the compilation and linking of vo_pnm (the portable anymap video output driver) to libvo.
author ivo
date Mon, 20 Sep 2004 01:31:26 +0000
parents 1f6bb2356d18
children ae4e34f267bb
comparison
equal deleted inserted replaced
13396:56b035c6514b 13397:6cfffb50ea42
122 extern vo_functions_t video_out_tga; 122 extern vo_functions_t video_out_tga;
123 #endif 123 #endif
124 #ifdef MACOSX 124 #ifdef MACOSX
125 extern vo_functions_t video_out_quartz; 125 extern vo_functions_t video_out_quartz;
126 #endif 126 #endif
127 extern vo_functions_t video_out_pnm;
127 128
128 vo_functions_t* video_out_drivers[] = 129 vo_functions_t* video_out_drivers[] =
129 { 130 {
130 #ifdef HAVE_TDFX_VID 131 #ifdef HAVE_TDFX_VID
131 &video_out_tdfx_vid, 132 &video_out_tdfx_vid,
238 &video_out_cvidix, 239 &video_out_cvidix,
239 #endif 240 #endif
240 #ifdef HAVE_TGA 241 #ifdef HAVE_TGA
241 &video_out_tga, 242 &video_out_tga,
242 #endif 243 #endif
244 &video_out_pnm,
243 NULL 245 NULL
244 }; 246 };
245 247
246 void list_video_out(){ 248 void list_video_out(){
247 int i=0; 249 int i=0;