[Mplayer-cvslog] CVS: main/libmpcodecs vf_vo.c,1.20,1.21

Alex Beregszaszi alex at mplayerhq.hu
Mon Nov 11 16:22:13 CET 2002


Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv2123

Modified Files:
	vf_vo.c 
Log Message:
removed get_info, using the same sheme as in libmpcodecs instead

Index: vf_vo.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_vo.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- vf_vo.c	13 Oct 2002 21:58:54 -0000	1.20
+++ vf_vo.c	11 Nov 2002 15:22:10 -0000	1.21
@@ -26,8 +26,8 @@
 	return 0;
     }
 
-  if(video_out->get_info)
-  { const vo_info_t *info = video_out->get_info();
+  if(video_out->info)
+  { const vo_info_t *info = video_out->info;
     mp_msg(MSGT_CPLAYER,MSGL_INFO,"VO: [%s] %dx%d => %dx%d %s %s%s%s%s\n",info->short_name,
          width, height,
          d_width, d_height,
@@ -47,6 +47,7 @@
 
     if(video_out->config(width,height,d_width,d_height,flags,"MPlayer",outfmt))
 	return 0;
+
     ++vo_config_count;
     return 1;
 }




More information about the MPlayer-cvslog mailing list