comparison libvo/video_out.c @ 7867:3dc0b71630ff

cleanup config option handling in libmpdemux. removed overcompilacted m_config_register_options() mess - export the subconfig structs instead
author arpi
date Wed, 23 Oct 2002 17:21:01 +0000
parents 92188b57a062
children bd100a3d486f
comparison
equal deleted inserted replaced
7866:732a8bfc7681 7867:3dc0b71630ff
181 #if defined(CONFIG_VIDIX) && defined(HAVE_X11) 181 #if defined(CONFIG_VIDIX) && defined(HAVE_X11)
182 &video_out_xvidix, 182 &video_out_xvidix,
183 #endif 183 #endif
184 NULL 184 NULL
185 }; 185 };
186
187 #ifdef HAVE_DXR2
188 extern void vo_dxr2_register_options(void*);
189 #endif
190
191 void libvo_register_options(void* cfg) {
192 #ifdef HAVE_DXR2
193 vo_dxr2_register_options(cfg);
194 #endif
195 }
196 186
197 void list_video_out(){ 187 void list_video_out(){
198 int i=0; 188 int i=0;
199 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers); 189 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers);
200 while (video_out_drivers[i]) { 190 while (video_out_drivers[i]) {