summaryrefslogtreecommitdiff
path: root/libavformat/avio.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-31 17:51:24 +0200
committerAnton Khirnov <anton@khirnov.net>2011-04-04 17:45:20 +0200
commit1869ea03b7fb8e3db2f034f4214e03bd3f8b3d30 (patch)
tree06b04228af62545e07c141a5d8f4c9fbb12b78c6 /libavformat/avio.c
parent32a97d4630e8e742cba0344054842ed059dda807 (diff)
avio: make url_get_file_handle() internal.
Diffstat (limited to 'libavformat/avio.c')
-rw-r--r--libavformat/avio.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/avio.c b/libavformat/avio.c
index 76d3d4d4d9..a0eee9355e 100644
--- a/libavformat/avio.c
+++ b/libavformat/avio.c
@@ -204,6 +204,10 @@ int64_t url_filesize(URLContext *h)
{
return ffurl_size(h);
}
+int url_get_file_handle(URLContext *h)
+{
+ return ffurl_get_file_handle(h);
+}
#endif
#define URL_SCHEME_CHARS \
@@ -357,7 +361,7 @@ int64_t ffurl_size(URLContext *h)
return size;
}
-int url_get_file_handle(URLContext *h)
+int ffurl_get_file_handle(URLContext *h)
{
if (!h->prot->url_get_file_handle)
return -1;