[Mplayer-cvslog] CVS: main mplayer.c,1.725,1.726
Sascha Sommer CVS
faust3 at mplayerhq.hu
Fri Sep 19 22:44:32 CEST 2003
Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv14814
Modified Files:
mplayer.c
Log Message:
slave mode commands to print out vo_fs and sub_visibility globals, patch by Mike Swieton <swietonm at student.gvsu.edu>
Index: mplayer.c
===================================================================
RCS file: /cvsroot/mplayer/main/mplayer.c,v
retrieving revision 1.725
retrieving revision 1.726
diff -u -r1.725 -r1.726
--- mplayer.c 29 Aug 2003 21:41:03 -0000 1.725
+++ mplayer.c 19 Sep 2003 20:44:03 -0000 1.726
@@ -3033,6 +3033,14 @@
}
#endif
} break;
+ case MP_CMD_GET_SUB_VISIBILITY:
+ {
+#ifdef USE_SUB
+ if (sh_video) {
+ mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_SUB_VISIBILITY=%ld\n", sub_visibility);
+ }
+#endif
+ } break;
case MP_CMD_VOBSUB_LANG:
if (vo_vobsub)
{
@@ -3066,6 +3074,11 @@
mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_LENGTH=%ld\n", demuxer_get_time_length(demuxer));
} break;
+ case MP_CMD_GET_VO_FULLSCREEN : {
+ if(video_out && vo_config_count)
+ mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_VO_FULLSCREEN=%ld\n", vo_fs);
+ } break;
+
case MP_CMD_GET_PERCENT_POS : {
mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_PERCENT_POSITION=%ld\n", demuxer_get_percent_pos(demuxer));
} break;
More information about the MPlayer-cvslog
mailing list