summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-05-21 20:53:12 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-05-22 06:40:34 +0300
commitde5566f0b5420fbdbf0dc37f225be01cfd04cf66 (patch)
tree5a2b96c91493a1c8b8e01f378da844f6c08cd6f9 /stream
parentde42015a97cf296aad6307adcfb2750e1ab88800 (diff)
downloadmpv-de5566f0b5420fbdbf0dc37f225be01cfd04cf66.tar.bz2
mpv-de5566f0b5420fbdbf0dc37f225be01cfd04cf66.tar.xz
stream.h: remove bad EOF check in stream_seek()
Also remove a redundant stream->eof = 0 in demuxer.c.
Diffstat (limited to 'stream')
-rw-r--r--stream/stream.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/stream/stream.h b/stream/stream.h
index d46730bd80..5cbc304e81 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -289,8 +289,6 @@ inline static int stream_seek(stream_t *s,off_t pos){
mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%qX\n",(long long)pos);
- if(s->eof)
- return 0;
if(pos<s->pos){
off_t x=pos-(s->pos-s->buf_len);
if(x>=0){