Lines Matching defs:whence
88 int64_t (*seek)(void *opaque, int64_t offset, int whence))
142 int64_t (*seek)(void *opaque, int64_t offset, int whence))
260 int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
265 int force = whence & AVSEEK_FORCE;
268 whence &= ~AVSEEK_FORCE;
273 if ((whence & AVSEEK_SIZE))
280 if (whence != SEEK_CUR && whence != SEEK_SET)
283 if (whence == SEEK_CUR) {
310 (whence != SEEK_END || force)) {
1446 static int64_t dyn_buf_seek(void *opaque, int64_t offset, int whence)
1450 if (whence == SEEK_CUR)
1452 else if (whence == SEEK_END)