Home
last modified time | relevance | path

Searched refs:ffurl_seek (Results 1 – 10 of 10) sorted by relevance

/third_party/ffmpeg/libavformat/
Dcache.c201 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()
Dconcat.c139 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()
Dasync.c197 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));
Davio.c224 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()
Dsubfile.c59 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()
Dcrypto.c256 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()
Durl.h216 int64_t ffurl_seek(URLContext *h, int64_t pos, int whence);
Dsmoothstreamingenc.c108 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()
Daviobuf.c944 (int64_t (*)(void *, int64_t, int))ffurl_seek); in ffio_fdopen()
Drtmpproto.c1127 if ((in_size = ffurl_seek(stream, 0, AVSEEK_SIZE)) < 0) { in rtmp_calc_swfhash()