summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-30 21:14:34 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-30 21:14:34 +0000
commit88702b7437a9c8517a6a27b9a1a398f12c613fa5 (patch)
tree6c5bc1e149baf2db6d4e2f06ccdf52b568b336fb /mplayer.c
parentf575265bdab4df24c82d824b6d97f2c263dfd6e9 (diff)
downloadmpv-88702b7437a9c8517a6a27b9a1a398f12c613fa5.tar.bz2
mpv-88702b7437a9c8517a6a27b9a1a398f12c613fa5.tar.xz
stop fixed, fileselector supp. maybe not work, couldn't test
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1788 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c23
1 files changed, 16 insertions, 7 deletions
diff --git a/mplayer.c b/mplayer.c
index fb007fd0c1..69c44ccd13 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -434,6 +434,8 @@ int v_saturation=50;
int i;
int use_stdin=0; //int f; // filedes
+int gui_no_filename=0;
+
mp_msg_init(MSGL_STATUS);
mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",banner_text);
@@ -484,10 +486,12 @@ int use_stdin=0; //int f; // filedes
exit(0);
}
- if(!num_filenames && !vcd_track && !dvd_title && !use_gui){
+ if(!num_filenames && !vcd_track && !dvd_title){
+ if(!use_gui){
// no file/vcd/dvd -> show HELP:
printf("%s",help_text);
exit(0);
+ } else gui_no_filename=1;
}
// Many users forget to include command line in bugreports...
@@ -572,13 +576,18 @@ if(!parse_codec_cfg(get_path("codecs.conf"))){
curr_filename=0;
play_next_file:
filename=(num_filenames>0)?filenames[curr_filename]:NULL;
+
#ifdef HAVE_NEW_GUI
- if ( use_gui )
- {
- strcpy( mplShMem->Filename,filename );
- mplShMem->Playing=1;
- }
-#endif
+ if ( use_gui ) {
+ if(filename) strcpy( mplShMem->Filename,filename );
+ mplShMem->Playing= (gui_no_filename) ? 0 : 1;
+ while(mplShMem->Playing!=1){
+ usleep(20000);
+ wsHandleEvents();mplTimerHandler(0); // handle GUI timer events
+ }
+ }
+#endif
+
if(filename) mp_msg(MSGT_CPLAYER,MSGL_INFO,"Playing %s\n", filename);
#ifdef USE_SUB