comparison libvo/video_out.c @ 18237:4231482179b6

Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
author reynaldo
date Mon, 24 Apr 2006 07:20:34 +0000
parents a107276371a8
children 8e92dd0ff93a
comparison
equal deleted inserted replaced
18236:d239a79a0002 18237:4231482179b6
261 }; 261 };
262 262
263 void list_video_out(void){ 263 void list_video_out(void){
264 int i=0; 264 int i=0;
265 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers); 265 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers);
266 if (identify) 266 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_OUTPUTS\n");
267 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_OUTPUTS\n");
268 while (video_out_drivers[i]) { 267 while (video_out_drivers[i]) {
269 const vo_info_t *info = video_out_drivers[i++]->info; 268 const vo_info_t *info = video_out_drivers[i++]->info;
270 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\t%s\t%s\n", info->short_name, info->name); 269 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\t%s\t%s\n", info->short_name, info->name);
271 } 270 }
272 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\n"); 271 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\n");