mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-15 11:30:08 +01:00
avio: make url_read() internal.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user