MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ffurl_read2

Function ffurl_read2

libavformat/avio.c:549–556  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

547}
548
549int ffurl_read2(void *urlcontext, uint8_t *buf, int size)
550{
551 URLContext *h = urlcontext;
552
553 if (!(h->flags & AVIO_FLAG_READ))
554 return AVERROR(EIO);
555 return retry_transfer_wrapper(h, buf, NULL, size, 1, 1);
556}
557
558int ffurl_read_complete(URLContext *h, unsigned char *buf, int size)
559{

Callers 1

ffurl_readFunction · 0.85

Calls 1

retry_transfer_wrapperFunction · 0.85

Tested by

no test coverage detected