comparison 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
comparison
equal deleted inserted replaced
8279:fade8f754da0 8280:72700fefd3dc
177 rel_seek_secs=s; abs_seek_pos=0; 177 rel_seek_secs=s; abs_seek_pos=0;
178 } 178 }
179 179
180 void mplAbsSeek( float s ) 180 void mplAbsSeek( float s )
181 { // 0.0 ... 100.0 181 { // 0.0 ... 100.0
182 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM ) return;
182 rel_seek_secs=0.01*s; abs_seek_pos=3; 183 rel_seek_secs=0.01*s; abs_seek_pos=3;
183 } 184 }
184 185
185 listItems tmpList; 186 listItems tmpList;
186 187