summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index 039ef7bbc5..d904e7a1e8 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -345,6 +345,13 @@ static int64_t http_seek(URLContext *h, int64_t off, int whence)
return off;
}
+static int
+http_get_file_handle(URLContext *h)
+{
+ HTTPContext *s = h->priv_data;
+ return url_get_file_handle(s->hd);
+}
+
URLProtocol http_protocol = {
"http",
http_open,
@@ -352,4 +359,5 @@ URLProtocol http_protocol = {
http_write,
http_seek,
http_close,
+ .url_get_file_handle = http_get_file_handle,
};