unbreak compilation and finish backport r24280 by mstorsjo

Originally committed as revision 25324 to svn://svn.ffmpeg.org/ffmpeg/branches/0.5
This commit is contained in:
Reinhard Tartler 2010-10-03 14:50:04 +00:00
parent 84e6629de3
commit 2dea9a1266

View File

@ -160,8 +160,7 @@ int64_t url_fseek(ByteIOContext *s, int64_t offset, int whence)
s->buf_ptr = s->buffer + offset1;
} else if ((s->is_streamed ||
offset1 <= s->buf_end + SHORT_SEEK_THRESHOLD - s->buffer) &&
!s->write_flag && offset1 >= 0 &&
(whence != SEEK_END || force)) {
!s->write_flag && offset1 >= 0) {
while(s->pos < offset && !s->eof_reached)
fill_buffer(s);
if (s->eof_reached)