mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-03 18:37:46 +00:00
avio: make url_read() internal.
This commit is contained in:
parent
0589da0aa5
commit
bc371aca46
11 changed files with 29 additions and 23 deletions
|
@ -115,7 +115,7 @@ static int gopher_open(URLContext *h, const char *uri, int flags)
|
|||
static int gopher_read(URLContext *h, uint8_t *buf, int size)
|
||||
{
|
||||
GopherContext *s = h->priv_data;
|
||||
int len = url_read(s->hd, buf, size);
|
||||
int len = ffurl_read(s->hd, buf, size);
|
||||
return len;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue