# HG changeset patch # User cehoyos # Date 1271084610 0 # Node ID dc1a033edd9fe062a0e128b93cb61ca5c8591059 # Parent 8b59caee931cc382f81a8d0ffa8dd28197af136a Do not set pos to an error value. Patch by Howard Chu, hyc highlandsun com diff -r 8b59caee931c -r dc1a033edd9f aviobuf.c --- a/aviobuf.c Mon Apr 12 07:24:30 2010 +0000 +++ b/aviobuf.c Mon Apr 12 15:03:30 2010 +0000 @@ -743,8 +743,13 @@ return AVERROR(ENOSYS); ret = s->read_seek(h, stream_index, timestamp, flags); if(ret >= 0) { + int64_t pos; s->buf_ptr = s->buf_end; // Flush buffer - s->pos = s->seek(h, 0, SEEK_CUR); + pos = s->seek(h, 0, SEEK_CUR); + if (pos >= 0) + s->pos = pos; + else if (pos != AVERROR(ENOSYS)) + ret = pos; } return ret; }