summaryrefslogtreecommitdiff
path: root/libavformat/avio.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-31 16:10:50 +0200
committerAnton Khirnov <anton@khirnov.net>2011-04-04 17:45:20 +0200
commit62eaaeacb5ac083d9a96e95ec7df12113cd3ca81 (patch)
tree8772497d42fbd2c746a22b382cb05afaf9d71ea5 /libavformat/avio.h
parent5652bb94719c0bb0c58f73e44531af9977493223 (diff)
avio: make url_connect internal.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r--libavformat/avio.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index 8ba8a23f6e..311a51f8c4 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -103,14 +103,10 @@ typedef int URLInterruptCB(void);
attribute_deprecated int url_open_protocol (URLContext **puc, struct URLProtocol *up,
const char *url, int flags);
attribute_deprecated int url_alloc(URLContext **h, const char *url, int flags);
+attribute_deprecated int url_connect(URLContext *h);
#endif
/**
- * Connect an URLContext that has been allocated by url_alloc
- */
-int url_connect(URLContext *h);
-
-/**
* Create an URLContext for accessing to the resource indicated by
* url, and open it.
*