Lines Matching defs:read
821 int read, err, retry_done = 0;
823 ff_dlog(h, "ftp protocol read %d bytes\n", size);
836 read = ffurl_read(s->conn_data, buf, size);
837 if (read >= 0) {
838 s->position += read;
841 if (read == AVERROR_EOF) {
854 read = AVERROR(EIO);
856 if (read <= 0 && !h->is_streamed) {
866 return read;
869 av_log(h, AV_LOG_DEBUG, "FTP read failed\n");