summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-27 00:55:25 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-27 00:55:25 +0000
commit3cfd8b016170e0f560bffe4e7ea6bd741becefeb (patch)
tree6492d7b8be402d7c684d88534a86ed1598cb6668 /mplayer.c
parent33e22982882d10b7767c2994595a86437873cc6a (diff)
downloadmpv-3cfd8b016170e0f560bffe4e7ea6bd741becefeb.tar.bz2
mpv-3cfd8b016170e0f560bffe4e7ea6bd741becefeb.tar.xz
GUI integration, step 1
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1710 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c56
1 files changed, 42 insertions, 14 deletions
diff --git a/mplayer.c b/mplayer.c
index 09864612fc..6118eada28 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -200,6 +200,8 @@ int divx_quality=0;
static int auto_quality=0;
static int output_quality=0;
+int use_gui=0;
+
int osd_level=2;
char *seek_to_sec=NULL;
off_t seek_to_byte=0;
@@ -462,22 +464,25 @@ int use_stdin=0; //int f; // filedes
mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",banner_text);
-#ifdef HAVE_NEW_GUI
// this one segfaults if running 'mplayer' (without path containing '/')
// if ( !strcmp( strrchr( argv[0],'/' ),"/gmplayer" ) ) appInit( argc,argv,envp );
- if ( strstr( argv[0],"gmplayer" ) ) appInit( argc,argv,envp );
-
-#endif
-
-
-#ifdef HAVE_GUI
- if ( nogui ) {
-#endif
+ if ( argv[0] )
+ if(!strcmp(argv[0],"gmplayer") ||
+ (strrchr(argv[0],'/') && !strcmp(strrchr(argv[0],'/'),"/gmplayer") ) )
+ use_gui=1;
parse_cfgfiles();
num_filenames=parse_command_line(conf, argc, argv, envp, &filenames);
if(num_filenames<0) exit(1); // error parsing cmdline
+#ifndef HAVE_NEW_GUI
+ if(use_gui){
+ mp_msg(MSGT_CPLAYER,MSGL_WARN,"MPlayer was compiled WITHOUT GUI support!\n");
+ use_gui=0;
+ }
+#endif
+
+
#ifndef USE_LIBVO2
if(video_driver && strcmp(video_driver,"help")==0){
printf("Available video output drivers:\n");
@@ -501,7 +506,7 @@ int use_stdin=0; //int f; // filedes
exit(0);
}
- if(!num_filenames && !vcd_track && !dvd_title){
+ if(!num_filenames && !vcd_track && !dvd_title && !use_gui){
// no file/vcd/dvd -> show HELP:
printf("%s",help_text);
exit(0);
@@ -515,10 +520,6 @@ int use_stdin=0; //int f; // filedes
printf("num_filenames: %d\n",num_filenames);
}
-#ifdef HAVE_GUI
- }
-#endif
-
mp_msg_init(verbose+MSGL_STATUS);
//------ load global data first ------
@@ -556,6 +557,12 @@ if(!parse_codec_cfg(get_path("codecs.conf"))){
}
#endif
+ // It's time to init the GUI code: (and fork() the GTK process)
+#ifdef HAVE_NEW_GUI
+ if(use_gui){
+ appInit( argc,argv,envp );
+ }
+#endif
#ifdef HAVE_LIRC
#ifdef HAVE_GUI
@@ -1288,6 +1295,11 @@ if(1)
}
}
video_out->check_events(); // check events AST
+#ifdef HAVE_NEW_GUI
+ if(use_gui){
+ wsHandleEvents();mplTimerHandler(0); // handle GUI timer events
+ }
+#endif
} else {
// It's time to sleep...
current_module="sleep";
@@ -1319,6 +1331,12 @@ if(1)
// if(verbose>1)printf("sleep: %5.3f a:%6.3f v:%6.3f \n",time_frame,sh_audio->timer,sh_video->timer);
aq_sleep_time+=time_frame;
+
+#ifdef HAVE_NEW_GUI
+ if(use_gui){
+ wsHandleEvents();mplTimerHandler(0); // handle GUI timer events
+ }
+#endif
while(time_frame>0.005){
if(time_frame<=0.020)
@@ -1326,6 +1344,11 @@ if(1)
usec_sleep(0); // sleeps 1 clock tick (10ms)!
else
usec_sleep(1000000*(time_frame-0.002));
+#ifdef HAVE_NEW_GUI
+ if(use_gui){
+ wsHandleEvents();mplTimerHandler(0); // handle GUI timer events
+ }
+#endif
time_frame-=GetRelativeTime();
}
@@ -1493,6 +1516,11 @@ if(auto_quality>0){
#ifndef USE_LIBVO2
video_out->check_events();
#endif
+#ifdef HAVE_NEW_GUI
+ if(use_gui){
+ wsHandleEvents();mplTimerHandler(0); // handle GUI timer events
+ }
+#endif
if(use_stdin) usec_sleep(1000); // do not eat the CPU
}
osd_function=OSD_PLAY;