summaryrefslogtreecommitdiffstats
path: root/stream/stream_lavf.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-06 20:40:02 +0200
committerwm4 <wm4@nowhere>2013-06-16 22:05:10 +0200
commit0d5e6084aed34a9e6f48a4a2cfaf095b17acb21b (patch)
tree8513c329707016173c6b482961cf721b81b5bfc7 /stream/stream_lavf.c
parent1c35794efd7d025457e527b61f7c23fe375c2f5a (diff)
downloadmpv-0d5e6084aed34a9e6f48a4a2cfaf095b17acb21b.tar.bz2
mpv-0d5e6084aed34a9e6f48a4a2cfaf095b17acb21b.tar.xz
stream: don't set EOF flag in stream implementations
EOF should be set when reading more data fails. The stream implementations have nothing to say here and should behave correctly when trying to read when EOF was actually read. Even when seeking, a correct EOF flag should be guaranteed. stream_seek() (or actually stream_seek_long()) calls stream_fill_buffer() at least once, which also updates the EOF flag.
Diffstat (limited to 'stream/stream_lavf.c')
-rw-r--r--stream/stream_lavf.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c
index 4afdc7244d..2e97eac19d 100644
--- a/stream/stream_lavf.c
+++ b/stream/stream_lavf.c
@@ -60,7 +60,6 @@ static int seek(stream_t *s, int64_t newpos)
return -1;
s->pos = newpos;
if (avio_seek(avio, s->pos, SEEK_SET) < 0) {
- s->eof = 1;
return 0;
}
return 1;