summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-28 13:49:04 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-28 13:49:04 +0000
commit7027f14002a89243af1fac12f75b9a74726df24e (patch)
treeb6e37e1ed0c0e1c7a98b9f3ca7aaaab12e9b9b20 /mplayer.c
parent356da44ecd456079b20604ea3bb46ae7db051caa (diff)
downloadmpv-7027f14002a89243af1fac12f75b9a74726df24e.tar.bz2
mpv-7027f14002a89243af1fac12f75b9a74726df24e.tar.xz
Fix when stdin is used as a file
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4893 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/mplayer.c b/mplayer.c
index d40e9c2e08..2bcefe74d0 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -163,7 +163,7 @@ int frameratecode2framerate[16] = {
// 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_y=0;//SCREEN_SIZE_Y;
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 @@ int rtc_fd=-1;
//float a_frame=0; // Audio
int i;
-int use_stdin=0; //int f; // filedes
int gui_no_filename=0;
@@ -734,7 +731,7 @@ if(keyb_fifo_get > 0)
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 @@ play_dvd:
}
}
-#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...