summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/aviobuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 29d0715357..da05251279 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -156,7 +156,7 @@ int64_t url_fseek(ByteIOContext *s, int64_t offset, int whence)
while(s->pos < offset && !s->eof_reached)
fill_buffer(s);
if (s->eof_reached)
- return AVERROR(EPIPE);
+ return AVERROR_EOF;
s->buf_ptr = s->buf_end + offset - s->pos;
} else {
int64_t res = AVERROR(EPIPE);