comparison libvo/video_out.c @ 4124:562b43b604d4

added vo_xvidix
author alex
date Sat, 12 Jan 2002 23:30:20 +0000
parents 4435dc3b8bef
children 91b50468a1a4
comparison
equal deleted inserted replaced
4123:467a7141f5c9 4124:562b43b604d4
76 extern vo_functions_t video_out_dxr3; 76 extern vo_functions_t video_out_dxr3;
77 #ifdef TARGET_LINUX 77 #ifdef TARGET_LINUX
78 extern vo_functions_t video_out_vesa; 78 extern vo_functions_t video_out_vesa;
79 #endif 79 #endif
80 extern vo_functions_t video_out_directfb; 80 extern vo_functions_t video_out_directfb;
81 #ifdef CONFIG_VIDIX
82 extern vo_functions_t video_out_xvidix;
83 #endif
84
81 vo_functions_t* video_out_drivers[] = 85 vo_functions_t* video_out_drivers[] =
82 { 86 {
83 #ifdef HAVE_XMGA 87 #ifdef HAVE_XMGA
84 &video_out_xmga, 88 &video_out_xmga,
85 #endif 89 #endif
140 &video_out_vesa, 144 &video_out_vesa,
141 #endif 145 #endif
142 #ifdef HAVE_DIRECTFB 146 #ifdef HAVE_DIRECTFB
143 &video_out_directfb, 147 &video_out_directfb,
144 #endif 148 #endif
149 #ifdef CONFIG_VIDIX
150 &video_out_xvidix,
151 #endif
145 NULL 152 NULL
146 }; 153 };