summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/play.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-29 15:07:40 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-29 15:07:40 +0000
commit4c954d99b694a93fa2ae248d665ae810615389d6 (patch)
tree4ce518d359ce8ab2989f07d1822306c498de785e /Gui/mplayer/play.c
parent19c99b1f13305b3c27416a80cadee34a82dac662 (diff)
downloadmpv-4c954d99b694a93fa2ae248d665ae810615389d6.tar.bz2
mpv-4c954d99b694a93fa2ae248d665ae810615389d6.tar.xz
fix playing
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1744 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/mplayer/play.c')
-rw-r--r--Gui/mplayer/play.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/Gui/mplayer/play.c b/Gui/mplayer/play.c
index 3334742d35..3cbfd63f4a 100644
--- a/Gui/mplayer/play.c
+++ b/Gui/mplayer/play.c
@@ -7,8 +7,6 @@
int mplParent = 1;
-float gui_position=-1;
-
int mplx,mply,mplwidth,mplheight;
#include "../app.h"
@@ -106,7 +104,7 @@ void mplMPlayerInit( int argc,char* argv[], char *envp[] )
mplShMem=calloc( 1,ShMemSize );
#endif
signal( SIGTYPE,mplMainSigHandler );
- signal( SIGCHLD,SIG_IGN );
+// signal( SIGCHLD,SIG_IGN );
mplShMem->Playing=0;
mplShMem->Volume=0.0f;
@@ -124,14 +122,13 @@ void mplMPlayerInit( int argc,char* argv[], char *envp[] )
float mplGetPosition( void )
{ // return 0.0 ... 100.0
-// return (gui_position<0)?(mplShMem->Position):(gui_position*100.0);
return mplShMem->Position;
}
void mplRelSeek( float s )
{ // -+s
// ---
-printf("%%%%%% RelSEEK=%5.3f \n",s);
+//printf("%%%%%% RelSEEK=%5.3f \n",s);
// ---
rel_seek_secs=s; abs_seek_pos=0;
}
@@ -139,7 +136,7 @@ printf("%%%%%% RelSEEK=%5.3f \n",s);
void mplAbsSeek( float s )
{ // 0.0 ... 100.0
// ---
-printf("%%%%%% AbsSEEK=%5.3f \n",s);
+//printf("%%%%%% AbsSEEK=%5.3f \n",s);
rel_seek_secs=0.01*s; abs_seek_pos=3;
// ---
}