Searched refs:ffurl_seek (Results 1 - 11 of 11) sorted by relevance
/third_party/ffmpeg/libavformat/ |
H A D | cache.c | 201 r = ffurl_seek(c->inner, c->logical_pos, SEEK_SET); in cache_read() 233 pos= ffurl_seek(c->inner, pos, whence); in cache_seek() 235 pos= ffurl_seek(c->inner, -1, SEEK_END); in cache_seek() 236 if (ffurl_seek(c->inner, c->inner_pos, SEEK_SET) < 0) in cache_seek() 261 ret= ffurl_seek(c->inner, pos, whence); in cache_seek()
|
H A D | avio.c | 218 /* We must be careful here as ffurl_seek() could be slow, in ffurl_connect() 221 if (!uc->is_streamed && ffurl_seek(uc, 0, SEEK_SET) < 0) in ffurl_connect() 428 int64_t ffurl_seek(URLContext *h, int64_t pos, int whence) in ffurl_seek() function 609 size = ffurl_seek(h, 0, AVSEEK_SIZE); in ffurl_size() 611 pos = ffurl_seek(h, 0, SEEK_CUR); in ffurl_size() 612 if ((size = ffurl_seek(h, -1, SEEK_END)) < 0) in ffurl_size() 615 ffurl_seek(h, pos, SEEK_SET); in ffurl_size()
|
H A D | async.c | 205 seek_ret = ffurl_seek(c->inner, c->seek_pos, c->seek_whence); in async_buffer_task() 626 pos = ffurl_seek(h, 0, SEEK_CUR); 631 printf("read-error: AVERROR_EOF at %"PRId64"\n", ffurl_seek(h, 0, SEEK_CUR)); 637 printf("read-error: %d at %"PRId64"\n", ret, ffurl_seek(h, 0, SEEK_CUR)); 660 pos = ffurl_seek(h, TEST_SEEK_POS, SEEK_SET); 671 printf("read-error: %d at %"PRId64"\n", ret, ffurl_seek(h, 0, SEEK_CUR));
|
H A D | subfile.c | 58 if ((ret = ffurl_seek(c->h, c->pos, SEEK_SET)) != c->pos) { in slave_seek() 123 if (end == INT64_MAX && (end = ffurl_seek(c->h, 0, AVSEEK_SIZE)) < 0) in subfile_seek()
|
H A D | concat.c | 145 ffurl_seek(nodes[++i].uc, 0, SEEK_SET) < 0) in concat_read() 177 pos += ffurl_seek(nodes[i].uc, 0, SEEK_CUR); in concat_seek() 188 result = ffurl_seek(nodes[i].uc, pos, whence); in concat_seek()
|
H A D | crypto.c | 256 newpos = ffurl_seek( c->hd, pos, AVSEEK_SIZE ); in crypto_seek() 265 return ffurl_seek( c->hd, pos, AVSEEK_SIZE ); in crypto_seek() 293 newpos = ffurl_seek( c->hd, c->position, SEEK_SET ); in crypto_seek()
|
H A D | url.h | 215 int64_t ffurl_seek(URLContext *h, int64_t pos, int whence);
|
H A D | smoothstreamingenc.c | 105 ffurl_seek(os->out, offset - os->cur_start_pos, SEEK_SET); in ism_seek() 128 ffurl_seek(os->out, offset - frag->start_pos, SEEK_SET); in ism_seek() 130 ffurl_seek(os->out2, offset - frag->start_pos, SEEK_SET); in ism_seek()
|
H A D | ipfsgateway.c | 315 return ffurl_seek(c->inner, pos, whence); in ipfs_seek()
|
H A D | aviobuf.c | 979 (int64_t (*)(void *, int64_t, int))ffurl_seek); in ffio_fdopen()
|
H A D | rtmpproto.c | 1131 if ((in_size = ffurl_seek(stream, 0, AVSEEK_SIZE)) < 0) { in rtmp_calc_swfhash()
|
Completed in 13 milliseconds