[Mplayer-cvslog] CVS: main mplayer.c,1.240,1.241 cfg-mplayer.h,1.78,1.79

Arpi of Ize arpi at mplayer.dev.hu
Mon Aug 27 02:54:56 CEST 2001


Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv7498

Modified Files:
	mplayer.c cfg-mplayer.h 
Log Message:
GUI integration, step 1

Index: mplayer.c
===================================================================
RCS file: /cvsroot/mplayer/main/mplayer.c,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -r1.240 -r1.241
--- mplayer.c	25 Aug 2001 21:05:23 -0000	1.240
+++ mplayer.c	27 Aug 2001 00:54:54 -0000	1.241
@@ -200,6 +200,8 @@
 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 @@
 
   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 @@
       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 @@
       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 @@
   }
 #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 @@
 	  }
       }
       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(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 @@
              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();
       }
 
@@ -1492,6 +1515,11 @@
              (use_stdin || getch2(20)<=0) && mplayer_get_key()<=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
          }

Index: cfg-mplayer.h
===================================================================
RCS file: /cvsroot/mplayer/main/cfg-mplayer.h,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- cfg-mplayer.h	20 Aug 2001 21:20:03 -0000	1.78
+++ cfg-mplayer.h	27 Aug 2001 00:54:54 -0000	1.79
@@ -230,6 +230,8 @@
 	{"aa*",	vo_aa_parseoption,  CONF_TYPE_FUNC_FULL, 0, 0, 0 },
 #endif
 
+	{"gui", &use_gui, CONF_TYPE_FLAG, 0, 0, 1},
+	{"nogui", &use_gui, CONF_TYPE_FLAG, 0, 1, 0},
       
 	{"noidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 0},
 	{"idx", &index_mode, CONF_TYPE_FLAG, 0, -1, 1},




More information about the MPlayer-cvslog mailing list