changeset 4892:35dd38bbd7f3

Fix when stdin is used as a file
author albeu
date Thu, 28 Feb 2002 13:49:04 +0000
parents 30798db9527f
children 904cc3813582
files input/input.c mplayer.c
diffstat 2 files changed, 4 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/input/input.c	Thu Feb 28 13:48:04 2002 +0000
+++ b/input/input.c	Thu Feb 28 13:49:04 2002 +0000
@@ -634,6 +634,7 @@
     if((unsigned int)i >= num_key_fd) {
       i = -1;
       last_loop++;
+      last_loop %= (num_key_fd+1);
       continue;
     }
     // No input from this fd
@@ -785,6 +786,7 @@
     if((unsigned int)i >= num_cmd_fd) {
       i = -1;
       last_loop++;
+      last_loop %= (num_cmd_fd+1);
       continue;
     }
     if( ! (cmd_fds[i].flags & MP_FD_NO_SELECT) && ! FD_ISSET(cmd_fds[i].fd,&fds) && ! (cmd_fds[i].flags & MP_FD_GOT_CMD) )
--- a/mplayer.c	Thu Feb 28 13:48:04 2002 +0000
+++ b/mplayer.c	Thu Feb 28 13:49:04 2002 +0000
@@ -163,7 +163,7 @@
 
 // Common FIFO functions, and keyboard/event FIFO code
 #include "fifo.c"
-
+int use_stdin=0;
 //**************************************************************************//
 
 #ifdef USE_LIBVO2
@@ -274,8 +274,6 @@
 static int screen_size_xy=0;
 static float movie_aspect=-1.0;
 
-char* playlist_file;
-
 // sub:
 char *font_name=NULL;
 float font_factor=0.75;
@@ -512,7 +510,6 @@
 //float a_frame=0;    // Audio
 
 int i;
-int use_stdin=0; //int f; // filedes
 
 int gui_no_filename=0;
 
@@ -734,7 +731,7 @@
   mp_input_add_key_fd(keyb_fifo_get,1,NULL,NULL);
 if(slave_mode)
    mp_input_add_cmd_fd(0,1,NULL,NULL);
-else
+else if(!use_stdin)
   mp_input_add_key_fd(0,1,NULL,NULL);
 inited_flags|=INITED_INPUT;
 current_module = NULL;
@@ -936,19 +933,6 @@
     }
   }
 
-#ifdef HAVE_NEW_INPUT
-    if(!slave_mode && filename && !use_stdin && !strcmp(filename,"-")) {      
-    mp_input_rm_key_fd(0);
-    use_stdin = 1;
-  }
-  else if(!slave_mode && use_stdin && (!filename || strcmp(filename,"-"))) {
-    mp_input_add_key_fd(0,1,NULL,NULL);
-    use_stdin = 0;
-  }
-#else
-  use_stdin=filename && (!strcmp(filename,"-"));
-#endif
-
   current_module="open_stream";
   stream=open_stream(filename,vcd_track,&file_format);
   if(!stream) { // error...