Searched refs:ffurl_seek (Results 1 – 10 of 10) sorted by relevance
/third_party/ffmpeg/libavformat/ |
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()
|
D | concat.c | 139 ffurl_seek(nodes[++i].uc, 0, SEEK_SET) < 0) in concat_read() 171 pos += ffurl_seek(nodes[i].uc, 0, SEEK_CUR); in concat_seek() 182 result = ffurl_seek(nodes[i].uc, pos, whence); in concat_seek()
|
D | async.c | 197 seek_ret = ffurl_seek(c->inner, c->seek_pos, c->seek_whence); in async_buffer_task() 622 pos = ffurl_seek(h, 0, SEEK_CUR); 627 printf("read-error: AVERROR_EOF at %"PRId64"\n", ffurl_seek(h, 0, SEEK_CUR)); 633 printf("read-error: %d at %"PRId64"\n", ret, ffurl_seek(h, 0, SEEK_CUR)); 656 pos = ffurl_seek(h, TEST_SEEK_POS, SEEK_SET); 667 printf("read-error: %d at %"PRId64"\n", ret, ffurl_seek(h, 0, SEEK_CUR));
|
D | avio.c | 224 if (!uc->is_streamed && ffurl_seek(uc, 0, SEEK_SET) < 0) in ffurl_connect() 431 int64_t ffurl_seek(URLContext *h, int64_t pos, int whence) in ffurl_seek() function 612 size = ffurl_seek(h, 0, AVSEEK_SIZE); in ffurl_size() 614 pos = ffurl_seek(h, 0, SEEK_CUR); in ffurl_size() 615 if ((size = ffurl_seek(h, -1, SEEK_END)) < 0) in ffurl_size() 618 ffurl_seek(h, pos, SEEK_SET); in ffurl_size()
|
D | subfile.c | 59 if ((ret = ffurl_seek(c->h, c->pos, SEEK_SET)) != c->pos) { in slave_seek() 124 if (end == INT64_MAX && (end = ffurl_seek(c->h, 0, AVSEEK_SIZE)) < 0) in subfile_seek()
|
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()
|
D | url.h | 216 int64_t ffurl_seek(URLContext *h, int64_t pos, int whence);
|
D | smoothstreamingenc.c | 108 ffurl_seek(os->out, offset - os->cur_start_pos, SEEK_SET); in ism_seek() 131 ffurl_seek(os->out, offset - frag->start_pos, SEEK_SET); in ism_seek() 133 ffurl_seek(os->out2, offset - frag->start_pos, SEEK_SET); in ism_seek()
|
D | aviobuf.c | 944 (int64_t (*)(void *, int64_t, int))ffurl_seek); in ffio_fdopen()
|
D | rtmpproto.c | 1127 if ((in_size = ffurl_seek(stream, 0, AVSEEK_SIZE)) < 0) { in rtmp_calc_swfhash()
|