comparison libvo/video_out.c @ 15789:32d9c8a0a02b

adds some more -identify output, patch by kiriuja < mplayer DASH patches PAM en DASH directo POUM net>
author gpoirier
date Mon, 20 Jun 2005 23:07:35 +0000
parents 18d404eebb28
children 76d00448d786
comparison
equal deleted inserted replaced
15788:76d4857b91d0 15789:32d9c8a0a02b
258 }; 258 };
259 259
260 void list_video_out(){ 260 void list_video_out(){
261 int i=0; 261 int i=0;
262 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers); 262 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers);
263 if (identify)
264 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_OUTPUTS\n");
263 while (video_out_drivers[i]) { 265 while (video_out_drivers[i]) {
264 const vo_info_t *info = video_out_drivers[i++]->info; 266 const vo_info_t *info = video_out_drivers[i++]->info;
265 printf("\t%s\t%s\n", info->short_name, info->name); 267 printf("\t%s\t%s\n", info->short_name, info->name);
266 } 268 }
267 printf("\n"); 269 printf("\n");