Lines Matching refs:read_ret
1671 int err, read_ret;
1688 read_ret = http_buf_read(h, buf, size);
1689 while (read_ret < 0) {
1692 if (read_ret == AVERROR_EXIT)
1699 !(s->reconnect_at_eof && read_ret == AVERROR_EOF))
1705 av_log(h, AV_LOG_WARNING, "Will reconnect at %"PRIu64" in %d second(s), error=%s.\n", s->off, reconnect_delay, av_err2str(read_ret));
1713 return read_ret;
1716 read_ret = http_buf_read(h, buf, size);
1719 return read_ret;
1859 int read_ret;
1861 read_ret = ffurl_read(s->hd, buf, sizeof(buf));
1863 if (read_ret < 0 && read_ret != AVERROR(EAGAIN)) {
1864 av_log(h, AV_LOG_ERROR, "URL read error: %s\n", av_err2str(read_ret));
1865 ret = read_ret;