Commit 857841c1 authored by Anssi Hannula's avatar Anssi Hannula

avformat/http: always allow no-op seek

This also allows checking stream position as per ffurl_seek() doxy.
Signed-off-by: 's avatarAnssi Hannula <anssi.hannula@iki.fi>
parent 0588acaf
...@@ -947,6 +947,8 @@ static int64_t http_seek(URLContext *h, int64_t off, int whence) ...@@ -947,6 +947,8 @@ static int64_t http_seek(URLContext *h, int64_t off, int whence)
if (whence == AVSEEK_SIZE) if (whence == AVSEEK_SIZE)
return s->filesize; 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) else if ((s->filesize == -1 && whence == SEEK_END) || h->is_streamed)
return -1; return -1;
......
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