Browse Source

lavf/aviobuf: make AVSEEK_SIZE usable from outside.

tags/n4.3
Nicolas George 6 years ago
parent
commit
6e1a2dc112
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/aviobuf.c

+ 3
- 0
libavformat/aviobuf.c View File

@@ -255,6 +255,9 @@ int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
if(!s)
return AVERROR(EINVAL);

if ((whence & AVSEEK_SIZE))
return s->seek ? s->seek(s->opaque, offset, AVSEEK_SIZE) : AVERROR(ENOSYS);

buffer_size = s->buf_end - s->buffer;
// pos is the absolute position that the beginning of s->buffer corresponds to in the file
pos = s->pos - (s->write_flag ? 0 : buffer_size);


Loading…
Cancel
Save