diff Gui/mplayer/play.c @ 8280:72700fefd3dc

no seeking if stream is STREAMTYPE_STREAM (net/stdin)
author pontscho
date Mon, 25 Nov 2002 17:33:30 +0000
parents 79ddb7291765
children c6a1a5b6ba25
line wrap: on
line diff
--- a/Gui/mplayer/play.c	Mon Nov 25 16:54:05 2002 +0000
+++ b/Gui/mplayer/play.c	Mon Nov 25 17:33:30 2002 +0000
@@ -179,6 +179,7 @@
 
 void mplAbsSeek( float s )
 { // 0.0 ... 100.0
+ if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM ) return;
  rel_seek_secs=0.01*s; abs_seek_pos=3;
 }