Commit 5cb4b82a authored by Baptiste Coudurier's avatar Baptiste Coudurier

return error when url_fseek could not read until desired offset in streamed mode

Originally committed as revision 11233 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5d81d641
......@@ -139,6 +139,8 @@ offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence)
offset1 >= 0 && offset1 < (s->buf_end - s->buffer) + (1<<16)){
while(s->pos < offset && !s->eof_reached)
fill_buffer(s);
if (s->eof_reached)
return AVERROR(EPIPE);
s->buf_ptr = s->buf_end + offset - s->pos;
} else {
offset_t res = AVERROR(EPIPE);
......
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