Commit ab76d9f6 authored by Anssi Hannula's avatar Anssi Hannula Committed by Luca Barbato

http: Always allow no-op seek

This also allows checking stream position as per ffurl_seek() doxy.
Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent 2ec33d27
......@@ -901,6 +901,9 @@ static int64_t http_seek(URLContext *h, int64_t off, int whence)
if (whence == AVSEEK_SIZE)
return s->filesize;
else if ((whence == SEEK_CUR && off == 0) ||
(whence == SEEK_SET && off == s->off))
return s->off;
else if ((s->filesize == -1 && whence == SEEK_END) || h->is_streamed)
return AVERROR(ENOSYS);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment